query
stringlengths
7
33.1k
document
stringlengths
7
335k
metadata
dict
negatives
listlengths
3
101
negative_scores
listlengths
3
101
document_score
stringlengths
3
10
document_rank
stringclasses
102 values
Delete the refresh token associated with the user device
public void deleteById(Long id) { refreshTokenRepository.deleteById(id); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void deleteUser(User user, String token) throws AuthenticationException;", "public ResponseEntity<String> deleteRefreshToken(String token){\n refreshTokenRepository.deleteByToken(token);\n return new ResponseEntity<>(\"Refresh Token Deleted Successfully.\", HttpStatus.OK);\n }", "@Test\n public void deleteDeviceTokenTest() throws ApiException {\n String deviceId = null;\n // DeviceTokenEnvelope response = api.deleteDeviceToken(deviceId);\n\n // TODO: test validations\n }", "public void deleteAccessToken(int id);", "void logout(String userTokenTokenContent);", "@SuppressLint(\"CommitPrefEdits\") // Preferences change needs to be synchronous\n public void invalidateToken() {\n preferences.edit().remove(getString(R.string.auth_token)).commit();\n validateToken();\n }", "private String issueRefreshToken(UUID user, String deviceName) {\n String token = UUID.randomUUID().toString();\n String hash = BCrypt.hashpw(token, BCrypt.gensalt());\n\n dao.updateToken(user, deviceName, hash);\n\n return token;\n }", "public void removeTokenFromUser(UserEntry user) {\n\t\tQuery<UserEntry> query = ds.createQuery(UserEntry.class)\n\t\t\t\t.field(UserEntry.USER_ID).equal(user.getUserId());\n\t\tUpdateOperations<UserEntry> ops = getDatastore()\n\t\t\t\t.createUpdateOperations(UserEntry.class).unset(\n\t\t\t\t\t\tUserEntry.USER_TOKEN);\n\t\tds.update(query, ops);\n\t}", "void removeAccessToken() {\n SharedPreferences prefs = // because rest also needs token\n context.getSharedPreferences(SHARED_PREFS_NAME, Context.MODE_PRIVATE);\n prefs.edit()\n .remove(KEY_ACCESS_TOKEN)\n .apply();\n // notification to all listeners\n state.onNext(new AuthState(false));\n\n }", "@Override\r\n public void onTokenRefresh() {\n App.sendToken();\r\n }", "public void clearExpiredTokens();", "@Test\n\tpublic void test_delete_user_success(){\n template.delete(REST_SERVICE_URI + \"/\" + getLastUser().getId() + ACCESS_TOKEN + token);\n }", "@Override\n public void onTokenRefresh() {\n }", "@Override\n public void onTokenRefresh() {\n Log.d(\"MyInstanceIDService\", \"onTokenRefresh\");\n// new GCMDoRequest().execute(new GCMRequest(this, GCMCommand.GET_TOKEN));\n }", "@Override\n public void onTokenRefresh() {\n // Get updated InstanceID token.\n device_id = Settings.Secure.getString(this.getContentResolver(),\n Settings.Secure.ANDROID_ID);\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Log.d(TAG, \"Refreshed token: \" + refreshedToken);\n\n // If you want to send messages to this application instance or\n // manage this apps subscriptions on the server side, send the\n // Instance ID token to your app server.\n\n //**************need to modify the code such that it can update exisiting user data***********************\n sendRegistrationToServer(refreshedToken);\n //**************need to modify the code such that it can update exisiting user data***********************\n }", "@Override\n public void onTokenRefresh() {\n final String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n\n //To displaying token on logcat\n Log.w(\"TOKEN: \", refreshedToken);\n\n SharedPreferences sharedPreferences = getSharedPreferences(SHARED_PREFERENCE_FILE, MODE_PRIVATE);\n final Long userId = sharedPreferences.getLong(\"userId\", 0L);\n\n if (!userId.equals(0L)){\n\n SharedPreferences.Editor editor = sharedPreferences.edit();\n editor.putString(\"firebaseToken\", refreshedToken);\n editor.apply();\n\n Handler handler = new Handler(this.getMainLooper());\n\n Runnable runnable = new Runnable() {\n @Override\n public void run() {\n\n // Update token for this user\n UserTask<Void> userTask = new UserTask<>(userId);\n userTask.setFirebaseToken(refreshedToken);\n userTask.execute(\"refreshFirebaseToken\");\n\n }\n };\n\n handler.post(runnable);\n\n }\n\n }", "@Override\n public void onTokenRefresh() {\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Timber.d(\"Refreshed token: \" + refreshedToken);\n }", "public String getRefreshToken() {\r\n return refreshToken;\r\n }", "@Override\n public void onTokenRefresh() {\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Log.d(TAG, \"REFRESHED TOKEN: \" + refreshedToken);\n JSONObject jsonbody = new JSONObject();\n try {\n jsonbody.put(\"UserID\",App.profileModel.UserID);\n jsonbody.put(\"GCMToken\",refreshedToken);\n } catch (JSONException e) {\n e.printStackTrace();\n }\n if(refreshedToken != null)\n HttpCaller\n .getInstance()\n .updateGCMToken(\n jsonbody,\n new Response.Listener<JSONObject>() {\n @Override\n public void onResponse(JSONObject o) {\n try {\n if(!o.getBoolean(\"Status\")) {\n }\n } catch (JSONException e) {\n e.printStackTrace();\n }\n }\n },\n new Response.ErrorListener() {\n @Override\n public void onErrorResponse(VolleyError volleyError) {\n }\n },true);\n\n\n\n\n prefs = Prefs.getInstance();\n Gson gson = new Gson();\n userPrefsInance = prefs.init(getApplicationContext());\n userPrefsInance.edit().putString(prefs.GCM_TOKEN,refreshedToken);\n\n App.profileModel.GCMToken = refreshedToken;\n\n if(App.profileModel.UserID > 0) {\n HttpCaller.\n getInstance().\n updateGCMToken(\n null,\n new Response.Listener<JSONObject>() {\n @Override\n public void onResponse(JSONObject o) {\n try {\n if (!o.getBoolean(\"Status\")) {\n //Helper.showToast(\"Failed to update notification device token.\", ToastStyle.ERROR);\n\n }\n } catch (JSONException e) {\n e.printStackTrace();\n //Helper.showToast(\"Failed to update notification device token.\", ToastStyle.ERROR);\n }\n }\n },\n new Response.ErrorListener() {\n @Override\n public void onErrorResponse(VolleyError volleyError) {\n //Helper.showToast(\"Failed to update notification device token.\", ToastStyle.ERROR);\n\n }\n },true);\n }\n\n // If you want to send messages to this application instance or\n // manage this apps subscriptions on the server side, send the\n // Instance ID token to your app server.\n }", "private String refreshToken() {\n return null;\n }", "@DeleteMapping(\"/authentication/{token}\")\n @ResponseStatus(HttpStatus.OK)\n public void logout(@PathVariable(value =\"token\") String token) {\n authenticationService.deleteToken(token);\n }", "@Override\n public void onTokenRefresh() {\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Log.d(TAG, \"Refreshed token: \" + refreshedToken);\n\n saveToken(refreshedToken);\n sendRegistrationToServer(refreshedToken);\n }", "private void refreshGoogleCalendarToken() {\n this.getGoogleToken();\n }", "public AuthorizationToken removeToken(String token);", "String getAuthorizerRefreshToken(String appId);", "public static void deleteUser() {\n REGISTRATIONS.clear();\n ALL_EVENTS.clear();\n MainActivity.getPreferences().edit()\n .putString(FACEBOOK_ID.get(), null)\n .putString(USERNAME.get(), null)\n .putString(LAST_NAME.get(), null)\n .putString(FIRST_NAME.get(), null)\n .putString(GENDER.get(), null)\n .putString(BIRTHDAY.get(), null)\n .putString(EMAIL.get(), null)\n .putStringSet(LOCATIONS_INTEREST.get(), null)\n .apply();\n }", "public void deleteAllToken() throws BusinessException;", "public void removePushToken() {\n }", "@Test\n public void testRefreshToken() {\n ApplicationContext context =\n TEST_DATA_RESOURCE\n .getSecondaryApplication()\n .getBuilder()\n .client(ClientType.AuthorizationGrant, true)\n .bearerToken()\n .refreshToken()\n .build();\n OAuthToken t = context.getToken();\n\n String header = authHeaderBearer(t.getId());\n\n Response r = target(\"/token/private\")\n .request()\n .header(AUTHORIZATION, header)\n .get();\n\n assertEquals(Status.UNAUTHORIZED.getStatusCode(), r.getStatus());\n }", "@Override\n public void onTokenRefresh() {\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n if (refreshedToken != null) {\n Log.d(TAG, \"Refreshed token: \" + refreshedToken);\n\n // If you want to send messages to this application instance or\n // manage this apps subscriptions on the server side, send the\n // Instance ID token to your app server.\n sendTokenToServer(refreshedToken);\n }\n }", "private void logoutUser() {\n session.setLogin(false);\n\n db.deleteUsers();\n\n // Launching the login activity\n Intent intent = new Intent(getActivity(), LoginActivity.class);\n startActivity(intent);\n getActivity().finish();\n }", "private void revokeGplusAccess() {\n if (mGoogleApiClient.isConnected()) {\n Plus.AccountApi.clearDefaultAccount(mGoogleApiClient);\n Plus.AccountApi.revokeAccessAndDisconnect(mGoogleApiClient)\n .setResultCallback(new ResultCallback<Status>() {\n @Override\n public void onResult(Status arg0) {\n Log.e(TAG, \"User access revoked!\");\n mGoogleApiClient.connect();\n updateUI(false);\n }\n });\n }\n }", "@Override\n public void onTokenRefresh() {\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n /*Log.d(\"Refreshed token\", \"Refreshed token: \" + refreshedToken);\n FirebaseUser user = FirebaseAuth.getInstance().getCurrentUser();\n final CollectionReference clients = FirebaseFirestore.getInstance().collection(\"Tokens\");\n Map<String, Object> data1 = new HashMap<>();\n data1.put(\"token\", refreshedToken);\n clients.document(\"Iamhere\").set(data1, SetOptions.merge());*/\n\n // If you want to send messages to this application instance or\n // manage this apps subscriptions on the server side, send the\n // Instance ID token to your app server.\n //sendRegistrationToServer(refreshedToken);\n }", "void removePushToken(@NonNull TokenCallback tokenCallback);", "private void revokeGooglePlusAccess() {\n if (mGoogleApiClient.isConnected()) {\n Plus.AccountApi.clearDefaultAccount(mGoogleApiClient);\n Plus.AccountApi.revokeAccessAndDisconnect(mGoogleApiClient)\n .setResultCallback(new ResultCallback<Status>() {\n @Override\n public void onResult(Status arg0) {\n Log.e(TAG, \"User access revoked!\");\n mGoogleApiClient.connect();\n }\n\n });\n }\n }", "@Override\n public void onTokenRefresh() {\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Log.d(\"myToken\", \"Refreshed token: \" + refreshedToken);\n\n // If you want to send messages to this application instance or\n // manage this apps subscriptions on the server side, send the\n // Instance ID token to your app server.\n //sendRegistrationToServer(refreshedToken);\n getApplicationContext().sendBroadcast(new Intent(broadcast));\n SharedPrefManager.getInstance(getApplicationContext()).storeToken(refreshedToken);\n }", "@DELETE\n @Path(\"/{userID}\")\n @AuthProviderRESTExposure\n public void deleteUser(@QueryParam(\"token\") String authToken, @PathParam(\"userID\") String userID) \n throws GuacamoleException {\n UserContext userContext = authenticationService.getUserContextFromAuthToken(authToken);\n \n // Get the directory\n Directory<String, User> userDirectory = userContext.getUserDirectory();\n\n // Get the user\n User existingUser = userDirectory.get(userID);\n\n if(existingUser == null)\n throw new HTTPException(Response.Status.NOT_FOUND, \"User not found with the provided userID.\");\n\n // Delete the user\n userDirectory.remove(userID);\n }", "@SuppressWarnings(\"unused\")\n private void revokeGplusAccess() {\n if (mGoogleApiClient.isConnected()) {\n Plus.AccountApi.clearDefaultAccount(mGoogleApiClient);\n Plus.AccountApi.revokeAccessAndDisconnect(mGoogleApiClient).setResultCallback(new ResultCallback<Status>() {\n @Override\n public void onResult(Status arg0) {\n Log.e(TAG, \"User access revoked!\");\n mGoogleApiClient.connect();\n updateUI(false);\n }\n });\n }\n }", "@Override\n public void onTokenRefresh() {\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Log.d(TAG, \"Refreshed token: \" + refreshedToken);\n\n // If you want to send messages to this application instance or\n // manage this apps subscriptions on the server side, send the\n // Instance ID token to your app server.\n try {\n sendNewTokenToServer(refreshedToken);\n } catch (Exception e) {\n e.printStackTrace();\n }\n }", "public String getRefresh_token() {\r\n\t\treturn refresh_token;\r\n\t}", "public void deleteUser(Integer id) throws BadRequestException;", "@Override\n public void onTokenRefresh() {\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Log.d(TAG, \"Refreshed token: \" + refreshedToken);\n\n // If you want to send messages to this application instance or\n // manage this apps subscriptions on the server side, send the\n // Instance ID token to your app server.\n sendRegistrationToServer(refreshedToken);\n }", "@Override\n public void onTokenRefresh() {\n String token = FirebaseInstanceId.getInstance().getToken();\n registerToken(token);\n }", "public BrewFindResponse deleteUserFromToken(BrewFindToken tok) {\n\t\tif(!checkToken(tok)) {\n\t\t\treturn new BrewFindResponse(5, \"Invalid token, authorization failed\");\n\t\t}\n\t\t\t\t\n\t\tString uname = Base64.decodeAsString(tok.token);\n\t\t\t\t\n\t\t// Check if user is in db\n\t\tUser u = findUser(uname);\n\t\tif(u == null) {\n\t\t\treturn new BrewFindResponse(2, \"User \" + uname + \" doesn't exist in our system\");\n\t\t}\n\t\t\t\t\n\t\t// Else, remove information from user db\n\t\tdeleteUser(u);\n\t\t\t\t\n\t\t// TODO: Implement un-setting a brewery's user if the user is associated with a brewery\n\t\treturn new BrewFindResponse(0, \"OK\");\n\t}", "@Override\n public void onTokenRefresh(){\n // start Gcm registration service\n Intent intent = new Intent(this, GcmRegistrationIntentService.class);\n startService(intent);\n }", "@Override\n public void onTokenRefresh() {\n\n //Getting registration token\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n\n //Displaying token on logcat\n Log.e(TAG, \"Refreshed token: \" + refreshedToken);\n\n //calling the method store token and passing token\n storeToken(refreshedToken);\n }", "private void logout() {\n\n\n GoogleSignInAccount account = GoogleSignIn.getLastSignedInAccount(context);\n //start home activity, when account is not null (user already signed in)\n if (account != null) {\n Log.d(\"LOGOUT\", \"Google Accoutn is not null\");\n if (mGoogleSignInClient != null) {\n mGoogleSignInClient.signOut()\n .addOnCompleteListener(getActivity(), new OnCompleteListener<Void>() {\n @Override\n public void onComplete(@NonNull Task<Void> task) {\n Log.d(\"LogoutButton\", \"You were Logged out succesfully\");\n //remove user id from preferences to indicate, that he is not logged in\n Preferences.saveUserId(context, null);\n\n //remove FCM token\n new Thread(new Runnable() {\n @Override\n public void run() {\n try {\n FirebaseInstanceId.getInstance().deleteInstanceId();\n } catch (IOException e) {\n e.printStackTrace();\n }\n\n }\n }).start();\n\n Intent intent = new Intent(context, LoginActivity.class);\n startActivity(intent);\n //remove home activity from stack\n getActivity().finish();\n }\n });\n }\n }\n }", "public String getRefreshToken() {\n\t\treturn refreshToken;\n\t}", "public void logout() {\n if (mAccessToken != null) {\n mSession.resetAccessToken();\n mAccessToken = null;\n }\n }", "public static boolean deleteUser(final Context context)\r\n {\r\n SharedPreferencesManager sharedPreferencesManager = new SharedPreferencesManager(context);\r\n\r\n User user = sharedPreferencesManager.retrieveUser();\r\n long id = user.getId();\r\n\r\n final String fixedURL = Utils.fixUrl(Properties.SERVER_URL + \":\" + Properties.SERVER_SPRING_PORT\r\n + \"/users/\" + id);\r\n\r\n Log.d(Properties.TAG, \"[REST_CLIENT_SINGLETON] Conectando con: \" + fixedURL + \" para borrar un usuario\");\r\n\r\n RequestFuture<String> future = RequestFuture.newFuture();\r\n\r\n StringRequest stringRequest = new StringRequest(Request.Method.DELETE\r\n , fixedURL\r\n , future\r\n , future);\r\n\r\n // Enviamos la peticion.\r\n VolleySingleton.getInstance(context).addToRequestQueue(stringRequest);\r\n Log.d(Properties.TAG, \"[REST_CLIENT_SINGLETON] Petición creada y enviada\");\r\n\r\n try\r\n {\r\n String response = future.get(20, TimeUnit.SECONDS);\r\n\r\n Log.d(Properties.TAG, \"[REST_CLIENT_SINGLETON] Respuesta del servidor: \" + response);\r\n\r\n if (response.equals(Properties.ACCEPTED))\r\n {\r\n Log.d(Properties.TAG, \"[REST_CLIENT_SINGLETON] Usuario borrado correctamente (ID: \" + id + \")\");\r\n\r\n sharedPreferencesManager.clear();\r\n\r\n return true;\r\n }\r\n\r\n } catch (ExecutionException | InterruptedException | TimeoutException e) {\r\n ExceptionPrinter.printException(\"REST_CLIENT_SINGLETON\", e);\r\n\r\n return false;\r\n }\r\n\r\n return false;\r\n }", "@Override\n public void onTokenRefresh() {\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Log.d(TAG, \"Refreshed token: \" + refreshedToken);\n SharedPreferences settings =\n getSharedPreferences(PREF, Context.MODE_PRIVATE);\n SharedPreferences.Editor editor = settings.edit();\n editor.putString(PREF_FIREBASE_TOKEN, refreshedToken);\n editor.apply();\n }", "@Override\n\tpublic void deleteUser() {\n\t\tLog.d(\"HFModuleManager\", \"deleteUser\");\n\t}", "private void clearAccessToken() {\n SharedPreferences sharedPref = this\n .getSharedPreferences(getString(R.string.authorization_preference_file), Context.MODE_PRIVATE);\n if(sharedPref.contains(getResources().getString(R.string.authorization))){\n SharedPreferences.Editor editor = sharedPref.edit();\n editor.remove(getResources().getString(R.string.authorization));\n editor.apply();\n }\n }", "@Nullable\n public String getRefreshToken() {\n return refreshToken;\n }", "public void Logout(){\n preferences.edit().remove(userRef).apply();\n }", "private void clearCache() {\n List<User> users = null;\n try {\n Log.d(TAG, \"Clearing app cache\");\n users = sampleApp.getUsers();\n\n if (users == null) {\n /* We have no users */\n\n Log.d(TAG, \"Faield to Sign out/clear cache, no user\");\n } else if (users.size() == 1) {\n /* We have 1 user */\n\n /* Remove from token cache */\n sampleApp.remove(users.get(0));\n\n Log.d(TAG, \"Signed out/cleared cache\");\n\n }\n else {\n /* We have multiple users */\n\n for (int i = 0; i < users.size(); i++) {\n sampleApp.remove(users.get(i));\n }\n\n Log.d(TAG, \"Signed out/cleared cache for multiple users\");\n }\n\n Toast.makeText(getBaseContext(), \"Signed Out!\", Toast.LENGTH_SHORT)\n .show();\n\n } catch (MsalClientException e) {\n /* No token in cache, proceed with normal unauthenticated app experience */\n Log.d(TAG, \"MSAL Exception Generated while getting users: \" + e.toString());\n\n } catch (IndexOutOfBoundsException e) {\n Log.d(TAG, \"User at this position does not exist: \" + e.toString());\n }\n }", "@Override\r\n\tpublic void deleteToken(String token){\n\t\tString deleteTokenSQL = \"delete from verificationtoken where token='\" + token + \"'\";\r\n\r\n\t\tjdbcTemplate.update(deleteTokenSQL);\r\n\r\n\t}", "public static boolean signOut(Context context){\n\n //Remove reg_id from server( push userId)\n //delete content provider\n //set all shared preference to null or delete\n\n //AccountUtils.setLoggedAccountName(context, getChosenAccountName(context));\n Account account = AccountUtils.getChosenAccount(context);\n if (account == null) return false;\n\n boolean syncActive = ContentResolver.isSyncActive(\n account, DataContract.CONTENT_AUTHORITY);\n boolean syncPending = ContentResolver.isSyncPending(\n account, DataContract.CONTENT_AUTHORITY);\n\n //Cancel sync\n boolean syncing = syncActive || syncPending;\n if(syncing){\n ContentResolver.cancelSync(account, DataContract.CONTENT_AUTHORITY);\n return true;\n }\n\n //Delete all server registration\n // 1a. GCM\n\n\n // 1b. Stop sync\n ContentResolver.setIsSyncable(account, DataContract.CONTENT_AUTHORITY, 0);\n\n // 2a. Invalidate token\n invalidateAuthToken(context);\n\n // 2b. Remove Account\n // SessionManager.removeAccount(account, context);\n\n // 3. Delete prefs data\n SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);\n //SharedPreferences preferences = context.getSharedPreferences(PREF_ACCOUNT, Context.MODE_PRIVATE);\n preferences.edit().clear().apply();\n\n // 4. Delete local data\n context.getContentResolver().delete(DataContract.BASE_CONTENT_URI, null, null);\n return false;\n\n }", "public static void delete(@NotNull MongoClient pMongoClient, @NotNull Token pToken)\n {\n pMongoClient\n .getDatabase(\"businesstoken\")\n .getCollection(\"tokens\")\n .deleteOne(new Document(\"_id\", pToken.id));\n }", "@Override\r\n\tpublic int deleteUser(Users user) {\n\t\treturn 0;\r\n\t}", "@Override\n public void onTokenRefresh() {\n\n String token = FirebaseInstanceId.getInstance().getToken();\n CTOKEN = token;\n\n// if(sgen.ID != \"\") {\n// String query = \"UPDATE USER_DETAILS SET FTOKEN = '\"+token+\"' WHERE ID = '\"+sgen.ID+\"'; \";\n// ArrayList<Team> savedatateam = servicesRequest.save_data(query);\n// sgen.FTOKEN = token;\n// }\n\n\n // Once the token is generated, subscribe to topic with the userId\n// if(sgen.ATOKEN.equals(sgen.CTOKEN)) {\n try {\n FirebaseMessaging.getInstance().subscribeToTopic(SUBSCRIBE_TO);\n Log.i(TAG, \"onTokenRefresh completed with token: \" + token);\n }\n catch (Exception e)\n {\n e.printStackTrace();\n }\n// }\n\n\n /* sendRegistrationToServer(refreshedToken);*/\n }", "@Override\n public void onTokenRefresh() {\n // Get updated InstanceID token.\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Log.d(\"Refreshed token: \" + refreshedToken);\n sendRegistrationToServer(refreshedToken);\n }", "public void deleteAppUser(Long id) {\n\t\tappUserRepository.delete(id);\n\t\t\n\t}", "private void removeToken(String customerId, String token) {\n // TODO remove the token\n }", "@Delete(\"delete from website_cooperativeuser where id = #{id}\")\r\n int deleteByPrimaryKey(String id);", "public static void deleteUserData(final Context context) {\n log.info(\"Usuario Eliminado\");\n inicializaPreferencias(context);\n sharedPreferencesEdit.remove(Constantes.USER);\n sharedPreferencesEdit.commit();\n }", "private void logoutUser() {\n session.setLogin(false);\n\n db.deleteUsers();\n\n // Launching the login activity\n Intent intent = new Intent(MainActivity.this, Login.class);\n startActivity(intent);\n finish();\n }", "public void deleteUserRequest(UserRequest request){\n userRequests.remove(request);\n }", "void deleteUserById(Long id);", "@Override\n\tpublic void deleteUser(User user)\n\t{\n\n\t}", "@Nullable\n public UserExperienceAnalyticsAnomalyDevice delete() throws ClientException {\n return send(HttpMethod.DELETE, null);\n }", "@Override\r\n\tpublic int delete(User user) {\n\t\treturn 0;\r\n\t}", "@Override\n public void handleTokenExpiration(){\n JWTToken.removeTokenSharedPref(this);\n }", "@Test\n public void deleteServiceAccountTokenTest() throws ApiException {\n String owner = null;\n String entity = null;\n String uuid = null;\n api.deleteServiceAccountToken(owner, entity, uuid);\n // TODO: test validations\n }", "public String generateRefreshToken(ApplicationUser user) {\n Date expiryDate = java.sql.Date.valueOf(LocalDate.now().plusDays(jwtConfig.getRefreshExpirationDateInMs()));\n return Jwts.builder()\n .setSubject(user.getUser().getUsername())\n .claim(\"authorities\", user.getAuthorities())\n .setIssuedAt(new Date(System.currentTimeMillis()))\n .setExpiration(expiryDate)\n .signWith(jwtSecretKey.secretKey())\n .compact();\n }", "public void clear() throws DBException\n {\n String sqlString = \"DELETE FROM authToken\";\n try(Statement statement = conn.createStatement())\n {\n statement.executeUpdate(sqlString);\n }\n catch(SQLException ex)\n {\n throw new DBException(\"Error while clearing authToken table\");\n }\n }", "@Override\n public void onTokenRefresh(){\n if (FirebaseAuth.getInstance().getCurrentUser() != null) {\n String token = FirebaseInstanceId.getInstance().getToken();\n Log.v(TAG, \"success in getting instance \"+ token);\n onSendRegistrationToServer(token);\n }\n }", "@Override\n public void onTokenRefresh() {\n\n String refreshedToken = FirebaseInstanceId.getInstance().getToken();\n Log.d(TAG, \"Refreshed token: \" + refreshedToken);\n\n // TODO: 13/6/2017 Persistir token en archivo XML.\n sharedPreferences = getSharedPreferences(\"datos\",MODE_PRIVATE);\n SharedPreferences.Editor edit = sharedPreferences.edit();\n edit.putString(String.valueOf(R.string.token),refreshedToken);\n edit.commit();\n\n\n }", "@Override\r\n\tpublic String refreshToken() throws OAuthSystemException {\n\t\treturn null;\r\n\t}", "@Override\n\tpublic void deleteOneUser(long ids) {\n\t\tregisters.deleteRegisterById(ids);\n\t}", "@Override\n public void onCancel() {\n Log.d(TAG, \"User cancelled login.\");\n updateRefreshTokenUI(true);\n }", "public void logout() {\n updateToken(\"\");\n startActivity(new Intent(GarageListActivity.this, LoginScreenActivity.class));\n updateToken(\"\");\n finish();\n }", "public void deleteUser(ExternalUser userMakingRequest, String userId);", "@Test\n public void iTestDeleteUser() {\n given()\n .header(\"X-Authorization\", token)\n .delete(\"/users\")\n .then()\n .statusCode(200);\n }", "@ApiImplicitParams(\n @ApiImplicitParam(name = \"authorization\", value = \"${userController.authorizationHeader.description}\", paramType = \"header\"))\n @DeleteMapping(path = \"/{id}\", produces = {MediaType.APPLICATION_JSON_VALUE, MediaType.APPLICATION_XML_VALUE})\n public OperationStatus deleteUser(@PathVariable String id) {\n OperationStatus returnValue = new OperationStatus();\n returnValue.setOperationName(RequestOperationName.DELETE.name());\n userService.deleteUser(id);\n returnValue.setOperationResult(RequestOperationStatus.SUCCESS.name());\n return returnValue;\n }", "private void unregister()\n {\n\tLog.d(Globals.TAG, \"UNREGISTER USERID: \" + regid);\n\tnew AsyncTask<Void, Void, String>()\n\t{\n\t @Override\n\t protected String doInBackground(Void... params)\n\t {\n\t\tString msg = \"\";\n\t\ttry\n\t\t{\n\t\t Bundle data = new Bundle();\n\t\t data.putString(\"action\", \"com.antoinecampbell.gcmdemo.UNREGISTER\");\n\t\t String id = Integer.toString(msgId.incrementAndGet());\n\t\t gcm.send(Globals.GCM_SENDER_ID + \"@gcm.googleapis.com\", id, Globals.GCM_TIME_TO_LIVE, data);\n\t\t msg = \"Sent unregistration\";\n\t\t gcm.unregister();\n\t\t}\n\t\tcatch (IOException ex)\n\t\t{\n\t\t msg = \"Error :\" + ex.getMessage();\n\t\t}\n\t\treturn msg;\n\t }\n\n\t @Override\n\t protected void onPostExecute(String msg)\n\t {\n\t\tremoveRegistrationId(getApplicationContext());\n\t\tToast.makeText(context, msg, Toast.LENGTH_SHORT).show();\n\t\t((TextView)findViewById(R.id.gcm_userid_textview)).setText(regid);\n\t }\n\t}.execute();\n }", "private void logout() {\n //set offline flag\n String uid = FirebaseAuth.getInstance().getCurrentUser().getUid();\n new PostNoSqlDataBase(this).offline(uid);\n\n //logout\n // FirebaseAuth mAuth = FirebaseAuth.getInstance();\n GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)\n .requestIdToken(getString(R.string.default_web_client_id))\n .requestEmail()\n .build();\n\n GoogleSignInClient mGoogleSignInClient = GoogleSignIn.getClient(this, gso);\n mGoogleSignInClient.signOut();\n FirebaseAuth.getInstance().signOut();\n //go to the main activity\n startActivity(new Intent(this, SignUpActivity.class));\n finish();\n }", "public void deleteUser(User user) {\n\t\tdelete(user);\r\n\t}", "void deleteFingerprint(Long id, String user) throws SQLException;", "private void logoutUser() {\n session.setLogin(false);\n\n db.deleteUsers();\n\n // Launching the login activity\n Intent intent = new Intent(this, Login.class);\n startActivity(intent);\n finish();\n }", "public void removeUserFromSession(String token){\n\t\tfor(Session s: getSessionSet()){\n\t\t\tif(s.getToken().equals(token))\n\t\t\t\ts.delete();\t\t\t\t\t//Deletes user session.\n\t\t}\t\n\t}", "void logout(Token token) throws WorkspaceException;", "@Test\n public void deleteDeviceTest() throws ApiException {\n String deviceId = null;\n // DeviceEnvelope response = api.deleteDevice(deviceId);\n\n // TODO: test validations\n }", "private void logoutUser() {\n session.setLogin(false);\n\n db.deleteUsers();\n\n // Launching the login activity\n Intent intent = new Intent(Activity_Main.this, Activity_Login.class);\n startActivity(intent);\n finish();\n }", "@Override\n public void run() {\n UserTask<Void> userTask = new UserTask<>(userId);\n userTask.setFirebaseToken(refreshedToken);\n userTask.execute(\"refreshFirebaseToken\");\n\n }", "public void firebaseSignOut() {\n firebaseAuth.signOut();\n }", "private void googleSignOut() {\n googleSignInClient.signOut();\n }", "public void delete() {\n URL url = DELETE_FOLDER_LOCK_URL_TEMPLATE.build(this.getAPI().getBaseURL(), this.getID());\n BoxAPIRequest request = new BoxAPIRequest(this.getAPI(), url, \"DELETE\");\n request.send().close();\n }", "public void deleteUser(long userId);", "public static void deleteUser() {\n try {\n buildSocket();\n ClientService.sendMessageToServer(connectionToServer, ClientService.deleteUser());\n closeSocket();\n } catch (Exception e) {\n e.printStackTrace();\n }\n }" ]
[ "0.68045163", "0.6788385", "0.649493", "0.6456859", "0.6342451", "0.6195463", "0.6063082", "0.5891968", "0.58311224", "0.5830171", "0.5746254", "0.5738066", "0.5720369", "0.56966317", "0.56901175", "0.56884515", "0.5652969", "0.56465393", "0.56419486", "0.5611213", "0.56073946", "0.5562352", "0.5555092", "0.5553006", "0.55498743", "0.55236053", "0.5506938", "0.55008304", "0.5489595", "0.5480512", "0.5479481", "0.5477967", "0.54713744", "0.54702836", "0.54682404", "0.54676855", "0.5461396", "0.5454248", "0.5447253", "0.544508", "0.54430294", "0.54349476", "0.5434617", "0.5424803", "0.541684", "0.540711", "0.540519", "0.54042137", "0.5394992", "0.5394525", "0.53867435", "0.5375929", "0.5374593", "0.5371125", "0.5354891", "0.53452635", "0.5342592", "0.531373", "0.5302359", "0.5293519", "0.52928424", "0.52829415", "0.5282699", "0.52758026", "0.5273675", "0.5273104", "0.52690834", "0.52662873", "0.5259421", "0.5258275", "0.52535444", "0.5249821", "0.52377164", "0.5230388", "0.5225075", "0.5223133", "0.52084327", "0.5201366", "0.51986253", "0.5187549", "0.5185784", "0.51852864", "0.5171981", "0.5171436", "0.51690197", "0.516113", "0.51494026", "0.51478803", "0.51427454", "0.5141909", "0.514135", "0.5138937", "0.5137701", "0.5136719", "0.5132747", "0.5132276", "0.51254237", "0.51183385", "0.5118227", "0.511153" ]
0.65720403
2
Increase the count of the token usage in the database. Useful for audit purposes
public void increaseCount(RefreshToken refreshToken) { refreshToken.incrementRefreshCount(); save(refreshToken); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void incrementUsageCount() {\n usageCount++;\n }", "private void updateTokenCount() {\n // add new tokens based on elapsed time\n int now = service.elapsedMillis();\n int timeElapsed = now - lastTokenTime;\n if (timeElapsed >= tokenPeriodMs) {\n numTokens += timeElapsed / tokenPeriodMs;\n lastTokenTime = now - timeElapsed % tokenPeriodMs;\n }\n }", "public void incrementCount() {\n count++;\n }", "public void incrementCount() {\n\t\tcount++;\n\t}", "public void addCount()\n {\n \tcount++;\n }", "@Override\n\tpublic void addURLVisitCount(String shortUrl){\t\t\n\t\t \t\t\t\t \t\t\n\t\t \t\tint visitCount = getVisitCountList(shortUrl).getVisitCount();\t\t\n\t\t \t\tvisitCount++;\t\t\n\t\t \t\tString SQL = \"UPDATE GlobalUrlDB SET visitCount = (?) WHERE shortUrl = (?)\";\t\t\n\t\t \t\tObject[] params = new Object[] { visitCount, shortUrl };\t\t\n\t\t \t\ttry{\t\t\n\t\t \t\t\tjdbcTemplateObject.update( SQL, params);\t\t\n\t\t \t\t}\t\t\n\t\t \t\tcatch(Exception e){\t\t\n\t\t \t\t\te.printStackTrace();\t\t\n\t\t \t\t}\t\t\n\t\t \t\t\n\t\t \t}", "public void incrementCount(){\n count+=1;\n }", "void incrementAddedCount() {\n addedCount.incrementAndGet();\n }", "void incrementAccessCounterForSession();", "public void incrementNumAttacked( ){\n this.numAttacked++;\n }", "public void incCount() { }", "public void increase() {\r\n\t\t\tsynchronized (activity.getTaskTracker()) {\r\n\t\t\t\tactivity.getTaskTracker().count++;\r\n\t\t\t\tLog.d(LOGTAG, \"Incremented task count to \" + count);\r\n\t\t\t}\r\n\t\t}", "public void increaseCount(){\n myCount++;\n }", "void incrementCount();", "public void increaseNonce() {\n this.index++;\n }", "public void addTokens(int amount) {\n \tnumTokens += amount;\n }", "void incUsage() {\n incUsage(1);\n }", "void updateFrequencyCount() {\n //Always increments by 1 so there is no need for a parameter to specify a number\n this.count++;\n }", "void incrementAccessCounter();", "public void increase(int number) {\r\n this.count += number;\r\n }", "public void increase(int number) {\r\n this.count += number;\r\n }", "private synchronized void incrementCount()\n\t{\n\t\tcount++;\n\t}", "public void IncrementCounter()\r\n {\r\n \tsetCurrentValue( currentValue.add(BigInteger.ONE)); \r\n \r\n log.debug(\"counter now: \" + currentValue.intValue() );\r\n \r\n }", "public void increasePaymentCounter() throws SQLException{\n\t\tConnection conn = DataSource.getConnection();\n\t\ttry{\n\t\n\t\t\tString query = \"Update loan \"\n\t\t\t\t\t\t+ \" SET current_payment_counter = current_payment_counter+1\"\n\t\t\t\t\t\t+ \" WHERE client_id = '\"+this.client_id+\"' AND start_date = '\"+this.start_date+\"';\";\n\t\t\tStatement stat = conn.createStatement();\n\t\t\tstat.execute(query);\n\t\t\t\n\t\t}finally{\n\t\t\tconn.close();\n\t\t}\n\t}", "private void incUsage(int amount) {\n if (amount < 0 && !destroyed) {\n Assert.assertTrue(usageCount - amount >= 0,\n amount + \" cannot be subtracted from usageCount \" + usageCount);\n }\n usageCount += amount;\n }", "private synchronized void updateLogCount() {\n this.logCount++;\n }", "public static void increment() {\n\t\tcount.incrementAndGet();\n//\t\tcount++;\n\t}", "public void increase()\n {\n setCount(getCount() + 1);\n }", "public void incrementActiveRequests() \n {\n ++requests;\n }", "public synchronized void increaseUsersConn() {\r\n\t\tusersConn++;\r\n\t}", "public void increaseNumHits() {\n\t\tthis.numHits += 1;\n\t}", "private void appStartCountIncrease(int currentAppStartCount) {\n\t\tPrefs p = new Prefs(c);\n\t\tp.save(\"app_start_count\", currentAppStartCount + 1);\n\t}", "private void incrementCounter()\r\n\t{\r\n\t\tthis.counter++;\r\n\t}", "public void incrementNumAddRequests() {\n this.numAddRequests.incrementAndGet();\n }", "public void incrementKills() {\n stats.put(killsKey, (Integer)stats.get(killsKey)+1);\n }", "public void incrementStatementCount() {\n this.statementCount++;\n }", "@Override\n public synchronized void increment() {\n count++;\n }", "void setAccessCounter(int cnt);", "@Override\r\n\tpublic void increaseReviewViewCnt(int no) {\n\t\tsqlSession.update(namespace + \".increaseReviewViewCnt\", no);\r\n\t}", "public void incCounter()\n {\n counter++;\n }", "public void incCounter(){\n counter++;\n }", "public void addCount(String t) {\n\t\tif (tagList.containsKey(t)) {\n\t\t\tInteger previousCount = tagList.get(t);\n\t\t\ttagList.put(t, previousCount + 1);\n\t\t} else {\n\t\t\tSystem.out.print(\"Tag does not exist!\");\n\t\t}\n\t}", "public void incrementNumExtendedRequests() {\n this.numExtendedRequests.incrementAndGet();\n }", "@Override\r\n\tpublic int increase() throws Exception {\n\t\treturn 0;\r\n\t}", "public void increaseNumberOfVisit(String shortUrl) {\n ShortenerMapping shortenerMappings = shortenerRepository.findShortenerMappingsByShortUrl(shortUrl);\n shortenerMappings.setVisits(shortenerMappings.getVisits() + 1);\n Browsers currentVisitingBrowsers = getBrowserAgent();\n if (currentVisitingBrowsers == Browsers.CHROME) {\n shortenerMappings.setChrome(shortenerMappings.getChrome() + 1);\n } else if (currentVisitingBrowsers == Browsers.FIREFOX) {\n shortenerMappings.setFirefox(shortenerMappings.getFirefox() + 1);\n } else if (currentVisitingBrowsers == Browsers.SAFARI) {\n shortenerMappings.setSafari(shortenerMappings.getSafari() + 1);\n } else if (currentVisitingBrowsers == Browsers.OPERA) {\n shortenerMappings.setOpera(shortenerMappings.getOpera() + 1);\n } else if (currentVisitingBrowsers == Browsers.EDGE) {\n shortenerMappings.setEdge(shortenerMappings.getEdge() + 1);\n } else if (currentVisitingBrowsers == Browsers.INTERNET_EXPLORER) {\n shortenerMappings.setInternet_explorer(shortenerMappings.getInternet_explorer() + 1);\n } else if (currentVisitingBrowsers == Browsers.POSTMAN) {\n shortenerMappings.setPostman(shortenerMappings.getPostman() + 1);\n } else if (currentVisitingBrowsers == Browsers.POWERSHELL) {\n shortenerMappings.setPowershell(shortenerMappings.getPowershell() + 1);\n } else {\n shortenerMappings.setUnknown(shortenerMappings.getUnknown() + 1);\n }\n shortenerRepository.save(shortenerMappings);\n }", "public void increment(){\n\t\twordCount += 1;\n\t}", "public void inc(String name, long count) {\n counters.addTo(name, count);\n }", "private void incrementGcCounter() {\n if (null == PSAgentContext.get().getMetrics()) {\n return; // nothing to do.\n }\n long elapsedGc = getElapsedGc();\n long totalGc = 0;\n String gc_time = PSAgentContext.get().getMetrics().get(AngelCounter.GC_TIME_MILLIS);\n if (gc_time != null) {\n totalGc = elapsedGc + Long.parseLong(gc_time);\n } else {\n totalGc = elapsedGc;\n }\n PSAgentContext.get().getMetrics().put(AngelCounter.GC_TIME_MILLIS, Long.toString(totalGc));\n }", "private void incrConnectionCount() {\n connectionCount.inc();\n }", "public void changeCount(final int c) {\n\t\tcount += c;\n\t}", "public void addNumOfActionTaken() {\n this.numOfActionTaken++;\n }", "void setAccessCounterForSession(int cnt);", "void incCount() {\n ++refCount;\n }", "private synchronized void increment() {\n ++count;\n }", "public void increment() {\n mNewNotificationCount.setValue(mNewNotificationCount.getValue() + 1);\n }", "@Override\r\n\tpublic void increaseViewCnt(int no) {\n\t\tsqlSession.update(namespace + \".increaseViewCnt\", no);\r\n\t}", "public void incrementCount(View view) {\n\t\tcounterModel.incrementCounter();\n\t\tcurrentCountTextView.setText(Integer.toString(counterModel.getCount()));\n\t}", "public void incrementNumAbandonRequests() {\n this.numAbandonRequests.incrementAndGet();\n }", "public void count() {\n APIlib.getInstance().addJSLine(jsBase + \".count();\");\n }", "public double Increase(long amount) \n {\n lastAmount = amount;\n return count += amount;\n }", "public void like() {\n this.likes += 1;\n }", "public static synchronized void inccount()\r\n\t{\r\n\t\tcount++;\r\n\t}", "public void incuploadcount(){\n\t\tthis. num_upload++;\n\t}", "public void increaseCount(View view) {\n count++;\n display(count);\n }", "public void addCount() {\n \t\tdupCount++;\n \t}", "@Override\n public void addNew(int latency) {\n count.getAndIncrement();\n }", "private static void add() {\n\tcount.incrementAndGet();\n}", "private synchronized static void upCount() {\r\n\t\t++count;\r\n\t}", "public void increaseCounter(UltraSearchSessions.Session session,\n HugeType type, long increment) {\n\n\n JSONObject result = session.get(TABLE, type.name());\n if(null == result){\n putCounter(session, type, increment);\n return;\n }\n\n\n JSONObject obj = new JSONObject();\n\n JSONObject fields = new JSONObject();\n JSONObject id = new JSONObject();\n id.put(\"increment\", increment);\n fields.put(\"ID\", id);\n\n obj.put(\"fields\", fields);\n session.putDoc(TABLE, type.name(), obj.toString());\n\n\n }", "private synchronized void increment() {\n count++;\n atomicInteger.incrementAndGet();\n }", "private void increment() {\n for (int i=0; i < 10000; i++) {\n count++;\n }\n }", "public static synchronized void increment() {\r\n\t\tcount++;\r\n\t}", "public void Increase()\n {\n Increase(1);\n }", "manExp15(){ \r\n\r\n\tcount++; \r\n\r\n\tSystem.out.println(count); \r\n\r\n\t}", "public void increaseFeatureCount() {\n this.featureCount++;\n }", "private void updateSessionCounter(HttpSessionEvent httpSessionEvent){\n httpSessionEvent.getSession().getServletContext()\r\n .setAttribute(\"activeSession\", counter.get());\r\n LOG.info(\"Total active session are {} \",counter.get());\r\n }", "public void increase() {\r\n\r\n\t\tincrease(1);\r\n\r\n\t}", "public void addCount()\r\n {\r\n bookCount++;\r\n }", "public void incrementAmount() { amount++; }", "public void incrementNumDeleteRequests() {\n this.numDeleteRequests.incrementAndGet();\n }", "public void incrMetaCacheHit() {\n metaCacheHits.inc();\n }", "@Override\n public void incrementCounter(String name, long val) {\n this.getRegistry().meter(name).mark(val);\n }", "void recount();", "public static void addSaveCounter5(Context context) {\n prefs = context.getSharedPreferences(\"com.mobile.counterappmobile\", context.MODE_PRIVATE);\n SaveCounter5 = prefs.getInt(saveCounter5, 0);\n SaveCounter5 = SaveCounter5 + SaveInc;\n prefs.edit().putInt(saveCounter5, SaveCounter5).commit();\n\n }", "protected int incModCount() {\n\n if (LOG.isDebugEnabled()) {\n\n Throwable trace = new Throwable(\"Stack Trace\");\n StackTraceElement elements[] = trace.getStackTrace();\n\n Logging.logCheckedDebug(LOG,\"Modification #\" + (getModCount() + 1) + \" to PeerAdv@\" + Integer.toHexString(System.identityHashCode(this))\n + \" caused by : \" + \"\\n\\t\" + elements[1] + \"\\n\\t\" + elements[2]);\n\n }\n\n return modCount.incrementAndGet();\n }", "private static void setCounter() {++counter;}", "public void addWordCount(){\r\n\t\twordCount = wordCount + 1;\r\n\t}", "public void setPassCounter()\r\n {\r\n passCounter++;\r\n\r\n }", "public void increasecounter() {\n\t\tmPref.edit().putInt(PREF_CONVERTED, counter + 1).commit();\r\n\t}", "public void incrementNumModifyDNRequests() {\n this.numModifyDNRequests.incrementAndGet();\n }", "public static synchronized void increment(){\n count++;\n }", "private synchronized void updateErrorCount(int errorCount) {\r\n\t\tthis.errorCount += errorCount;\r\n\t}", "public void incrementNumSearchRequests() {\n this.numSearchRequests.incrementAndGet();\n }", "public long getUserCount() throws UserManagementException;", "protected void updateTokens(){}", "public void incFileCount(){\n\t\tthis.num_files++;\n\t}", "@Override\n\tpublic int incrementFailedCountForUsername(String username) {\n\t\tString sqlString = \"UPDATE `user` SET user.`FAILED_ATTEMPTS`=user.`FAILED_ATTEMPTS`+1 WHERE user.`USERNAME`=?\";\n\t\treturn this.jdbcTemplate.update(sqlString, username);\n\t}", "public void setCount(int newCount) {\r\n\t\tcount = newCount;\r\n\t}", "public void increaseTurnCount()\n\t{\n\t\tturnNumber++;\n\t\tthis.currentPlayerID++;\n\t\tthis.currentPlayerID = this.currentPlayerID % this.playerList.size();\n\t}", "public void increaseCourseCount(){}" ]
[ "0.7285446", "0.68353707", "0.6553121", "0.6449795", "0.64235395", "0.6278644", "0.6253618", "0.62381244", "0.62194705", "0.6212911", "0.61765295", "0.6171779", "0.615206", "0.614914", "0.6119562", "0.6104955", "0.6076895", "0.6038824", "0.60197115", "0.5995856", "0.5995856", "0.5974228", "0.5943824", "0.5937197", "0.5925659", "0.5908798", "0.588755", "0.58747023", "0.5871873", "0.5866946", "0.5858065", "0.58387524", "0.5822434", "0.58172643", "0.5813583", "0.5798757", "0.5789383", "0.57892174", "0.5766516", "0.5754441", "0.5747841", "0.57446563", "0.5743793", "0.5743272", "0.57410544", "0.5737138", "0.5722484", "0.5720007", "0.570741", "0.5701592", "0.5700874", "0.56888247", "0.56855714", "0.5673438", "0.56688017", "0.5663903", "0.5658601", "0.5651799", "0.5645604", "0.5632773", "0.56319463", "0.5631935", "0.56273335", "0.5613749", "0.56045514", "0.5604054", "0.5597778", "0.5590142", "0.558824", "0.55855525", "0.5585178", "0.5584788", "0.5578993", "0.5569451", "0.5566311", "0.55586463", "0.5548213", "0.5531813", "0.5518259", "0.54995894", "0.5498874", "0.54907864", "0.54889506", "0.5485669", "0.54834014", "0.5482221", "0.5478563", "0.546791", "0.54649633", "0.5458101", "0.54566157", "0.544517", "0.5430528", "0.5425799", "0.54171956", "0.5415807", "0.54145956", "0.5409596", "0.5402193", "0.5391294" ]
0.641101
5
this function is used to save accounts.
public CheckingAccount(int no, double cR, Persion o) { chargeRate = cR; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void saveAccount() {\n\n }", "public void\tsaveAccounts() throws IOException;", "void save(Account account);", "boolean save(Account account);", "@Override\r\n\tpublic void save(TAdAddress account) {\n\r\n\t}", "public void saveAccount() {\r\n\t\t\r\n\t\tString[] emailParts = GID.split(\"@\");\r\n\t\t//Recover the file name\r\n\t\tString fileName = name + \"_\" + emailParts[0] + \"_\" + emailParts[1];\r\n\t\t\r\n\t try {\r\n\t //use buffering\r\n\t OutputStream file = new FileOutputStream( fileName );\r\n\t OutputStream buffer = new BufferedOutputStream( file );\r\n\t ObjectOutput output = new ObjectOutputStream( buffer );\r\n\t \r\n\t try {\r\n\t \toutput.writeObject(this);\r\n\t }\r\n\t finally {\r\n\t \toutput.close();\r\n\t }\r\n\t }\r\n\t \r\n\t catch(IOException ex){\r\n\t \t System.out.println(\"Cannot perform output.\");\r\n\t }\r\n\t}", "private void writeAccount() {\n SharedPreferences pref = getSharedPreferences(\"ACCOUNT\", Context.MODE_PRIVATE);\n SharedPreferences.Editor edt = pref.edit();\n\n edt.putString(\"email\", Me.getInstance().getEmail());\n edt.putString(\"password\", txtPassword.getText().toString().trim());\n\n edt.commit();\n }", "@SuppressWarnings(\"unchecked\")\n private void saveAccounts() {\n JSONObject output = new JSONObject();\n JSONArray allaccounts = new JSONArray();\n for (Account account: accounts) {\n if (account.getName().equals(pickedAccount.getName())) {\n allaccounts.add(pickedAccount.toJsonObject());\n } else {\n allaccounts.add(account.toJsonObject());\n }\n }\n output.put(\"accounts\", allaccounts);\n\n try {\n FileWriter file = new FileWriter(\"./data/account.json\");\n file.write(output.toJSONString());\n file.flush();\n file.close();\n } catch (IOException e) {\n e.printStackTrace();\n }\n }", "@Override\n\tpublic void save(Account userForm) {\n\t\taccount.save(userForm);\n\n\t}", "Account save(Account account);", "AccountModel save(AccountModel account) throws AccountException;", "public SavingAccount()\n\t\t{\n\t\t\tsuper();\n\t\t}", "@Override\n\tpublic void createSavingAccount(Account as) {\n\t\ttry {\n\t\t\tConnection con = conUtil.getConnection();\n\t\t\t//To use our functions/procedure we need to turn off autocommit\n\t\t\tcon.setAutoCommit(false);\n\t\t\tString saving = \"insert into savings( owner_id, balance) values (?,?)\";\n\t\t\tCallableStatement chaccount = con.prepareCall(saving);\n\t\t\n\t\t\tchaccount.setInt(1,as.getOwner_id() );\n\t\t\tchaccount.setDouble(2, as.getBalance());\n\t\t\tchaccount.execute();\n\t\t\t\n\t\t\tcon.setAutoCommit(true);\n\t\t\t\n\t\t} catch(SQLException e) {\n\t\t\t\n\t\t\tSystem.out.println(\"In CheckingDaoDB Exception\");\n\t\t\te.printStackTrace();\n\t\t}\n}", "public void saveAccount(View view) {\n\t\tdata.setmSearchFilter(data.getmSearchFilterEdit().getText().toString());\n\t\tif(data.getmFirstNameEdit()!= null)\n\t\t{\n\t\t\tdata.setmBaseDN(data.getmBaseDNSpinner().getText().toString());\n\t\t\tdata.setmFirstName((String)data.getmFirstNameEdit().getSelectedItem());\n\t\t\tdata.setmLastName((String)data.getmLastNameEdit().getSelectedItem());\n\t\t\tdata.setmOfficePhone((String)data.getmOfficePhoneEdit().getSelectedItem());\n\t\t\tdata.setmCellPhone((String)data.getmCellPhoneEdit().getSelectedItem());\n\t\t\tdata.setmHomePhone((String)data.getmHomePhoneEdit().getSelectedItem());\n\t\t\tdata.setmEmail((String)data.getmEmailEdit().getSelectedItem());\n\t\t\tdata.setmImage((String)data.getmImageEdit().getSelectedItem());\n\t\t\tdata.setmStreet((String)data.getmStreetEdit().getSelectedItem());\n\t\t\tdata.setmCity((String)data.getmCityEdit().getSelectedItem());\n\t\t\tdata.setmZip((String)data.getmZipEdit().getSelectedItem());\n\t\t\tdata.setmState((String)data.getmStateEdit().getSelectedItem());\n\t\t\tdata.setmCountry((String)data.getmCountryEdit().getSelectedItem());\n\t\t}\n\t\t\n\t\tif (!data.ismConfirmCredentials()) {\n\t\t\tfinishLogin();\n\t\t} else {\n\t\t\tfinishConfirmCredentials(true);\n\t\t}\n\t}", "@Override\n\tpublic void saveData()\n\t{\n ssaMain.d1.pin = ssaMain.tmp_pin1;\n ssaMain.d1.balance = ssaMain.tmp_balance1;\n System.out.println(\"Your account has been established successfully.\");\n\t}", "public void saveOrUpdate(Account account) {\n accountRepository.save(account);\n }", "public void saveAccountConfig () {\n\t\ttry {\n\t\t\tthis.accountConfig.store(new FileWriter(new File(this.accountAddress)), \"\");\n\t\t} catch (IOException e) {\n\t\t\tSystem.err.println(\"[ERROR] Could not save initialization to account properties file: \" + accountAddress);\n\t\t\tSystem.err.println(e.getMessage());\n\t\t}\n\t}", "private void createNewAccount() {\n\n // if user has not provided valid data, do not create an account and return from method\n if (!validateData()) {\n return;\n }\n\n // If flag value is false, that means email provided by user doesn't exists in database\n // so initialize the loader to create a new account\n if (!mEmailExistsFlag) {\n getLoaderManager().initLoader(CREATE_NEW_ACCOUNT_LOADER_ID, null, this);\n } else {\n // If flag is true, that means email provided by user already exists in database\n // so restart the loader and allow user to enter new email address for account\n getLoaderManager().restartLoader(CREATE_NEW_ACCOUNT_LOADER_ID, null, this);\n }\n\n }", "@Override\n public void insertAccount() throws Exception {\n\n }", "@Override\r\n\tpublic boolean save(AccountBean account) {\r\n\r\n\t\tSession session = factory.openSession();\r\n\t\tTransaction txn = session.getTransaction();\r\n\r\n\t\ttry {\r\n\t\t\ttxn.begin();\r\n\t\t\tsession.save(account);\r\n\t\t\ttxn.commit();\r\n\t\t\treturn true;\r\n\t\t} catch (Exception e) {\r\n\t\t\te.printStackTrace();\r\n\t\t\ttxn.rollback();\r\n\t\t\treturn false;\r\n\t\t}\r\n\t}", "public void AddToAccountInfo();", "void addNewAccountToFile(Account newAccount);", "@FXML\r\n\tpublic void saveNewAccount( ) {\r\n\t\t// Save user input\r\n\t\tString name = userName.getText( );\r\n\t\tString mail = email.getText( );\r\n\r\n\t\t// Call the to file method to write to data.txt\r\n\t\tUserToFile.toFile(name, pin, mail);\r\n\t\t\r\n\t\t// View the test after the info is saved\r\n\t\tviewTest( );\r\n\t}", "int save(final PaymentAccountScope scope);", "public void saveOrUpdateProfile(){\n try {\n \n if(PersonalDataController.getInstance().existRegistry(username)){\n PersonalDataController.getInstance().update(username, staff_name, staff_surname, \n Integer.parseInt(id_type), \n id_number, imagePic, phone_number, mobile_number, email, birthdate, \n Integer.parseInt(gender), birthdate);\n }else{\n PersonalDataController.getInstance().create(username, staff_name, staff_surname, \n Integer.parseInt(id_type), \n id_number, imagePic, phone_number, mobile_number, email, birthdate, \n Integer.parseInt(gender));\n }\n } catch (GB_Exception ex) {\n LOG.error(ex);\n GBMessage.putMessage(GBEnvironment.getInstance().getError(32), null);\n }\n GBMessage.putMessage(GBEnvironment.getInstance().getError(33), null);\n }", "void updateAccount();", "private void createAccount()\n {\n // check for blank or invalid inputs\n if (Utils.isEmpty(edtFullName))\n {\n edtFullName.setError(\"Please enter your full name.\");\n return;\n }\n\n if (Utils.isEmpty(edtEmail) || !Utils.isValidEmail(edtEmail.getText().toString()))\n {\n edtEmail.setError(\"Please enter a valid email.\");\n return;\n }\n\n if (Utils.isEmpty(edtPassword))\n {\n edtPassword.setError(\"Please enter a valid password.\");\n return;\n }\n\n // check for existing user\n AppDataBase database = AppDataBase.getAppDataBase(this);\n User user = database.userDao().findByEmail(edtEmail.getText().toString());\n\n if (user != null)\n {\n edtEmail.setError(\"Email already registered.\");\n return;\n }\n\n user = new User();\n user.setId(database.userDao().findMaxId() + 1);\n user.setFullName(edtFullName.getText().toString());\n user.setEmail(edtEmail.getText().toString());\n user.setPassword(edtPassword.getText().toString());\n\n database.userDao().insert(user);\n\n Intent intent = new Intent(this, LoginActivity.class);\n intent.putExtra(\"user\", user);\n startActivity(intent);\n }", "public JavaaccountModel postaccount(JavaaccountModel oJavaaccountModel){\n\n \t/* Create a new hibernate session and begin the transaction*/\n Session hibernateSession = HibernateUtil.getSessionFactory().openSession();\n Transaction hibernateTransaction = hibernateSession.beginTransaction();\n\n /* Insert the new account to database*/\n int accountId = (Integer) hibernateSession.save(oJavaaccountModel);\n\n /* Commit and terminate the session*/\n hibernateTransaction.commit();\n hibernateSession.close();\n\n /* Return the JavaaccountModel with updated accountId*/\n oJavaaccountModel.setaccountId(accountId);\n return oJavaaccountModel;\n }", "@Override\n\tpublic String createAccount() {\n\t\treturn \"Created Saving Account Sucessfully\";\n\t}", "@Override\n\tpublic void updateAccount(String pwd, String field, String company) {\n\t}", "public boolean saveAccount(Account account)\n {\n PreparedStatement preparedStatement = null;\n try\n {\n preparedStatement = connection.prepareStatement(\n String.format(\"UPDATE %s.accounts SET balance=? WHERE id = ?;\",\n simpleEconomy.getConfig().getString(\"db.database\")));\n preparedStatement.setDouble(1, account.getBalance());\n preparedStatement.setInt(2, account.getId());\n preparedStatement.execute();\n return true;\n }\n catch (SQLException e)\n {\n e.printStackTrace();\n }\n return false;\n }", "public UsersAccounting saveUserAccounting(UsersAccountingBo usersAccountingBo) throws FixitException;", "void save() {\r\n if (actionCompleted) {\r\n forget();\r\n } else {\r\n AccountSettings.stateStored = new Bundle();\r\n save(AccountSettings.stateStored);\r\n }\r\n }", "public JavaaccountModel putaccount(JavaaccountModel oJavaaccountModel){\n\n \t/* Create a new hibernate session and begin the transaction*/\n Session hibernateSession = HibernateUtil.getSessionFactory().openSession();\n Transaction hibernateTransaction = hibernateSession.beginTransaction();\n\n /* Update the existing account of the database*/\n hibernateSession.update(oJavaaccountModel);\n\n /* Commit and terminate the session*/\n hibernateTransaction.commit();\n hibernateSession.close();\n return oJavaaccountModel;\n }", "public void createUserAccount(UserAccount account);", "public void createAccount(){\n System.out.println(\"vi skal starte \");\n }", "public void addAccount() {\n\t\t\n\t\ttry {\n\t\t\tlog.log(Level.INFO, \"Please enter name\");\n String custName = scan.next();\n validate.checkName(custName);\n \t\tlog.log(Level.INFO, \"Select Account Type: \\n 1 for Savings \\n 2 for Current \\n 3 for FD \\n 4 for DEMAT\");\n\t\t\tint bankAccType = Integer.parseInt(scan.next());\n\t\t\tvalidate.checkAccType(bankAccType);\n\t\t\tlog.log(Level.INFO, \"Please Enter your Aadar Card Number\");\n\t\t\tString aadarNumber = scan.next();\n\t\t\tlog.log(Level.INFO, \"Please Enter Phone Number: \");\n\t\t\tString custMobileNo = scan.next();\n\t\t\tvalidate.checkPhoneNum(custMobileNo);\n\t\t\tlog.log(Level.INFO, \"Please Enter Customer Email Id: \");\n\t\t\tString custEmail = scan.next();\n\t\t\tvalidate.checkEmail(custEmail);\n\t\t\tbankop.add(accountNumber, custName, bankAccType, custMobileNo, custEmail, aadarNumber);\n\t\t\taccountNumber();\n\t\t\n\t\t} catch (AccountDetailsException message) {\n\t\t\tlog.log(Level.INFO, message.getMessage()); \n }\n\n\t}", "Account create();", "private void saveData() {\r\n\t\tif(mFirstname.getText().toString().trim().length() > 0 &&\r\n\t\t\t\tmLastname.getText().toString().trim().length() > 0 &&\r\n\t\t\t\tmEmail.getText().toString().trim().length() > 0) {\r\n\t\t\tmPrefs.setFirstname(mFirstname.getText().toString().trim());\r\n\t\t\tmPrefs.setLastname(mLastname.getText().toString().trim());\r\n\t\t\tmPrefs.setEmail(mEmail.getText().toString().trim());\r\n\t\t\tif(mMaleBtn.isChecked())\r\n\t\t\t\tmPrefs.setGender(0);\r\n\t\t\telse if(mFemaleBtn.isChecked())\r\n\t\t\t\tmPrefs.setGender(1);\r\n\t\t\tif(!mCalendarSelected.after(mCalendarCurrent)) \r\n\t\t\t\tmPrefs.setDateOfBirth(mCalendarSelected.get(Calendar.YEAR), \r\n\t\t\t\t\t\tmCalendarSelected.get(Calendar.MONTH), \r\n\t\t\t\t\t\tmCalendarSelected.get(Calendar.DAY_OF_MONTH));\r\n\t\t\tToast.makeText(getActivity(), R.string.msg_changes_saved, Toast.LENGTH_LONG).show();\r\n\t\t} else \r\n\t\t\tToast.makeText(getActivity(), R.string.msg_registration_empty_field, Toast.LENGTH_LONG).show();\r\n\t}", "@Override\n\tpublic void registerAccount(AccountVO account) {\n\tsession.insert(\"account.registerAccount\",account);\n\t\t\n\t}", "private void addAccount(Account account)\n\t {\n\t\t if(accountExists(account)) return;\n\t\t \n\t\t ContentValues values = new ContentValues();\n\t\t values.put(DatabaseContract.AccountContract.COLUMN_NAME_USERNAME, account.getUsername());\n\t\t values.put(DatabaseContract.AccountContract.COLUMN_NAME_BALANCE, account.getBalance());\n\t\t values.put(DatabaseContract.AccountContract.COLUMN_NAME_AUTH_TOKEN, account.getAuthenticationToken());\n\t\t \n\t\t db.insert(DatabaseContract.AccountContract.TABLE_NAME,\n\t\t\t\t null,\n\t\t\t\t values);\n\t\t \n\t }", "protected void finishLogin() {\n\t\tLog.i(TAG, \"finishLogin()\");\n\t\tfinal Account account = new Account(data.getmHost(), Constants.ACCOUNT_TYPE);\n\n\t\tif (data.ismRequestNewAccount()) {\n\t\t\tBundle userData = new Bundle();\n\t\t\tuserData.putString(Constants.PARAM_USERNAME, data.getmUsername());\n\t\t\tuserData.putString(Constants.PARAM_PORT, data.getmPort() + \"\");\n\t\t\tuserData.putString(Constants.PARAM_HOST, data.getmHost());\n\t\t\tuserData.putString(Constants.PARAM_ENCRYPTION, data.getmEncryption() + \"\");\n\t\t\tuserData.putString(Constants.PARAM_SEARCHFILTER, data.getmSearchFilter());\n\t\t\tuserData.putString(Constants.PARAM_BASEDN, data.getmBaseDN());\n\t\t\t// Mappings for LDAP data\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.FIRSTNAME, data.getmFirstName());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.LASTNAME, data.getmLastName());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.TELEPHONE, data.getmOfficePhone());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.MOBILE, data.getmCellPhone());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.HOMEPHONE, data.getmHomePhone());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.MAIL, data.getmEmail());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.PHOTO, data.getmImage());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.STREET, data.getmStreet());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.CITY, data.getmCity());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.ZIP, data.getmZip());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.STATE, data.getmState());\n\t\t\tuserData.putString(Constants.PARAM_MAPPING + Contact.COUNTRY, data.getmCountry());\n\t\t\tdata.getmAccountManager().addAccountExplicitly(account, data.getmPassword(), userData);\n\n\t\t\t// Set contacts sync for this account.\n\t\t\tContentResolver.setSyncAutomatically(account, ContactsContract.AUTHORITY, true);\n\t\t\tContactManager.makeGroupVisible(account.name, getContentResolver());\n\t\t} else {\n\t\t\tdata.getmAccountManager().setPassword(account, data.getmPassword());\n\t\t}\n\t\tfinal Intent intent = new Intent();\n\t\tdata.setmAuthtoken(data.getmPassword());\n\t\tintent.putExtra(AccountManager.KEY_ACCOUNT_NAME, account.name);\n\t\tintent.putExtra(AccountManager.KEY_ACCOUNT_TYPE, Constants.ACCOUNT_TYPE);\n\t\tif (data.getmAuthtokenType() != null && data.getmAuthtokenType().equals(Constants.AUTHTOKEN_TYPE)) {\n\t\t\tintent.putExtra(AccountManager.KEY_AUTHTOKEN, data.getmAuthtoken());\n\t\t}\n\t\tsetAccountAuthenticatorResult(intent.getExtras());\n\t\tsetResult(RESULT_OK, intent);\n\t\tfinish();\n\t}", "void accountSet(boolean admin, String username, String password, String fName, String lName, int accountId);", "private void createAccount(User user) throws IOException {\n File accounts = new File(\"accounts.txt\");\n if (!accounts.exists()) {\n accounts.createNewFile();\n }\n\n FileOutputStream fileOutputStream = new FileOutputStream(accounts, true);\n BufferedWriter bufferedWriter = new BufferedWriter(new OutputStreamWriter(fileOutputStream));\n\n bufferedWriter.write(user.getUserName() + \":\" + user.getUserPass());\n bufferedWriter.newLine();\n bufferedWriter.flush();\n }", "int createAccount(Account account);", "private void saveRegistration() {\n if (hasCorrectDetails()) {\n if (entryPoint != null) {\n switch (entryPoint.getStringExtra(SOURCE)) {\n case MainActivity.ACTIVITY_NAME:\n // Check any change in password? We know mPassword is never null since it's required\n if (!mPassword.equals(mSharedPreferences.getPassWord())) {\n saveUserData();\n startActivity(new Intent(RegisterActivity.this,\n LoginActivity.class)\n .putExtra(SOURCE, RegisterActivity.ACTIVITY_NAME));\n finish();\n } else {\n saveUserData();\n finish();\n }\n break;\n case LoginActivity.ACTIVITY_NAME:\n saveUserData();\n finish();\n break;\n }\n }\n\n }\n }", "@Override\r\n\tpublic int save(SpUser t) {\n\t\treturn 0;\r\n\t}", "@Test\n\tpublic void createAccountSavingTest() {\n\t\tsetChequingRadioDefaultOff();\n\t\trdbtnSaving.setSelected(true);\n\t\tdata.setRdbtnSaving(rdbtnSaving);\n\t\tAccount account = data.createNewAccount();\n\t\taccountTest = new Account(TEST_ACCOUNT_NAME, bankTest,\n\t\t\t\tAccount.Types.SAVING.getAccountType());\n\t\tassertEquals(accountTest, account);\n\t}", "public void saveAccountDetails(ExtentTest extentedReport) {\n\t\tWaitUtils.waitForElementPresent(driver, btnAddAccSave, \"Save button to add account is not found\");\n\t\tbtnAddAccSave.click();\n\t\tWaitUtils.waitForSpinner(driver);\n\t\tLog.message(\"Clicked on account save button\", extentedReport);\n\t}", "@Override\r\n\tpublic void save(User user) {\n\t\t\r\n\t}", "AccountModel add(AccountModel account) throws AccountException;", "private static void storeActivation(Context context) {\n\t\t//securely store in shared preference\n\t\tSharedPreferences secureSettings = new SecurePreferences(context);\n\t\tString account = UserEmailFetcher.getEmail(context);\n\n\t\t//update preference\n\t\tSharedPreferences.Editor secureEdit = secureSettings.edit();\n\t\tsecureEdit.putBoolean(account + \"_paid\", true);\n\t\tsecureEdit.apply();\n\t}", "@Override\n public void saveUser(User user) {\n }", "public void createAccount() {\n\t\tSystem.out.print(\"Enter Name: \");\n\t\tString name = nameCheck(sc.next());\n\t\tSystem.out.print(\"Enter Mobile No.: \");\n\t\tlong mobNo = mobCheck(sc.nextLong());\n\t\tlong accNo = mobNo - 1234;\n\t\tSystem.out.print(\"Enter Balance: \"); \n\t\tfloat balance = amountCheck(sc.nextFloat());\n\t\tuserBean BeanObjCreateAccountObj = new userBean(accNo, name, mobNo, balance);\n\t\tSystem.out.println(\"Account created with Account Number: \" +accNo);\n\t\tServiceObj.bankAccountCreate(BeanObjCreateAccountObj);\n\t\t\n\t\n\t}", "@Override\r\n\tpublic void save() {\n\t\tSystem.out.println(\"UserServiceImplÍ┤đđ┴╦\");\r\n\t\tuserDao.save();\r\n\t}", "@Override\n public void onSuccess(final Account account) {\n userid = account.getId();\n user = getApplicationContext().getSharedPreferences(\"USER_INFO\", Context.MODE_PRIVATE);\n editor = user.edit();\n editor.clear();\n editor.putString(\"ID\", userid);\n editor.commit();\n\n }", "public void saveToLocalXML(Context context){\n\n PreferenceManager.getDefaultSharedPreferences(context).edit().putInt(\"Account_amount\",\n this.size()).commit();\n for (int _iter = 0; _iter < AccountManager.getInstance().size(); _iter++) {\n PreferenceManager.getDefaultSharedPreferences(context).edit().putString(\"Account_\" + String.valueOf(_iter),\n this.getAccount(_iter).getName() + separator +\n this.getAccount(_iter).getUsername() + separator +\n this.getAccount(_iter).getPassword() + separator +\n String.valueOf(this.getAccount(_iter).getDepartment())).commit();\n }\n }", "public void addAccount(Account account,Person person);", "public void saveProfileCreateData() {\r\n\r\n }", "public static void save() {\n\t\t// Save each user \n\t\t// and list of directories \n\t\t// and files in each directory\n\t\tArrayList<String> usernames = getRegisteredUserNames();\n\t\tUtils.FileUtils.write(\n\t\t\t\tusernames, \n\t\t\t\tGlobal.Constants.LIST_OF_USERS\n\t\t\t\t);\t\n\t\tfor (User user:Global.Variables.registeredUsers) {\n\t\t\tUtils.FileUtils.write(\n\t\t\t\tuser.getDirectoryNames(), \n\t\t\t\tGlobal.Constants.DIRECTORY_LOCATION + user.getName()\n\t\t\t\t);\n\t\t\tsave(user);\n\t\t}\n\t}", "@Override\n\tpublic void createAccount(Account p) {\n\t\t\n\t\ttry {\n\t\t\tConnection con = conUtil.getConnection();\n\t\t\t//To use our functions/procedure we need to turn off autocommit\n\t\t\tcon.setAutoCommit(false);\n\t\t\t\n\t\t\tString deleteFromTable = \"DELETE FROM accounts WHERE owner_id='8'\";\n\t try (Connection conn = conUtil.getConnection();\n\t PreparedStatement pstmt = conn.prepareStatement(deleteFromTable)) {\n\n\t // set the corresponding param\n\t pstmt.setInt(1, p.getOwner_id());\n\t // execute the delete statement\n\t pstmt.executeUpdate();\n\n\t } catch (SQLException e) {\n\t System.out.println(e.getMessage());\n\t }\n\t\t\t\n\t\t\tString sql = \"insert into accounts( owner_id, balance ) values (?,?)\";\n\t\t\tCallableStatement cs = con.prepareCall(sql);\n\t\t\t\n\t\t\tcs.setInt(1, p.getOwner_id());\n\t\t\tcs.setDouble(2, p.getBalance());\n\t\t\t\n\t\t\tcs.execute();\n\t\t\t\n\t\t\tcon.setAutoCommit(true);\n\t\t\t\n\t\t} catch(SQLException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t}", "@Override\n public void save() {\n \n }", "public void saveData(){\n SerializableManager.saveSerializable(this,user,\"userInfo.data\");\n SerializableManager.saveSerializable(this,todayCollectedID,\"todayCollectedCoinID.data\");\n SerializableManager.saveSerializable(this,CollectedCoins,\"collectedCoin.data\");\n uploadUserData uploadUserData = new uploadUserData(this);\n uploadUserData.execute(this.Uid);\n System.out.println(Uid);\n\n }", "public void saveUserSettings() {\n\t}", "int updateAccountInfo(Account account);", "private void setAccount(SessionData sessionData, Account account) {\n \ttry {\n\t sessionData.set(\"account\", account);\n \t} catch (Exception e) {\n \t throw new RuntimeException(e.toString());\n \t}\n }", "@Override\n public void save()\n {\n \n }", "String addAccount(UserInfo userInfo);", "public boolean saveToBP_BankAccount(MBPBankAccount ba) {\n if (ba == null) {\n return false;\n }\n ba.setA_Name(getA_Name());\n ba.setA_Street(getA_Street());\n ba.setA_City(getA_City());\n ba.setA_State(getA_State());\n ba.setA_Zip(getA_Zip());\n ba.setA_Country(getA_Country());\n ba.setA_EMail(getA_EMail());\n ba.setA_Ident_DL(getA_Ident_DL());\n ba.setA_Ident_SSN(getA_Ident_SSN());\n //\tCC\n ba.setCreditCardType(getCreditCardType());\n ba.setCreditCardNumber(getCreditCardNumber());\n ba.setCreditCardExpMM(getCreditCardExpMM());\n ba.setCreditCardExpYY(getCreditCardExpYY());\n ba.setCreditCardVV(getCreditCardVV());\n //\tBank\n if (getAccountNo() != null) {\n ba.setAccountNo(getAccountNo());\n }\n if (getRoutingNo() != null) {\n ba.setRoutingNo(getRoutingNo());\n }\n //\tTrx\n ba.setR_AvsAddr(getR_AvsAddr());\n ba.setR_AvsZip(getR_AvsZip());\n //\n boolean ok = ba.save(get_TrxName());\n log.fine(\"saveToBP_BankAccount - \" + ba);\n return ok;\n }", "@RequestMapping(value = \"/addAccount\", method = RequestMethod.POST)\n public AccountCredentials addAccount(@RequestBody AccountCredentials acc) {\n accDB.save(acc);\n\n return acc;\n }", "@ResponseBody\n\t@PostMapping(value=\"/create\",produces=MediaType.APPLICATION_JSON_VALUE,consumes=MediaType.APPLICATION_JSON_VALUE)\n\t\t\t\n\tpublic ResponseEntity<String> saveaccount(@RequestBody Account acc){\n\t\taccountServiceJpa.save(acc);\n\t\treturn new ResponseEntity<String>(HttpStatus.OK);\n\t}", "public void saveOnClick(View view) {\n final EditText nameET = (EditText) findViewById(R.id.name_et);\n final EditText titleET = (EditText) findViewById(R.id.title_et);\n final EditText emailET = (EditText) findViewById(R.id.email_et);\n final EditText addressET = (EditText) findViewById(R.id.address_et);\n user.setName(nameET.getText().toString());\n user.setTitle(titleET.getText().toString());\n user.setEmailAddress(emailET.getText().toString());\n user.setHomeAddress(addressET.getText().toString());\n\n RegistrationData.editUserData(db, user);\n finish();\n }", "public boolean save(Accessory acc) {\n\t\tthis.accessoryDAO.save(acc);\n\t\treturn true;\n\t}", "public void save() {\t\n\t\n\t\n\t}", "void save(KingdomUser user);", "public void insertAccount(Account account){\n\t\tSession s=sf.openSession();\n\t\tTransaction tx=s.beginTransaction();\n\t\ts.save(account);\n\t\ttx.commit();\n\t\ts.close();\n\t\t}", "public void save() {\r\n\t\tString checkQuery = \"SELECT * FROM users WHERE id = \" + this.id;\r\n\t\tStatement stm;\r\n\t\tResultSet rs = null;\r\n\t\ttry {\r\n\t\t\tconnection = DBConnection.getConnection();\r\n\t\t\tstm = connection.createStatement();\r\n\t\t\trs = stm.executeQuery(checkQuery);\r\n\t\t\t// istnieje już ten obiekt - update\r\n\t\t\tif (rs.first()) {\r\n\t\t\t\tString query = \"UPDATE users SET name = \" + toStringOrNULL(name)\r\n\t\t\t\t\t\t+ \", password = \" + toStringOrNULL(password)\r\n\t\t\t\t\t\t+ \", is_admin = \" + isAdmin \r\n\t\t\t\t\t\t+ \", removed_at = \" + toStringOrNULL(removedAt) \r\n\t\t\t\t\t\t+ \" WHERE id = \" + getId();\r\n\t\t\t\texecuteNonReturningQuery(query);\r\n\t\t\t}\r\n\t\t\t// jeszcze go nie ma - zapis nowego\r\n\t\t\telse {\r\n\t\t\t\tString query = \"INSERT INTO users (name, password, removed_at, is_admin) VALUES (\"\r\n\t\t\t\t\t\t+ toStringOrNULL(name) + \", \"\r\n\t\t\t\t\t\t+ toStringOrNULL(password) + \", \"\r\n\t\t\t\t\t\t+ toStringOrNULL(removedAt) + \", \"\r\n\t\t\t\t\t\t+ isAdmin + \")\";\r\n\t\t\t\texecuteNonReturningQuery(query);\r\n\t\t\t}\r\n\t\t} catch (SQLException e) {\r\n\t\t\te.printStackTrace();\r\n\t\t} finally {\r\n\t\t\ttry {\r\n\t\t\t\tconnection.close();\r\n\t\t\t} catch (SQLException e) {\r\n\t\t\t\te.printStackTrace();\r\n\t\t\t}\r\n\t\t}\r\n\t}", "@PostMapping(\"/addAcc\")\n public userAccount setUserAccount(@RequestBody userAccount account) {\n// System.out.println(\"Email:\"+account.getEmail());\n// System.out.println(\"username:\"+account.getUsername());\n// System.out.println(\"pass:\"+account.getPassword());\n return this.accountRepo.save(account);\n// return null;\n }", "public boolean makeNewAccount(String name, BigDecimal balance, int type)\n throws SQLException, ConnectionFailedException, DatabaseInsertException {\n if (currentCustomerAuthenticated && currentUserAuthenticated) {\n int id = DatabaseInsertHelper.insertAccount(name, balance, type);\n EnumMapRolesAndAccounts map = new EnumMapRolesAndAccounts();\n map.createEnumMap();\n // find out what account type the account is and create and add that account to the customer\n if (type == map.accountTypes.get(AccountTypes.CHEQUING)) {\n ChequingAccount chequing = new ChequingAccountImpl(id, name, balance);\n currentCustomer.addAccount(chequing);\n DatabaseInsertHelper.insertUserAccount(currentCustomer.getId(), id);\n System.out.println(\"Account ID - \" + id);\n return true;\n } else if (type == map.accountTypes.get(AccountTypes.SAVINGS)) {\n SavingsAccount savings = new SavingsAccountImpl(id, name, balance);\n currentCustomer.addAccount(savings);\n DatabaseInsertHelper.insertUserAccount(currentCustomer.getId(), id);\n System.out.println(\"Account ID - \" + id);\n return true;\n } else if (type == map.accountTypes.get(AccountTypes.TFSA)) {\n TFSA tfsa = new TFSAImpl(id, name, balance);\n currentCustomer.addAccount(tfsa);\n DatabaseInsertHelper.insertUserAccount(currentCustomer.getId(), id);\n System.out.println(\"Account ID - \" + id);\n return true;\n } else if (type == map.accountTypes.get(AccountTypes.RESTRICTEDSAVING)) {\n RestrictedSavingsAccount rsavings = new RestrictedSavingsAccountImpl(id, name, balance);\n currentCustomer.addAccount(rsavings);\n DatabaseInsertHelper.insertUserAccount(currentCustomer.getId(), id);\n System.out.println(\"Account ID - \" + id);\n return true;\n }\n return false;\n }\n System.out.println(\"reached here\");\n throw new ConnectionFailedException();\n }", "void addAccount(Accounts account) {\n SQLiteDatabase db = this.getWritableDatabase();\n\n ContentValues values = new ContentValues();\n values.put(KEY_NAME, account.getName());\n values.put(KEY_PASSWORD, account.getPassword());\n values.put(KEY_PH_NO, account.getPhoneNumber());\n values.put(KEY_EMAIL, account.getEmail());\n\n // Inserting Row\n db.insert(TABLE_ACCOUNTS, null, values);\n //2nd argument is String containing nullColumnHack\n db.close(); // Closing database connection\n }", "private void guardarCredenciales(String codigo,String contra){\n SharedPreferences sharedPreferences = getPreferences(getApplicationContext().MODE_PRIVATE);\n SharedPreferences.Editor editor = sharedPreferences.edit();\n editor.putString(\"USUARIO\",codigo);\n editor.putString(\"PASSWORD\",contra);\n editor.commit();\n }", "@Override\n public void actionPerformed(ActionEvent e) {\n try {\n Account account = new Account(APPKEY, APPSECRET);\n accounts.add(account);\n int mc = JOptionPane.WARNING_MESSAGE;\n if (!accountDispName.getText().contains(account.screenName)) {\n accountDispName.setText(accountDispName.getText() + account.screenName + \"\\n\");\n accountDispName.setOpaque(true);\n statusDisplay.setText(statusDisplay.getText() + \"active\\n\");\n if (!accountDisplayNameHeader.isVisible())\n accountDisplayNameHeader.setVisible(true);\n if (!accountStatusHeader.isVisible())\n accountStatusHeader.setVisible(true);\n if (!accountDispName.isVisible())\n accountDispName.setVisible(true);\n if (!statusDisplay.isVisible())\n statusDisplay.setVisible(true);\n //f1.validate();\n account.persistAccount();\n JOptionPane.showMessageDialog(null, \"Account Added Successfully!!\", \"Success!!\", mc);\n nAccounts++;\n } else {\n JOptionPane.showMessageDialog(null, \"Account Already Exists\", \"Duplicate!!\", mc);\n }\n } catch (Exception e1) {\n int mc = JOptionPane.WARNING_MESSAGE;\n JOptionPane.showMessageDialog(null, \"Unable To Add Account!\", \"Error\", mc);\n e1.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.\n }\n }", "@Override\n\tpublic void save(User entity) {\n\t\t\n\t}", "void updateAccount(Account account);", "private void createAccountActivity() {\n // everything is converted to string\n String userName = createUserName.getText().toString().trim();\n String phoneNumber = createPhoneNumber.getText().toString().trim();\n String email = createEmail.getText().toString().trim();\n String password = createPassword.getText().toString().trim();\n\n\n // Validate that the entry should not be empty\n if (userName.isEmpty()) {\n createUserName.setError(\"It should not be empty. \");\n createUserName.requestFocus();\n return;\n }\n if (phoneNumber.isEmpty()) {\n createPhoneNumber.setError(\"It should not be empty. \");\n createPhoneNumber.requestFocus();\n return;\n }\n if (email.isEmpty()) {\n createEmail.setError(\"It should not be empty. \");\n createEmail.requestFocus();\n return;\n } else if (!Patterns.EMAIL_ADDRESS.matcher(email).matches()) {\n createEmail.setError(\"Invalid email\");\n createEmail.requestFocus();\n return;\n }\n\n if (password.isEmpty()) {\n createPassword.setError(\"It should not be empty. \");\n createPassword.requestFocus();\n return;\n }\n\n // connect to the firebase\n auth.createUserWithEmailAndPassword(email, password).addOnCompleteListener(task -> {\n if (task.isSuccessful()) {\n String userID = FirebaseAuth.getInstance().getCurrentUser().getUid();\n User user = new User(userName, phoneNumber, email, password, userID);\n // We will send everything in user to the firebase database\n FirebaseDatabase.getInstance()\n .getReference(\"User\")\n .child(FirebaseAuth.getInstance().getCurrentUser().getUid())\n .setValue(user).addOnCompleteListener(task1 -> {\n if (task1.isSuccessful()) {\n Toast.makeText(RegisterUser.this, \"The account has been created successfully. \", Toast.LENGTH_LONG).show();\n finish(); //basically same as clicking back button\n } else {\n Toast.makeText(RegisterUser.this, \"The account creation failed!\", Toast.LENGTH_LONG).show();\n }\n });\n } else {\n Toast.makeText(RegisterUser.this, \"The account creation failed!\", Toast.LENGTH_LONG).show();\n }\n });\n }", "public void writeOrUpdateAccount(Account account, String master_key) throws AEADBadTagException {\n encryptedSharedPreferences = getEncryptedSharedPreferences(master_key);\n\n Gson gson = new Gson();\n SharedPreferences.Editor sharedPrefsEditor = encryptedSharedPreferences.edit();\n sharedPrefsEditor.putString(account.getPlatform(), gson.toJson(account));\n sharedPrefsEditor.apply();\n\n Log.d(TAG, \"Update Account(Platform): \" + account.getPlatform());\n }", "@Override\n\tpublic boolean addAccount(Account account) {\n\t\taccount.setStatus(-1);\n\t\t//String passwd = new UU\n\t\treturn accountDAO.addAccount(account);\n\t}", "public abstract void createAccount(JSONObject account);", "@Override\n\tpublic int upAccount(AccountUser au) {\n\t\tau.setName(au.getUsername());\n\t\tau.setStatus(1);\n\t\tau.setSalt(CommTool.getSalt());\n\t\tau.setPwd(\"666666\");\n\t\tau.setPwd(PasswordUtil.generate(au.getPwd(), au.getSalt()));\n\t\treturn auMapper.upAccount(au);\n\t}", "int insert(TmpUserPayAccount record);", "@Override\r\n\tpublic void save() {\n\r\n\t\ts.save();\r\n\r\n\t}", "private void saveData() {\n // Actualiza la información\n client.setName(nameTextField.getText());\n client.setLastName(lastNameTextField.getText());\n client.setDni(dniTextField.getText());\n client.setAddress(addressTextField.getText());\n client.setTelephone(telephoneTextField.getText());\n\n // Guarda la información\n DBManager.getInstance().saveData(client);\n }", "private void saveUserInformation() {\n name.setText(nameInput.getText().toString());\n\n if (name.getText().toString().isEmpty()) {\n name.setError(\"Name required\");\n name.requestFocus();\n return;\n }\n\n FirebaseUser user = mAuth.getCurrentUser();\n if (user != null) {\n if (isBname()) {\n updateName(user);\n }\n if (isBtitle()) {\n updateTitle(user);\n }\n }\n }", "@Override\n public void save(Usuario usuario) {\n }", "int insert(Account record);", "int insert(Account record);", "private void save() {\n Toast.makeText(ContactActivity.this, getString(R.string.save_contact_toast), Toast.LENGTH_SHORT).show();\n\n String nameString = name.getText().toString();\n String titleString = title.getText().toString();\n String emailString = email.getText().toString();\n String phoneString = phone.getText().toString();\n String twitterString = twitter.getText().toString();\n \n if (c != null) {\n datasource.editContact(c, nameString, titleString, emailString, phoneString, twitterString);\n }\n else {\n \tc = datasource.createContact(nameString, titleString, emailString, phoneString, twitterString);\n }\n }", "public void save(ControlAcceso entity) {\n\n\t\tcontrolA.insertControlAcc(entity.getTmno(), entity.getId().getEnno(), entity.getName(), entity.getInout(),\n\t\t\t\tentity.getMode(), entity.getId().getDatetime());\n\n\t}", "@Override\r\n\tpublic AccountType getAccountType() {\n\t\treturn AccountType.SAVING;\r\n\t}", "private void metodoSalvarUsuarioFirebase(final Usuarios variavelClasseUsuarios) {\n\n refAutenticacaofb = ConfiguracaoFirebase.metodoAutenticacaoFirebase();\n refAutenticacaofb.createUserWithEmailAndPassword(variavelClasseUsuarios.getEmail(),\n variavelClasseUsuarios.getSenha()).addOnCompleteListener(new OnCompleteListener<AuthResult>() {\n @Override\n public void onComplete(@NonNull Task<AuthResult> task) {\n\n if(task.isSuccessful()){\n\n idUsuario = task.getResult().getUser().getUid();\n variavelClasseUsuarios.setId(idUsuario);\n variavelClasseUsuarios.salvarUsuario();\n\n if(pegarTipoUsuarioSwitch() == \"Cliente\"){\n\n startActivity(new Intent(CadastroUsuario.this, Home.class));\n finish();\n Toast.makeText(CadastroUsuario.this, \"Usuário salvo com sucesso\", Toast.LENGTH_LONG).show();\n }else{\n\n startActivity(new Intent(CadastroUsuario.this, PainelEmpresa.class));\n finish();\n Toast.makeText(CadastroUsuario.this, \"Empresa inserida com sucesso!\", Toast.LENGTH_LONG).show();\n }\n\n\n }\n\n\n\n }\n });\n\n }", "protected void Save() {\n\t\tString WareName = txtWareName.getText().trim();\n\t\tint WareCap = Integer.parseInt(txtWareCap.getText().trim());\n\t\tString WareAddress = txtWareAddress.getText().trim();\n\t\tint WareUser = Integer.parseInt(txtWareUser.getText().trim());\n\t\tWareUserDto wud = new WareUserDto();\n\t\t\n\t\twud.setWareID(this.wud.getWareID());\n\t\twud.setWareName(WareName);\n\t\twud.setWareCap(WareCap);\n\t\twud.setWareAddress(WareAddress);\n\t\twud.setWareUser(WareUser);\n\t\t\n\t\tif(service.updateWareUserService(wud)){\n\t\t\tList<WareUserDto> list = service.getWareHouseAllInfo();\n\t\t\t//bwj.setTabDate(list);\n\t\t\tbtnWareJDialog.setTabDate(list);\n\t\t\tthis.dispose();\n\t\t}else{\n\t\t\tJOptionPane.showMessageDialog(this, \"修改失败\", \"错误\", JOptionPane.ERROR_MESSAGE);\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t\n\t}" ]
[ "0.79628265", "0.7857316", "0.7774364", "0.7471592", "0.7343005", "0.729054", "0.7290331", "0.7227747", "0.7173368", "0.70856196", "0.6995825", "0.69152033", "0.6851583", "0.67314434", "0.6693201", "0.6632317", "0.6625775", "0.65890163", "0.65699273", "0.650626", "0.64990836", "0.6475807", "0.64640814", "0.6461534", "0.64574534", "0.64364785", "0.64252305", "0.6418165", "0.63925964", "0.6332812", "0.6330497", "0.63118887", "0.6310028", "0.6306039", "0.6301531", "0.63014495", "0.62463135", "0.6202293", "0.6183757", "0.6182893", "0.61730564", "0.6170586", "0.61674225", "0.61654747", "0.615546", "0.6145925", "0.61313766", "0.61306506", "0.6123092", "0.61210245", "0.61162996", "0.611553", "0.6104861", "0.60920537", "0.60897857", "0.60838056", "0.6082697", "0.6079428", "0.6054688", "0.6052579", "0.60295343", "0.60246164", "0.6018734", "0.60115874", "0.6006959", "0.5997915", "0.5990491", "0.598875", "0.5981402", "0.59665453", "0.59658855", "0.596362", "0.5963513", "0.59627503", "0.5959233", "0.59568137", "0.5956079", "0.59513897", "0.5950741", "0.595072", "0.59447986", "0.59431833", "0.59409887", "0.59374446", "0.5928065", "0.5922805", "0.5921704", "0.59160805", "0.59134936", "0.5913417", "0.591069", "0.5909693", "0.5907897", "0.59014094", "0.5897962", "0.5897962", "0.58954537", "0.5895177", "0.5883954", "0.5878928", "0.58738214" ]
0.0
-1
TODO Autogenerated method stub
@Override public String execute(String request) { return response = "The command is invalid"; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExras() {\n\n\t}", "@Override\r\n\tpublic void anularFact() {\n\t\t\r\n\t}", "@Override\n\tpublic void entrenar() {\n\t\t\n\t}", "@Override\n\tpublic void nadar() {\n\t\t\n\t}", "@Override\r\n\tpublic void tires() {\n\t\t\r\n\t}", "@Override\r\n\t\t\tpublic void ayuda() {\n\r\n\t\t\t}", "@Override\n\tprotected void interr() {\n\t}", "@Override\n\tpublic void emprestimo() {\n\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "@Override\n\tpublic void gravarBd() {\n\t\t\n\t}", "@Override\r\n\tpublic void rozmnozovat() {\n\t}", "@Override\r\n\tpublic void dormir() {\n\t\t\r\n\t}", "@Override\n protected void getExras() {\n }", "@Override\r\n\tpublic void publierEnchere() {\n\t\t\r\n\t}", "@Override\n\tpublic void nefesAl() {\n\n\t}", "@Override\n\tpublic void ligar() {\n\t\t\n\t}", "@Override\n public void func_104112_b() {\n \n }", "@Override\n\tprotected void initdata() {\n\n\t}", "@Override\n\tpublic void nghe() {\n\n\t}", "@Override\n public void function()\n {\n }", "@Override\n public void function()\n {\n }", "public final void mo51373a() {\n }", "@Override\r\n\tpublic void stehReagieren() {\r\n\t\t//\r\n\t}", "@Override\n public void inizializza() {\n\n super.inizializza();\n }", "@Override\n\tprotected void initData() {\n\t\t\n\t}", "@Override\r\n\t\tpublic void init() {\n\t\t\t\r\n\t\t}", "@Override\n\tpublic void sacrifier() {\n\t\t\n\t}", "@Override\r\n\tprotected void InitData() {\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initialize() {\r\n\t\t\r\n\t\t\r\n\t}", "public void gored() {\n\t\t\n\t}", "@Override\r\n\tprotected void initData() {\n\r\n\t}", "@Override\n\tpublic void einkaufen() {\n\t}", "@Override\n protected void initialize() {\n\n \n }", "public void mo38117a() {\n }", "@Override\n\tprotected void getData() {\n\t\t\n\t}", "Constructor() {\r\n\t\t \r\n\t }", "@Override\r\n\tpublic void dibujar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void dibujar() {\n\t\t\r\n\t}", "@Override\n\tpublic void one() {\n\t\t\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "private stendhal() {\n\t}", "@Override\n\tprotected void update() {\n\t\t\n\t}", "@Override\n\t\t\tpublic void ic() {\n\t\t\t\t\n\t\t\t}", "@Override\n\tprotected void initData() {\n\n\t}", "@Override\n\tprotected void initData() {\n\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n public void init() {\n\n }", "@Override\n\tprotected void initialize() {\n\t\t\n\t}", "@Override\n\tprotected void initialize() {\n\t\t\n\t}", "@Override\r\n\tpublic void init() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void init() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void init() {\n\t\t\r\n\t}", "@Override\n\tpublic void debite() {\n\t\t\n\t}", "@Override\r\n\tpublic void init() {\n\r\n\t}", "@Override\r\n\tpublic void init() {\n\r\n\t}", "@Override\r\n\tpublic void init() {\n\r\n\t}", "public contrustor(){\r\n\t}", "@Override\n\tprotected void initialize() {\n\n\t}", "@Override\r\n\tpublic void dispase() {\n\r\n\t}", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "@Override\n\tpublic void dtd() {\n\t\t\n\t}", "@Override\n\tprotected void logic() {\n\n\t}", "@Override\n\tprotected void lazyLoad() {\n\t\t\n\t}", "public void mo4359a() {\n }", "@Override\r\n\tprotected void initialize() {\n\r\n\t}", "@Override\n public void memoria() {\n \n }", "@Override\n\t\tpublic void method() {\n\t\t\t\n\t\t}", "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\n protected void initialize() \n {\n \n }", "@Override\r\n\tpublic void getProposition() {\n\r\n\t}", "@Override\n\tpublic void particular1() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\n\t}", "@Override\n\tpublic void init() {\n\n\t}", "@Override\n\tpublic void init() {\n\n\t}", "@Override\n protected void prot() {\n }", "@Override\r\n\tpublic void init()\r\n\t{\n\t}", "@Override\n\tprotected void initValue()\n\t{\n\n\t}", "public void mo55254a() {\n }" ]
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.6080161", "0.6077022", "0.6041561", "0.6024072", "0.6020252", "0.59984857", "0.59672105", "0.59672105", "0.5965777", "0.59485507", "0.5940904", "0.59239364", "0.5910017", "0.5902906", "0.58946234", "0.5886006", "0.58839184", "0.58691067", "0.5857751", "0.58503544", "0.5847024", "0.58239377", "0.5810564", "0.5810089", "0.5806823", "0.5806823", "0.5800025", "0.5792378", "0.5792378", "0.5792378", "0.5792378", "0.5792378", "0.5792378", "0.5790187", "0.5789414", "0.5787092", "0.57844025", "0.57844025", "0.5774479", "0.5774479", "0.5774479", "0.5774479", "0.5774479", "0.5761362", "0.57596046", "0.57596046", "0.575025", "0.575025", "0.575025", "0.5747959", "0.57337177", "0.57337177", "0.57337177", "0.5721452", "0.5715831", "0.57142824", "0.57140535", "0.57140535", "0.57140535", "0.57140535", "0.57140535", "0.57140535", "0.57140535", "0.5711723", "0.57041645", "0.56991017", "0.5696783", "0.56881124", "0.56774884", "0.56734604", "0.56728", "0.56696945", "0.5661323", "0.5657007", "0.5655942", "0.5655942", "0.5655942", "0.56549734", "0.5654792", "0.5652974", "0.5650185" ]
0.0
-1
TODO Autogenerated method stub
public static void main(String[] args) { Substraction ob1 = new Substraction(); Substraction ob2 = new Substraction(); ob1.x = 100; ob1.y = 200; ob2.x = 10; ob2.y = 20; ob1.sub1(); ob2.sub1(); ob1.x1 = 10; // this should be Substraction.x1 = 10; ob1.y1 = 20; ob2.x1 = 20; ob2.y1 = 20; ob1.sub2(); ob2.sub2(); ob1.obC1.method1(); ob1.obc2.method2(); ob1.obc2.method1(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExras() {\n\n\t}", "@Override\r\n\tpublic void anularFact() {\n\t\t\r\n\t}", "@Override\n\tpublic void entrenar() {\n\t\t\n\t}", "@Override\n\tpublic void nadar() {\n\t\t\n\t}", "@Override\r\n\tpublic void tires() {\n\t\t\r\n\t}", "@Override\r\n\t\t\tpublic void ayuda() {\n\r\n\t\t\t}", "@Override\n\tprotected void interr() {\n\t}", "@Override\n\tpublic void emprestimo() {\n\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "@Override\n\tpublic void gravarBd() {\n\t\t\n\t}", "@Override\r\n\tpublic void rozmnozovat() {\n\t}", "@Override\r\n\tpublic void dormir() {\n\t\t\r\n\t}", "@Override\n protected void getExras() {\n }", "@Override\r\n\tpublic void publierEnchere() {\n\t\t\r\n\t}", "@Override\n\tpublic void nefesAl() {\n\n\t}", "@Override\n\tpublic void ligar() {\n\t\t\n\t}", "@Override\n public void func_104112_b() {\n \n }", "@Override\n\tprotected void initdata() {\n\n\t}", "@Override\n\tpublic void nghe() {\n\n\t}", "@Override\n public void function()\n {\n }", "@Override\n public void function()\n {\n }", "public final void mo51373a() {\n }", "@Override\r\n\tpublic void stehReagieren() {\r\n\t\t//\r\n\t}", "@Override\n public void inizializza() {\n\n super.inizializza();\n }", "@Override\n\tprotected void initData() {\n\t\t\n\t}", "@Override\r\n\t\tpublic void init() {\n\t\t\t\r\n\t\t}", "@Override\n\tpublic void sacrifier() {\n\t\t\n\t}", "@Override\r\n\tprotected void InitData() {\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initialize() {\r\n\t\t\r\n\t\t\r\n\t}", "public void gored() {\n\t\t\n\t}", "@Override\r\n\tprotected void initData() {\n\r\n\t}", "@Override\n\tpublic void einkaufen() {\n\t}", "@Override\n protected void initialize() {\n\n \n }", "public void mo38117a() {\n }", "@Override\n\tprotected void getData() {\n\t\t\n\t}", "Constructor() {\r\n\t\t \r\n\t }", "@Override\r\n\tpublic void dibujar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void dibujar() {\n\t\t\r\n\t}", "@Override\n\tpublic void one() {\n\t\t\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initData() {\n\t\t\r\n\t}", "@Override\n\tprotected void update() {\n\t\t\n\t}", "private stendhal() {\n\t}", "@Override\n\t\t\tpublic void ic() {\n\t\t\t\t\n\t\t\t}", "@Override\n\tprotected void initData() {\n\n\t}", "@Override\n\tprotected void initData() {\n\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n public void init() {\n\n }", "@Override\n\tprotected void initialize() {\n\t\t\n\t}", "@Override\n\tprotected void initialize() {\n\t\t\n\t}", "@Override\r\n\tpublic void init() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void init() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void init() {\n\t\t\r\n\t}", "@Override\n\tpublic void debite() {\n\t\t\n\t}", "@Override\r\n\tpublic void init() {\n\r\n\t}", "@Override\r\n\tpublic void init() {\n\r\n\t}", "@Override\r\n\tpublic void init() {\n\r\n\t}", "public contrustor(){\r\n\t}", "@Override\r\n\tpublic void dispase() {\n\r\n\t}", "@Override\n\tprotected void initialize() {\n\n\t}", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "@Override\n\tpublic void dtd() {\n\t\t\n\t}", "@Override\n\tprotected void logic() {\n\n\t}", "@Override\n\tprotected void lazyLoad() {\n\t\t\n\t}", "public void mo4359a() {\n }", "@Override\r\n\tprotected void initialize() {\n\r\n\t}", "@Override\n public void memoria() {\n \n }", "@Override\n\t\tpublic void method() {\n\t\t\t\n\t\t}", "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\n protected void initialize() \n {\n \n }", "@Override\r\n\tpublic void getProposition() {\n\r\n\t}", "@Override\n\tpublic void particular1() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\n\t}", "@Override\n\tpublic void init() {\n\n\t}", "@Override\n\tpublic void init() {\n\n\t}", "@Override\n protected void prot() {\n }", "@Override\r\n\tpublic void init()\r\n\t{\n\t}", "@Override\n\tprotected void initValue()\n\t{\n\n\t}", "public void mo55254a() {\n }" ]
[ "0.66708666", "0.65675074", "0.65229905", "0.6481001", "0.64770633", "0.64584893", "0.6413091", "0.63764185", "0.6275735", "0.62541914", "0.6236919", "0.6223816", "0.62017626", "0.61944294", "0.61944294", "0.61920846", "0.61867654", "0.6173323", "0.61328775", "0.61276996", "0.6080555", "0.6076938", "0.6041293", "0.6024541", "0.6019185", "0.5998426", "0.5967487", "0.5967487", "0.5964935", "0.59489644", "0.59404725", "0.5922823", "0.5908894", "0.5903041", "0.5893847", "0.5885641", "0.5883141", "0.586924", "0.5856793", "0.58503157", "0.58464456", "0.5823378", "0.5809384", "0.58089525", "0.58065355", "0.58065355", "0.5800514", "0.57912874", "0.57912874", "0.57912874", "0.57912874", "0.57912874", "0.57912874", "0.57896614", "0.5789486", "0.5786597", "0.5783299", "0.5783299", "0.5773351", "0.5773351", "0.5773351", "0.5773351", "0.5773351", "0.5760369", "0.5758614", "0.5758614", "0.574912", "0.574912", "0.574912", "0.57482654", "0.5732775", "0.5732775", "0.5732775", "0.57207066", "0.57149917", "0.5714821", "0.57132614", "0.57132614", "0.57132614", "0.57132614", "0.57132614", "0.57132614", "0.57132614", "0.57115865", "0.57045746", "0.5699", "0.5696016", "0.5687285", "0.5677473", "0.5673346", "0.56716853", "0.56688815", "0.5661065", "0.5657898", "0.5654782", "0.5654782", "0.5654782", "0.5654563", "0.56536144", "0.5652585", "0.5649566" ]
0.0
-1
System.out.println("Value of x = " +x); not possible//
static void print() { System.out.println("Value of x1 = " +x1); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void show(int x){\n System.out.println(\"In int \"+x);\n }", "public void printX()\r\n {\r\n System.out.println(_x);\r\n }", "public void main() {\n System.out.println(x); // x is automatic variable (effective final variables)\n }", "private static void showvalue(int n) {\n\t\tSystem.out.println(\"n is\"+ n);\r\n\t}", "public void printInfo(){\n System.out.println(\" this is my y \"+(y+1)+\" this is my x \"+ X.valueOfInt(x));\n System.out.println(\"i am full: \"+ isFull);\n }", "public String toString(){return \"(X\" + variable + \" (\"+ zero + \")\" + \" (\" + one +\"))\";}", "public static void print(int x)\n {\n\n }", "public int value(){ // no input , some output\n\t\t\tSystem.out.println(\"value method\");\n\n\t\t\tint a = 10;\n\t\t\tint b = 20;\n\t\t\tint c = a+b;\n\t\t\treturn c ;\n\t\t}", "Myclass(){\n\t\tx+=1; //x=4 burada 4 olarak update edildi. Asagida 4 olarak kullanacagiz\n\t\tSystem.out.print(\"-x\" + x); //-x4\n\t}", "public static void main(String[] args) {\nint i=10;\nint j=20;\n\nString x=\"lionel\";\nString y=\"messi\";\n\nSystem.out.println(i+j);\nSystem.out.println(x+y);\nSystem.out.println(x+y+i);\nSystem.out.println(x+i+j);\nSystem.out.println(\"helloworld\");\nSystem.out.println(\"the value of i is:\"+i);\n\t}", "static void prettyPrint(int x) {\n System.out.println(\"--==\" + x + \"==--\");\n }", "public static void metodDizi(int x){\n //metodDizi isimli bir metot oluşturuldu.\n System.out.println(x);\n }", "@Override\n public String toString()\n {\n return \"xValue: \" + xValue;\n }", "static void PrintVarValues(String s){\n System.out.println(s);\n }", "@Override\n public double value(double x) {\n myParser.addVariable(variable, x);\n double eval = myParser.getValue();\n return eval;\n }", "public void puzzle5(){\n\t\tObject x = \"object string\";\n\t\tString i = \"real string\";\n\t\tx += i;\n\t\tx = x + i;\n\t\tSystem.out.println(\"Value of x \"+x);\n\t}", "public void print(String value){\r\n System.out.println(value);\r\n }", "public static void main(String[] args) {\nint a=3;\nint b=4;\nSystem.out.println(a+b);\n\t}", "public static void main(String[] args) {\n\t\tint a=10;\n\t\tint b=20; \n\t\tString y=\"Hello\";\n\t\tString x=\"Bye\"; \n\t\tSystem.out.println(a+b+x+y); \n\t\tSystem.out.println(x+y+a+b);\n\t\tSystem.out.println(x+y+(a+b));\n\t\tSystem.out.println(a+\"\"+b+x+y);\n\t\t\t\t\n\n\n\t}", "public int getx() {\n return x;\n }", "@Override\r\n public void infixDisplay() {\r\n System.out.print(value);\r\n }", "public void Test1(){//we can change the logic\n\t\tint x = 20;\n\t\tint y = 50;\n\t\tSystem.out.println(\"Addition of 2 values are :\" + (x+y));\n\t}", "public static void main(String[] args) {\n\t\t\tint N=12;\r\n\t\t\tdouble A=4.56;\r\n\t\t\tchar C='x';\r\n\t\t\tdouble resultado;\r\n\t\t\tresultado=N+A;\r\n\t\t\t\r\n\tSystem.out.println(\"La Variable N = \"+N);\r\n\tSystem.out.println(\"La Variable A = \"+A);\r\n\tSystem.out.println(\"La Variable C =\"+C);\r\n\tSystem.out.println(N+\" + \"+ A+\"=\"+resultado);\r\n\tSystem.out.println(C);\r\n\r\n\t}", "public int Getx(){\n\t\treturn x;\n\t}", "public int x(){\n return x;\n }", "public static void main(String[] args) {\n System.out.println(\"String: \" + Integer.toString(5));\n\n\n\n }", "static void exo2(int v1) {\n\t\tint somme = v1 + 5;\n\t\tSystem.out.println(\"la somme\" + (v1 + 5));\n\n\t}", "public String toString() {\n\t\treturn (\"The value of \\\"x\\\" is: \" + x + \"\\n\"\n\t\t\t + \"The value of \\\"y\\\" is: \" + y);\n\t}", "public static void main(String[] args) {\nSystem.out.println(\"Abxdefghijklmnopqrstuvwxyz\");\nint a =12;\nSystem.out.println(a);\n\t}", "public void printResult(){\n StringBuilder sb = new StringBuilder(20);\n sb.append(left_value)\n .append(space)\n .append(symbol)\n .append(space)\n .append(right_value)\n .append(space)\n .append('=')\n .append(space)\n .append(result);\n System.out.println(sb);\n }", "public int x() {\n\t\treturn x;\n\t}", "public static void main(String[] args) {\r\n \t\t\r\n\t\tint x = 10;\r\n\t\tint y =20;\r\n\t\tSystem.out.println(x+y);\r\n\t\t \r\n\r\n\t}", "private void print(Node x) {\n\t\tif (x == null) return;\n\t\tprint(x.getLeft());\n\t\tSystem.out.println(x);\n\t\tprint(x.getRight());\n\t}", "public void method1() {\r\n\t\tint X=10;\r\n\t\tSystem.out.println(\"ADD==\" + (X+X));\r\n\t\t}", "public static void test(){\n\t\tSystem.out.println(a);\n\t}", "public static void main(String[] args) {\n\t\tint x = 0;\r\n\t\tSystem.out.printf(\"x=%d 일때, 참인것은%n\",x);\r\n\t\t\r\n\t\tif(x==0) {System.out.println(\"x==0\");}\r\n\t\tif(x != 0) {System.out.println(\"x !=0\");}\r\n\t\tif(!(x==0)) {System.out.println(\"!(x==0)\");}\r\n\t\tif(!(x!=0)) {System.out.println(\"!(x!=0)\");}\r\n\t\t\r\n\t\tx =1;\r\n\t\tSystem.out.printf(\"x=%d 일때, 참인것은 %n\",x);\r\n\t\t\r\n\t\tif(x==0) System.out.println(\"x==0\");\r\n\t\tif(x !=0) System.out.println(\"x!=0\");\r\n\t\tif(!(x==0)) System.out.println(\"!(x==0)\");\r\n\t\tif(!(x!=0)) System.out.println(\"!(x!=0)\");\r\n\t}", "public static void main (String[] args) \n\t{\n\t\tint x = 5;\n\t\tint y = 10;\n \n\t\tSystem.out.println(\"value x + y * 2 - \" + ( x + y * 2));\n\t\tSystem.out.println(\"value x - y * 2 - \" + ( x - y * 2));\n\t\tSystem.out.println(\"value (x + y) * 2 - \" + ( (x + y) * 2));\n\t\tSystem.out.println(\"value y % 2 - \" + ( y % 2));\n\t}", "public int x() {\n return x;\n }", "private void myPrint(String x) {\n if (printOn) {\n System.out.println(x);\n }\n }", "public static void main(String[] args) {\n var number = 12345;\n var text = \"The number is...\";\n //\n System.out.println(text + number + \"!!!\");\n }", "public static void main(String[] args) {\n\t\tint x = 10;\r\n\t\tSystem.out.println(\"hola pedro \" + x);\r\n\t}", "public static void main(String[] args) {\n\n int x = 10;\n int y = x++;\n System.out.println(y++ + \" \"+ x++ + \" \"+y);\n\n }", "void display() {\n\t\t\t\t\tSystem.out.println(\"display: outer_x = \" + outer_x);\n\t\t\t\t}", "public static void main(String[] args) {\n \r\n \t\tint x = 55;\r\n\t\t++x; //1st increase x and then increments. That is pre-increment\r\n\t\tSystem.out.println(x);\r\n\t\t\t\r\n\t\tx++; //1st use x and then increments. That is post-increment\r\n\t\tSystem.out.println(x); \r\n\r\n\t\t\r\n\t\t\r\n//\t\tQUESTION 2\r\n\t\t\r\n\t\tString aa = \"Hello World.\"; //2 Add three strings using Arithmetic Operator\r\n\t\tString ab = \" Cheer me Up.\";\r\n\t\tString ac = \"-Smile Please!\";\r\n\t\t\r\n\t\tSystem.out.println(aa + ab + ac);\r\n\t\t\r\n\t\t\r\n\t\t\r\n//\t\tQUESTION 3\r\n\t\t\r\n\t\tint b = 5;\r\n\t\tSystem.out.println(\"First Number+++++++++\" +b);\r\n\t\tSystem.out.println(\"Second Number+++++++++\" +b);\r\n\t\t\r\n\t\t\r\n//\t\tQUESTION 4\r\n\t\t\r\n\t\tint a1 = 10; int a2 = 20; //3\tWrite code for all asthmatic operator ( + , - , * , / , %)\r\n\t\tint b1 = a1 + a2;\r\n\t\tint c = a1 - a2;\r\n\t\tint d = a1 * a2;\r\n\t\tint e = a2/a1;\r\n\t\tint f = a2%a1;\r\n\t\tSystem.out.println(b1);\r\n\t\tSystem.out.println(c);\r\n\t\tSystem.out.println(d);\r\n\t\tSystem.out.println(e);\r\n\t\tSystem.out.println(f);\r\n\t\t\r\n\t\t\t\t\r\n\t}", "void print(){\n\t\tSystem.out.println(\"[\"+x+\",\"+y+\"]\");\n\t}", "public int x()\n {\n return x;\n }", "public int x()\r\n {\r\n return x;\r\n }", "public int x() {\n\t\treturn _x;\n\t}", "public int x() {\n\t\treturn this.x;\n\t}", "public static void main(String[] args) {\n\t\tint intNum1 = 100;\n\t\taddVar();\n\t\taddVar(intNum1);\n\t\tSystem.out.println(intNum1);\n\t\t\n\t\t// 변수 * 값 : 변수를 변화시키지 않는다.\n\t\tSystem.out.println(\"12:\" + (intNum1 * 20));\n\t\tSystem.out.println(\"13:\" + intNum1);\n\t\t// 변수 *= 값 : 변수를 변화시킨다\n\t\tSystem.out.println(\"17:\" + (intNum1 *= 20));\n\t\tSystem.out.println(\"18:\" + intNum1);\n\t\t\n\t}", "public void Display(){\n System.out.println(a);\n }", "void display() {\n\t\t\tSystem.out.println(\"display: outer_x = \" + outer_x);\n\t\t}", "public static void printXY(int x, int y) {\n\t\tSystem.out.println(\"x = \" + x + \", y = \" + y);\n\t}", "public String getx()\n\t{\n\t\treturn x.getText();\n\t}", "public static void main(String[] args) {\n int x = 2;\n int y = x ;\n\n\n }", "public static void main(String[] args)\n {\n int a=55;\n\n System.out.println(a);\n System.out.println(mynumber);\n\n }", "public void method(){\n\t\t\n\t\tint a=3;//only for this method//local variable\n\t\tSystem.out.println(a);\n\t\tSystem.out.println(this.a);\n\t\tSystem.out.print(a+this.a);\n\t}", "public void printer(double x);", "public static void main(String[] args) {\n int x = 5;\n System.out.println(x++);\n System.out.println(x);\n }", "public String toString() {\r\n return this.variable;\r\n }", "public static void main(String args[]) {\nint a;\nint b;\na=100;\nSystem.out.println(\"variable a =\"+a);\nSystem.out.println(a);\nb=a/2;\nSystem.out.println(\"variable b=a/2=\" + b);\nSystem.out.println(\"Java drives the Web.\");\n}", "public static void main(String[] args) {\n int x = 123;\n int y = 12;\n System.out.println(x+y);\n }", "public static void main(String[] args) {\n\tint result =10;\n\tresult += 1;//result = result +1;\n\tSystem.out.println(result);\n\t}", "public static int getX(){\n return \"3.1415\";\n }", "public static void main (String[]args) {\n\t\tdouble money = 10.35;\r\n\t//Define a variable type with value of 5*/\t\r\n\t\tbyte number = 5;\r\n\t//Define a variable type with a value of 3*/\t\r\n\t\tint age = 3; \r\n\t\t//Declare 3 String variables\r\n\t\r\n\tString greeting;\r\n\tString goodbye;\r\n\tString saying; \r\n\t//Assign values to those previously created variables\r\n\tgreeting = \"Hi\";\r\n\tgoodbye = \"Take care\";\r\n\tsaying = \"To each their own\";\r\n\tSystem.out.println(greeting);\r\n\tSystem.out.println(greeting+saying);//Expected : HiTo each their own\r\n\t}", "public void print(int someInt) {\r\n print(someInt + \"\");\r\n }", "public void addition() {\n\t\t x = 5;\n\t\t y = 11;\n\t\t z = 16;\n\t\t System.out.println(\"5 + 11 = \"+z);\n\t}", "public static void print(int x) {\r\n if (x > 9) {\r\n print(x / 10);\r\n }\r\n System.out.print(x % 10 + \" \");\r\n }", "public double x() {\n\t\treturn x;\n\t}", "public static void main(String[] args) {\n String x = \"Hello \", y = \"World\"; \r\n\t\t\r\n\t\tSystem.out.println(\"x + y = \" + x + y);\r\n\r\n\r\n\t}", "public static void change(int x)\n\t{\n\t\tx += 5;\n\t\tSystem.out.println(x);\n\t}", "public static void main(String[] args) {\n\t\tSystem.out.println(addVar(5, 8.56f));\n\t\t\n\n\t}", "public double x() {return _x;}", "public void sum()\r\n\t{\r\n\t\tint a= 10;\r\n\t\tint b= 20;\r\n\t\tSystem.out.println(\"Sum of 2 varaiable= \"+(a+b));\r\n\t}", "public static void main(String[] args) {\n\t\tint x = 5;\n\t\tSystem.out.println(\"Hola Mundo \" + x);\n\t}", "public static void main(String[] args) {\n\t\tint x = 10;\n\t\tx = x + 1; // increment by 1\n\t\tSystem.out.println(x);\n\t\t\n\t\tx++; // Post increment\n\t\tSystem.out.println(x);\n\t\t\n\t\tSystem.out.println(x++);\n\t\tSystem.out.println(x);\n\t\t\n\t\tSystem.out.println(++x); //Pre increment\n\t\tSystem.out.println(x);\n\t\t\n\t\tx += 5; // x = x + 5\n\t\tSystem.out.println(x);\n\t\t\n\t\tx *= 5; // x = x * 5\n\t\tSystem.out.println(x);\n\t\t\n\t\tx /= 5; // x = x / 5\n\t\tSystem.out.println(x);\n\t\t\n\t\tx -= 4; // x = x - 4\n\t\tSystem.out.println(x);\n\t}", "void test(int a){\n System.out.println(\"a: \"+a);\n }", "public double x() { return x; }", "public double x() {\r\n return this.x;\r\n }", "public int getX(){\n return x;\n }", "public int getX(){\n return x;\n }", "public int getX(){\n return x;\n }", "public static void main(String[] args) {\n\t\t\r\n\t\tInteger x = Integer.valueOf(20);\r\n\t\tint temp = x.intValue();\r\n\t\ttemp++;\r\n\t\tx = Integer.valueOf(temp);\r\n\t\t\r\n\t\tSystem.out.println(x);\r\n\t\t\r\n\t\tprint(true);\r\n\t\t\r\n\t\tList<Integer> list = new ArrayList<>();\r\n\t\tlist.add(1);\r\n\t\tlist.add(2);\r\n\t\tlist.add(3);\r\n\t\t\r\n\t\tfor (int j : list) {\r\n\t\t\tSystem.out.println(j);\r\n\t\t}\r\n\t\t\r\n\t\tInteger abc = Integer.valueOf(50);\r\n\t\tint cba = abc;\r\n\t\tSystem.out.println(cba);\r\n\t\t\r\n\t\tInteger w = null;\r\n\t\tint w2 = w;\r\n\t\t\r\n\t}", "public static void main(String[] args) {\n\t\tint x=10;\n\t\tmodify(x);\n\t\tSystem.out.println(\"This is the value of x \" + x);\n\t\t\n\t\t\n\t}", "public void print() {\r\n System.out.println(c() + \"(\" + x + \", \" + y + \")\");\r\n }", "protected void displayOperatedValue(int value) {\n \tstack.push(value);\n \tcurrent = value;\n \tshow(current);\n \tcurrent = 0;\n }", "public int getX(){\n\t\treturn x;\n\t}", "public int getX(){\n\t\treturn x;\n\t}", "public int getX(){\r\n\t\treturn x;\r\n\t}", "public String getValue() {\r\n return xValue;\r\n }", "public static void main(String[] args) {\n\t\t\r\n\t\tint a=9; // int type 1 to infinite and 0 and -1 to -infinite\r\n\t\tSystem.out.println(\"Value of a is \"+a);\r\n\t\t\r\n\t\tint aa=-2;\r\n\t\tSystem.out.println(\"Value of aa is \"+aa);\r\n\t\t\r\n\t\tchar c = 'V';\r\n\t\tSystem.out.println(\"Value of c is \"+c);\r\n\t\t\r\n\t\tchar cc='2';\r\n\t\tSystem.out.println(\"Value of cc is \"+cc);\r\n\t\t\r\n\t\tdouble d = 10.22;\r\n\t\tSystem.out.println(\"Value of d is \"+d);\r\n\t\t\r\n\t\tdouble dd= 12;\r\n\t\tSystem.out.println(\"Value of dd is \"+dd);\r\n\t\t\r\n\t\tboolean x = true;\r\n\t\tboolean y = false;\r\n\t\t\r\n\t\tSystem.out.println(x);\r\n\t\tSystem.out.println(y);\r\n\t\r\n\t\tString b= \"vinay\"; // String can store data in \"\"\r\n\t\tSystem.out.println(\"Value of b is \"+b);\r\n\t\t\r\n\t\tString bb=\"100\";\r\n\t\tSystem.out.println(\"Value of bb is \"+bb);\r\n\t\t\r\n\t\t\r\n\t}", "double getx() {\n return this.x;\n }", "public static void main (String[] args){\n int r=100;\n int i=2;\n int u=r*i;\n\n System.out.println(\"O resultado é:\"+U+\"V\");\n\n }", "public static void main(String[] args) {\n System.out.println(\"H\"+\"E\"+\"L\"+\"L\"+\"O\"+\"!\");\n System.out.println(\"Hello\"+\" \"+\"World\");\n\n //string and boolean\n System.out.println(\"This is\" + false);\n System.out.println(\"This is line 18: value\" + true);\n\n //string and integer\n System.out.println(\"The number is :\" + 10);\n System.out.println(\"The number is :\" +10+25);\n\n //string and double\n System.out.println(\"This number has a decimal:\" + 1.09);\n\n //string and characters\n System.out.println(\"This is concatenation with the character\" + '$');\n\n }", "public String toString() {\n\t\treturn String.format(\"%s = %d\",name,value);\n\t}", "static void opration(){ \n System.out.println(\"Final veriable value l:\"+l+\"\\nj:\"+j);\n // l=l+2; erorr it can't change it's value\n \n }", "public static void println(Object val) {\n Builtins.println(val);\n }", "public static void main(String[] args) { \n\n int x = 3;\n int y = 2;\n\n x += y; // x = x + y => 5;\n System.out.println(\"X = :\" + x);\n\n x -= y; // x = x - y => 3;\n System.out.println(\"X = :\" + x);\n\n x *= y; // x = x * y => 6;\n System.out.println(\"X = :\" + x);\n\n x /= y; // x = x / y => 3;\n System.out.println(\"X = :\" + x);\n\n x %= y; // x = x % y => 1;\n System.out.println(\"X = :\" + x);\n }", "public static void print(Object val) {\n Builtins.print(val);\n }", "public void sum()\n {\n int a=5;\n int b=10;\n int c=a+b;\n\n System.out.println(c);\n }" ]
[ "0.7210971", "0.6881535", "0.6779585", "0.67668176", "0.6561295", "0.6509872", "0.64956445", "0.64888877", "0.6463884", "0.64075065", "0.6355284", "0.6328764", "0.6293366", "0.628742", "0.625931", "0.6257887", "0.62119615", "0.6181918", "0.61737156", "0.6141236", "0.6137395", "0.6133779", "0.61213666", "0.6096201", "0.607335", "0.60688895", "0.6053406", "0.6036599", "0.6033875", "0.60321015", "0.60261196", "0.5997466", "0.5993803", "0.5987297", "0.5972004", "0.59641725", "0.5963293", "0.595693", "0.59436667", "0.59184784", "0.59168684", "0.59122235", "0.59018934", "0.58757114", "0.5875112", "0.5867593", "0.58594394", "0.5857588", "0.58434886", "0.5834805", "0.5826286", "0.5822091", "0.58187604", "0.5814389", "0.5806494", "0.57957155", "0.57945627", "0.5782422", "0.577746", "0.5772809", "0.57617086", "0.5761492", "0.576074", "0.5759989", "0.5747531", "0.5746808", "0.5735177", "0.57269937", "0.5725881", "0.57136416", "0.5711733", "0.5710873", "0.5704299", "0.569679", "0.56937355", "0.5692754", "0.5690946", "0.56888074", "0.5686549", "0.5680588", "0.5680588", "0.5680588", "0.5677651", "0.56731147", "0.5672338", "0.5662341", "0.5661043", "0.5661043", "0.566019", "0.56592196", "0.56548417", "0.564013", "0.56331104", "0.56327885", "0.5629609", "0.56290907", "0.5627694", "0.5618633", "0.56132054", "0.56091803" ]
0.7635736
0
Creates new form UI0011_ProdStatistics_
public PACKAGING_UI0020_ProdStatisticsByShift(java.awt.Frame parent, boolean modal) { super(parent, modal); initComponents(); initTab1Components(); initTab2Components(); Helper.centerJDialog(this); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\t\t\tpublic void actionPerformed(ActionEvent e) {\n\t\t\t\tString[] v=new String[6];\r\n\t\t\t\tv[0] =String.valueOf(DBInsert.getMaxNum(Login.c,\"product\",\"p_num\")+1);\r\n\t\t\t\tv[1] =tfName.getText();\r\n\t\t\t\tv[2] =tfPrice.getText();\r\n\t\t\t\tv[3] =tfPrimeCost.getText();\r\n\t\t\t\tv[4] = (String)vSupplier.get(cbSupplier.getSelectedIndex());\r\n\t\t\t\tv[5] =tfType.getText();\r\n\t\t\t\tDBInsert.DBInsert(Login.c, \"product\", strCols, v);\r\n\t\t\t\tJOptionPane.showMessageDialog(null, \"상품 등록 완료\");\r\n\t\t\t}", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jTabbedPane1 = new javax.swing.JTabbedPane();\n jPanel1 = new javax.swing.JPanel();\n jLabel1 = new javax.swing.JLabel();\n productNameText = new javax.swing.JTextField();\n jLabel2 = new javax.swing.JLabel();\n categoryCombo = new javax.swing.JComboBox();\n jLabel3 = new javax.swing.JLabel();\n productTypeCombo = new javax.swing.JComboBox();\n jLabel4 = new javax.swing.JLabel();\n licenseInfoText = new javax.swing.JTextField();\n jLabel5 = new javax.swing.JLabel();\n classificationCombo = new javax.swing.JComboBox();\n jLabel6 = new javax.swing.JLabel();\n uomCombo = new javax.swing.JComboBox();\n jLabel7 = new javax.swing.JLabel();\n skuText = new javax.swing.JTextField();\n jLabel8 = new javax.swing.JLabel();\n upcText = new javax.swing.JTextField();\n saveGeneralProductButton = new javax.swing.JButton();\n clearProductButton = new javax.swing.JButton();\n jPanel2 = new javax.swing.JPanel();\n jPanel3 = new javax.swing.JPanel();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);\n setTitle(\"ProductCreate Create\");\n\n jLabel1.setText(\"ProductCreate Name:\");\n\n productNameText.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n productNameTextActionPerformed(evt);\n }\n });\n\n jLabel2.setText(\"CategoryCreate:\");\n\n categoryCombo.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n\n jLabel3.setText(\"ProductCreate Type:\");\n\n productTypeCombo.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n\n jLabel4.setText(\"License Info:\");\n\n jLabel5.setText(\"Classification:\");\n\n classificationCombo.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n\n jLabel6.setText(\"Unit Of Measure:\");\n\n uomCombo.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n\n jLabel7.setText(\"SKU:\");\n\n jLabel8.setText(\"UPC:\");\n\n saveGeneralProductButton.setText(\"Save\");\n saveGeneralProductButton.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n saveGeneralProductButtonActionPerformed(evt);\n }\n });\n\n clearProductButton.setText(\"Clear\");\n\n javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);\n jPanel1.setLayout(jPanel1Layout);\n jPanel1Layout.setHorizontalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)\n .addComponent(jLabel5)\n .addComponent(jLabel4)\n .addComponent(jLabel3)\n .addComponent(jLabel2)\n .addComponent(jLabel1))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(productTypeCombo, 0, 336, Short.MAX_VALUE)\n .addComponent(licenseInfoText, javax.swing.GroupLayout.DEFAULT_SIZE, 336, Short.MAX_VALUE)\n .addComponent(productNameText, javax.swing.GroupLayout.DEFAULT_SIZE, 336, Short.MAX_VALUE)\n .addComponent(categoryCombo, 0, 336, Short.MAX_VALUE)\n .addComponent(classificationCombo, 0, 336, Short.MAX_VALUE)))\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)\n .addComponent(jLabel8)\n .addComponent(jLabel7)\n .addComponent(jLabel6))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(skuText, javax.swing.GroupLayout.DEFAULT_SIZE, 335, Short.MAX_VALUE)\n .addComponent(uomCombo, 0, 335, Short.MAX_VALUE)\n .addComponent(upcText, javax.swing.GroupLayout.DEFAULT_SIZE, 335, Short.MAX_VALUE)\n .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()\n .addComponent(saveGeneralProductButton)\n .addGap(18, 18, 18)\n .addComponent(clearProductButton)))))\n .addContainerGap())\n );\n jPanel1Layout.setVerticalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel1)\n .addComponent(productNameText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel2)\n .addComponent(categoryCombo, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel3)\n .addComponent(productTypeCombo, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel4)\n .addComponent(licenseInfoText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel5, javax.swing.GroupLayout.PREFERRED_SIZE, 17, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(classificationCombo, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel6)\n .addComponent(uomCombo, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel7)\n .addComponent(skuText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel8)\n .addComponent(upcText, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(32, 32, 32)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(clearProductButton)\n .addComponent(saveGeneralProductButton))\n .addContainerGap(32, Short.MAX_VALUE))\n );\n\n jTabbedPane1.addTab(\"General Information\", jPanel1);\n\n javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);\n jPanel2.setLayout(jPanel2Layout);\n jPanel2Layout.setHorizontalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 431, Short.MAX_VALUE)\n );\n jPanel2Layout.setVerticalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 384, Short.MAX_VALUE)\n );\n\n jTabbedPane1.addTab(\"Materials Specification\", jPanel2);\n\n javax.swing.GroupLayout jPanel3Layout = new javax.swing.GroupLayout(jPanel3);\n jPanel3.setLayout(jPanel3Layout);\n jPanel3Layout.setHorizontalGroup(\n jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 431, Short.MAX_VALUE)\n );\n jPanel3Layout.setVerticalGroup(\n jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 384, Short.MAX_VALUE)\n );\n\n jTabbedPane1.addTab(\"Picture\", jPanel3);\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGap(18, 18, 18)\n .addComponent(jTabbedPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 436, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addContainerGap(23, Short.MAX_VALUE))\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addContainerGap()\n .addComponent(jTabbedPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 412, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addContainerGap(31, Short.MAX_VALUE))\n );\n\n pack();\n }", "public VerInfoProd(Producto prod) {\n initComponents();\n \n Fabrica fabrica = Fabrica.getInstance();\n ICP = fabrica.getICtrlProducto();\n modelo = (DefaultTableModel) jTabla.getModel();\n this.txtNomProd.setText(prod.getNombre());\n this.txtDescProd.setText(prod.getDescripcion());\n String precio = Double.toString(prod.getPrecio());\n this.txtPrecioProd.setText(precio);\n p = prod;\n Promocional prom = (Promocional)p;\n if(prom.isActiva())\n this.txtEstadoPromo.setText(\"ACTIVA\");\n else\n this.txtEstadoPromo.setText(\"INACTIVA\");\n cargartabla();\n }", "public ProductCreate() {\n initComponents();\n }", "public void actionPerformed(ActionEvent e) {\n\t\t\t\tfrmAddStudentGroup.dispose();\n\t\t\t\tnew Statistics();\n\t\t\t\t\n\t\t\t}", "@RequestMapping(value = { \"/newproduct\" }, method = RequestMethod.GET)\r\n\tpublic String newProduct(ModelMap model) {\r\n\t\tProduct product = new Product();\r\n\t\tmodel.addAttribute(\"product\", product);\r\n\t\tmodel.addAttribute(\"productTypes\", productTypeService.findAllProductTypes());\r\n\t\tmodel.addAttribute(\"brands\", brandService.findAllBrands());\r\n\t\tmodel.addAttribute(\"edit\", false);\r\n\t\treturn \"newproduct\";\r\n\t}", "public void testProductionRecord() {\n // test constructor used when creating production records from user interface\n Integer numProduced = 3; // this will come from the combobox in the UI\n\n for (int productionRunProduct = 0; productionRunProduct < numProduced; productionRunProduct++) {\n ProductionRecord pr = new ProductionRecord(0);\n System.out.println(pr.toString());\n }\n\n ProductionRecord pr = new ProductionRecord(0, 3, \"1\", new Date(System.currentTimeMillis()));\n\n textLog.setText(textLog.getText() + pr.toString());\n textLog.setText(textLog.getText() + \"\\n\" + pr.getProductionNumber());\n textLog.setText(textLog.getText() + \"\\n\" + pr.getProductID());\n textLog.setText(textLog.getText() + \"\\n\" + pr.getSerialnumber());\n textLog.setText(textLog.getText() + \"\\n\" + pr.getDateProduced());\n\n }", "@FXML\n\tpublic void createProduct(ActionEvent event) {\n\t\tif (!txtProductName.getText().equals(\"\") && !txtProductPrice.getText().equals(\"\")\n\t\t\t\t&& ComboSize.getValue() != null && ComboType.getValue() != null && selectedIngredients.size() != 0) {\n\n\t\t\tProduct objProduct = new Product(txtProductName.getText(), ComboSize.getValue(), txtProductPrice.getText(),\n\t\t\t\t\tComboType.getValue(), selectedIngredients);\n\n\t\t\ttry {\n\t\t\t\trestaurant.addProduct(objProduct, empleadoUsername);\n\n\t\t\t\ttxtProductName.setText(null);\n\t\t\t\ttxtProductPrice.setText(null);\n\t\t\t\tComboSize.setValue(null);\n\t\t\t\tComboType.setValue(null);\n\t\t\t\tChoiceIngredients.setValue(null);\n\t\t\t\tselectedIngredients.clear();\n\t\t\t\tproductOptions.clear();\n\t\t\t\tproductOptions.addAll(restaurant.getStringReferencedIdsProducts());\n\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\n\t\t} else {\n\t\t\tDialog<String> dialog = createDialog();\n\t\t\tdialog.setContentText(\"Todos los campos deben de ser llenados\");\n\t\t\tdialog.setTitle(\"Error al guardar los datos\");\n\t\t\tdialog.show();\n\t\t}\n\n\t}", "@RequestMapping(params = \"new\", method = RequestMethod.GET)\n\t@PreAuthorize(\"hasRole('ADMIN')\")\n\tpublic String createProductForm(Model model) { \t\n \t\n\t\t//Security information\n\t\tmodel.addAttribute(\"admin\",security.isAdmin()); \n\t\tmodel.addAttribute(\"loggedUser\", security.getLoggedInUser());\n\t\t\n\t model.addAttribute(\"product\", new Product());\n\t return \"products/newProduct\";\n\t}", "private void addBtnMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_addBtnMouseClicked\n\n String id = pidTxt.getText().toString();\n String name = pnameTxt.getText().toString();\n String price = pperpriceTxt.getText().toString();\n String quantity = pquanityTxt.getText().toString();\n String date = pdateTxt.getText().toString();\n\n try {\n String Query = \"INSERT INTO `stock` (`Product_ID`, `Product_Name`,`Quantity`, `Entry_Date`,`Price`) VALUES (?, ?, ?, ?, ?)\";\n\n pstm = con.prepareStatement(Query);\n\n pstm.setInt(1, Integer.parseInt(id));\n pstm.setString(2, name);\n pstm.setInt(3, Integer.parseInt(quantity));\n pstm.setString(4, date);\n pstm.setInt(5, Integer.parseInt(price));\n pstm.executeUpdate();\n } catch (Exception ex) {\n JOptionPane.showMessageDialog(null, \"Data Insertion Failed \");\n }\n refTable();\n\n\n }", "@Override\n\tpublic int create(Prod_Unidadmed P) {\n\t\treturn jdbcTemplate.update(\"call PKG_ALM_CRUD_PRODUNIDADMED.pa_mat_produnidadmed_ins(?,?,?)\",P.getNombrelargo(),P.getNombrecorto(),P.getEstado());\n\t}", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n Title = new javax.swing.JLabel();\n NAME = new javax.swing.JLabel();\n txt_name = new javax.swing.JTextField();\n PROVIDER = new javax.swing.JLabel();\n ComboBox_provider = new javax.swing.JComboBox<>();\n CATEGORY = new javax.swing.JLabel();\n ComboBox_category = new javax.swing.JComboBox<>();\n Trademark = new javax.swing.JLabel();\n ComboBox_trademark = new javax.swing.JComboBox<>();\n COLOR = new javax.swing.JLabel();\n ComboBox_color = new javax.swing.JComboBox<>();\n SIZE = new javax.swing.JLabel();\n ComboBox_size = new javax.swing.JComboBox<>();\n MATERIAL = new javax.swing.JLabel();\n ComboBox_material = new javax.swing.JComboBox<>();\n PRICE = new javax.swing.JLabel();\n txt_price = new javax.swing.JTextField();\n SAVE = new javax.swing.JButton();\n CANCEL = new javax.swing.JButton();\n Background = new javax.swing.JLabel();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n getContentPane().setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());\n\n Title.setFont(new java.awt.Font(\"Dialog\", 1, 24)); // NOI18N\n Title.setForeground(new java.awt.Color(255, 255, 255));\n Title.setText(\"NEW PRODUCT\");\n getContentPane().add(Title, new org.netbeans.lib.awtextra.AbsoluteConstraints(200, 33, -1, -1));\n\n NAME.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n NAME.setForeground(new java.awt.Color(255, 255, 255));\n NAME.setText(\"Name\");\n getContentPane().add(NAME, new org.netbeans.lib.awtextra.AbsoluteConstraints(40, 150, 70, 30));\n\n txt_name.setBackground(new java.awt.Color(51, 51, 51));\n txt_name.setForeground(new java.awt.Color(255, 255, 255));\n getContentPane().add(txt_name, new org.netbeans.lib.awtextra.AbsoluteConstraints(120, 150, 100, 30));\n\n PROVIDER.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n PROVIDER.setForeground(new java.awt.Color(255, 255, 255));\n PROVIDER.setText(\"Provider\");\n getContentPane().add(PROVIDER, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 200, 70, 30));\n\n ComboBox_provider.setBackground(new java.awt.Color(51, 51, 51));\n ComboBox_provider.setForeground(new java.awt.Color(255, 255, 255));\n ComboBox_provider.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n getContentPane().add(ComboBox_provider, new org.netbeans.lib.awtextra.AbsoluteConstraints(120, 200, 100, 30));\n\n CATEGORY.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n CATEGORY.setForeground(new java.awt.Color(255, 255, 255));\n CATEGORY.setText(\"Category\");\n getContentPane().add(CATEGORY, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 250, 70, 30));\n\n ComboBox_category.setBackground(new java.awt.Color(51, 51, 51));\n ComboBox_category.setForeground(new java.awt.Color(255, 255, 255));\n ComboBox_category.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n getContentPane().add(ComboBox_category, new org.netbeans.lib.awtextra.AbsoluteConstraints(120, 250, 100, 30));\n\n Trademark.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n Trademark.setForeground(new java.awt.Color(255, 255, 255));\n Trademark.setText(\"Trademark\");\n getContentPane().add(Trademark, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 300, 70, 30));\n\n ComboBox_trademark.setBackground(new java.awt.Color(51, 51, 51));\n ComboBox_trademark.setForeground(new java.awt.Color(255, 255, 255));\n ComboBox_trademark.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n ComboBox_trademark.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n ComboBox_trademarkActionPerformed(evt);\n }\n });\n getContentPane().add(ComboBox_trademark, new org.netbeans.lib.awtextra.AbsoluteConstraints(120, 300, 100, 30));\n\n COLOR.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n COLOR.setForeground(new java.awt.Color(255, 255, 255));\n COLOR.setText(\"Color\");\n getContentPane().add(COLOR, new org.netbeans.lib.awtextra.AbsoluteConstraints(300, 150, 70, 30));\n\n ComboBox_color.setBackground(new java.awt.Color(51, 51, 51));\n ComboBox_color.setForeground(new java.awt.Color(255, 255, 255));\n ComboBox_color.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n getContentPane().add(ComboBox_color, new org.netbeans.lib.awtextra.AbsoluteConstraints(400, 150, 100, 30));\n\n SIZE.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n SIZE.setForeground(new java.awt.Color(255, 255, 255));\n SIZE.setText(\"Size\");\n getContentPane().add(SIZE, new org.netbeans.lib.awtextra.AbsoluteConstraints(300, 200, 70, 30));\n\n ComboBox_size.setBackground(new java.awt.Color(51, 51, 51));\n ComboBox_size.setForeground(new java.awt.Color(255, 255, 255));\n ComboBox_size.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n getContentPane().add(ComboBox_size, new org.netbeans.lib.awtextra.AbsoluteConstraints(400, 200, 100, 30));\n\n MATERIAL.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n MATERIAL.setForeground(new java.awt.Color(255, 255, 255));\n MATERIAL.setText(\"Material\");\n getContentPane().add(MATERIAL, new org.netbeans.lib.awtextra.AbsoluteConstraints(300, 250, 70, 30));\n\n ComboBox_material.setBackground(new java.awt.Color(51, 51, 51));\n ComboBox_material.setForeground(new java.awt.Color(255, 255, 255));\n ComboBox_material.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n getContentPane().add(ComboBox_material, new org.netbeans.lib.awtextra.AbsoluteConstraints(400, 250, 100, 30));\n\n PRICE.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n PRICE.setForeground(new java.awt.Color(255, 255, 255));\n PRICE.setText(\"Price\");\n getContentPane().add(PRICE, new org.netbeans.lib.awtextra.AbsoluteConstraints(300, 300, 70, 30));\n\n txt_price.setBackground(new java.awt.Color(51, 51, 51));\n txt_price.setForeground(new java.awt.Color(255, 255, 255));\n txt_price.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n txt_priceActionPerformed(evt);\n }\n });\n getContentPane().add(txt_price, new org.netbeans.lib.awtextra.AbsoluteConstraints(400, 300, 100, 30));\n\n SAVE.setBackground(new java.awt.Color(25, 25, 25));\n SAVE.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/img/icono_guardar-A.png\"))); // NOI18N\n SAVE.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR));\n SAVE.setPressedIcon(new javax.swing.ImageIcon(getClass().getResource(\"/img/icono_guardar-B.png\"))); // NOI18N\n SAVE.setRolloverIcon(new javax.swing.ImageIcon(getClass().getResource(\"/img/icono_guardar.png\"))); // NOI18N\n SAVE.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n SAVEActionPerformed(evt);\n }\n });\n getContentPane().add(SAVE, new org.netbeans.lib.awtextra.AbsoluteConstraints(210, 480, 50, 50));\n\n CANCEL.setBackground(new java.awt.Color(25, 25, 25));\n CANCEL.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/img/icono_no-A.png\"))); // NOI18N\n CANCEL.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR));\n CANCEL.setPressedIcon(new javax.swing.ImageIcon(getClass().getResource(\"/img/icono_no-B.png\"))); // NOI18N\n CANCEL.setRolloverIcon(new javax.swing.ImageIcon(getClass().getResource(\"/img/icono_no.png\"))); // NOI18N\n CANCEL.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n CANCELActionPerformed(evt);\n }\n });\n getContentPane().add(CANCEL, new org.netbeans.lib.awtextra.AbsoluteConstraints(280, 480, 50, 50));\n\n Background.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/img/fondo_windows2.jpg\"))); // NOI18N\n getContentPane().add(Background, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, -1, -1));\n\n pack();\n }", "private JButton createButtonAddProduct() {\n\n JButton btn = new JButton(\"Add Product\");\n btn.setEnabled(false);\n btn.addActionListener(new ActionListener() {\n @Override\n public void actionPerformed(ActionEvent e) {\n\n // new NewProductDialog(DemonstrationApplication.this);\n }\n });\n\n return btn;\n }", "@Command\n\tpublic void nuevoAnalista(){\n\t\tMap<String, Object> parametros = new HashMap<String, Object>();\n\n\t\t//parametros.put(\"recordMode\", \"NEW\");\n\t\tllamarFormulario(\"formularioAnalistas.zul\", null);\n\t}", "public ViewProductInfo() {\n initComponents();\n }", "public PRODUCT_REPORT() {\n initComponents();\n date();\n time();\n table();\n \n pnn2.setEditable(false);\n pc1.setEditable(false);\n pba.setEditable(false);\n pds.setEditable(false);\n }", "@FXML\n void but_RecordProduction(ActionEvent event) {\n for (int i = 0; i < Integer.parseInt(comboQuantity.getValue()); i++) {\n globalProductCount++; //Counts up product count\n if (mainEmployee != null) {\n textLog.setText(textLog.getText() + \"\\n\" + new ProductionRecord(\n listProduce.getSelectionModel().getSelectedItem(), i + 1, globalProductCount)\n + \" \" + mainEmployee.username);\n addToDatabaseRecord(\n new ProductionRecord(listProduce.getSelectionModel().getSelectedItem(), i + 1,\n globalProductCount), mainEmployee.username);\n } else {\n textLog.setText(textLog.getText() + \"\\n\" + new ProductionRecord(\n listProduce.getSelectionModel().getSelectedItem(), i + 1, globalProductCount)\n + \" Anonymous\");\n addToDatabaseRecord(\n new ProductionRecord(listProduce.getSelectionModel().getSelectedItem(), i + 1,\n globalProductCount), \"Anonymous\");\n }\n }\n\n }", "public ViewProductJPanel(JPanel userProcessContainer,Product product) {\n initComponents();\n this.userProcessContainer=userProcessContainer;\n this.product=product;\n txtname.setText(product.getProductname());\n txtfloor.setText(String.valueOf(product.getFloorprice()));\n txttarget.setText(String.valueOf(product.getTargetprice()));\n txtceiling.setText(String.valueOf(product.getCeilingprice()));\n txtid.setText(String.valueOf(product.getProductid()));\n txtavail.setText(String.valueOf(product.getAvail()));\n \n}", "public CadastroProdutoNew() {\n initComponents();\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n prodDialog = new javax.swing.JDialog();\n jPanel2 = new javax.swing.JPanel();\n tfPname = new javax.swing.JTextField();\n spinQTY = new javax.swing.JSpinner();\n ftPrice = new javax.swing.JFormattedTextField();\n jLabel2 = new javax.swing.JLabel();\n jLabel3 = new javax.swing.JLabel();\n jLabel4 = new javax.swing.JLabel();\n btnAdd = new javax.swing.JButton();\n btnSave = new javax.swing.JButton();\n btnAddQTY = new javax.swing.JButton();\n xst_qty = new javax.swing.JLabel();\n jaja = new javax.swing.JFrame();\n jPanel1 = new javax.swing.JPanel();\n jScrollPane1 = new javax.swing.JScrollPane();\n prodTBL = new javax.swing.JTable();\n addProd = new javax.swing.JButton();\n updateProd = new javax.swing.JButton();\n deleteProd = new javax.swing.JButton();\n tfSearch = new javax.swing.JTextField();\n addProd1 = new javax.swing.JButton();\n updateProd1 = new javax.swing.JButton();\n updateProd2 = new javax.swing.JButton();\n\n prodDialog.setLocation(new java.awt.Point(500, 200));\n prodDialog.setMinimumSize(new java.awt.Dimension(321, 300));\n prodDialog.setPreferredSize(new java.awt.Dimension(321, 300));\n\n jPanel2.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory.createEtchedBorder(javax.swing.border.EtchedBorder.RAISED), \"Insert new product\", javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION, javax.swing.border.TitledBorder.TOP, new java.awt.Font(\"Tahoma\", 3, 14))); // NOI18N\n\n spinQTY.setModel(new javax.swing.SpinnerNumberModel(0, 0, null, 1));\n\n ftPrice.setFormatterFactory(new javax.swing.text.DefaultFormatterFactory(new javax.swing.text.NumberFormatter(new java.text.DecimalFormat(\"#,###.00\"))));\n ftPrice.addFocusListener(new java.awt.event.FocusAdapter() {\n public void focusLost(java.awt.event.FocusEvent evt) {\n ftPriceFocusLost(evt);\n }\n });\n\n jLabel2.setText(\"Product Name:\");\n\n jLabel3.setText(\"Quantity:\");\n\n jLabel4.setText(\"Price:\");\n\n btnAdd.setText(\"Add\");\n btnAdd.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnAddActionPerformed(evt);\n }\n });\n\n btnSave.setText(\"Save\");\n btnSave.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnSaveActionPerformed(evt);\n }\n });\n\n btnAddQTY.setText(\"Add Quantity\");\n btnAddQTY.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnAddQTYActionPerformed(evt);\n }\n });\n\n xst_qty.setText(\"jLabel1\");\n\n javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);\n jPanel2.setLayout(jPanel2Layout);\n jPanel2Layout.setHorizontalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)\n .addComponent(jLabel2)\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addGap(10, 10, 10)\n .addComponent(jLabel4))\n .addComponent(jLabel3)))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(btnAdd, javax.swing.GroupLayout.DEFAULT_SIZE, 155, Short.MAX_VALUE)\n .addComponent(tfPname)\n .addComponent(ftPrice)\n .addComponent(btnAddQTY, javax.swing.GroupLayout.DEFAULT_SIZE, 155, Short.MAX_VALUE)\n .addComponent(btnSave, javax.swing.GroupLayout.DEFAULT_SIZE, 155, Short.MAX_VALUE)\n .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel2Layout.createSequentialGroup()\n .addComponent(xst_qty, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addGap(18, 18, 18)\n .addComponent(spinQTY, javax.swing.GroupLayout.PREFERRED_SIZE, 73, javax.swing.GroupLayout.PREFERRED_SIZE)))\n .addGap(57, 57, 57))\n );\n jPanel2Layout.setVerticalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel2)\n .addComponent(tfPname, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel3)\n .addComponent(spinQTY, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(xst_qty))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel4)\n .addComponent(ftPrice, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)\n .addComponent(btnAdd)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)\n .addComponent(btnAddQTY)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 74, Short.MAX_VALUE)\n .addComponent(btnSave))\n );\n\n javax.swing.GroupLayout prodDialogLayout = new javax.swing.GroupLayout(prodDialog.getContentPane());\n prodDialog.getContentPane().setLayout(prodDialogLayout);\n prodDialogLayout.setHorizontalGroup(\n prodDialogLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(prodDialogLayout.createSequentialGroup()\n .addContainerGap()\n .addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addContainerGap())\n );\n prodDialogLayout.setVerticalGroup(\n prodDialogLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(prodDialogLayout.createSequentialGroup()\n .addContainerGap()\n .addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addContainerGap())\n );\n\n jaja.setMinimumSize(new java.awt.Dimension(400, 300));\n\n javax.swing.GroupLayout jajaLayout = new javax.swing.GroupLayout(jaja.getContentPane());\n jaja.getContentPane().setLayout(jajaLayout);\n jajaLayout.setHorizontalGroup(\n jajaLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 400, Short.MAX_VALUE)\n );\n jajaLayout.setVerticalGroup(\n jajaLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 300, Short.MAX_VALUE)\n );\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n\n jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder(javax.swing.BorderFactory.createEtchedBorder(javax.swing.border.EtchedBorder.RAISED), \"Data Records\", javax.swing.border.TitledBorder.LEFT, javax.swing.border.TitledBorder.TOP, new java.awt.Font(\"Tahoma\", 3, 14))); // NOI18N\n\n prodTBL.setModel(new javax.swing.table.DefaultTableModel(\n new Object [][] {\n\n },\n new String [] {\n \"id\", \"Product name\", \"Quantity\", \"Price\"\n }\n ) {\n boolean[] canEdit = new boolean [] {\n false, false, false, false\n };\n\n public boolean isCellEditable(int rowIndex, int columnIndex) {\n return canEdit [columnIndex];\n }\n });\n jScrollPane1.setViewportView(prodTBL);\n if (prodTBL.getColumnModel().getColumnCount() > 0) {\n prodTBL.getColumnModel().getColumn(0).setResizable(false);\n prodTBL.getColumnModel().getColumn(1).setResizable(false);\n prodTBL.getColumnModel().getColumn(2).setResizable(false);\n prodTBL.getColumnModel().getColumn(3).setResizable(false);\n }\n\n addProd.setText(\"Add New\");\n addProd.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n addProdActionPerformed(evt);\n }\n });\n\n updateProd.setText(\"Edit\");\n updateProd.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n updateProdActionPerformed(evt);\n }\n });\n\n deleteProd.setForeground(new java.awt.Color(153, 0, 0));\n deleteProd.setText(\"Delete\");\n deleteProd.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n deleteProdActionPerformed(evt);\n }\n });\n\n tfSearch.addKeyListener(new java.awt.event.KeyAdapter() {\n public void keyReleased(java.awt.event.KeyEvent evt) {\n tfSearchKeyReleased(evt);\n }\n });\n\n addProd1.setText(\"search\");\n addProd1.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n addProd1ActionPerformed(evt);\n }\n });\n\n updateProd1.setText(\"Add Qty\");\n updateProd1.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n updateProd1ActionPerformed(evt);\n }\n });\n\n updateProd2.setText(\"POS\");\n updateProd2.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n updateProd2ActionPerformed(evt);\n }\n });\n\n javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);\n jPanel1.setLayout(jPanel1Layout);\n jPanel1Layout.setHorizontalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(addProd, javax.swing.GroupLayout.DEFAULT_SIZE, 89, Short.MAX_VALUE)\n .addComponent(updateProd, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(deleteProd, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(updateProd1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(updateProd2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 379, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addComponent(tfSearch, javax.swing.GroupLayout.PREFERRED_SIZE, 287, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(addProd1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)))\n .addContainerGap(13, Short.MAX_VALUE))\n );\n jPanel1Layout.setVerticalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(tfSearch, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(addProd1))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addComponent(addProd)\n .addGap(13, 13, 13)\n .addComponent(updateProd)\n .addGap(18, 18, 18)\n .addComponent(updateProd1)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(updateProd2)\n .addGap(18, 18, 18)\n .addComponent(deleteProd))\n .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 247, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addContainerGap(33, Short.MAX_VALUE))\n );\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addContainerGap()\n .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addContainerGap())\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addContainerGap()\n .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addContainerGap())\n );\n\n pack();\n }", "@RequestMapping(value = \"/report.create\", method = RequestMethod.GET)\n @ResponseBody public ModelAndView newreportForm(HttpSession session) throws Exception {\n ModelAndView mav = new ModelAndView();\n mav.setViewName(\"/sysAdmin/reports/details\");\n\n //Create a new blank provider.\n reports report = new reports();\n \n mav.addObject(\"btnValue\", \"Create\");\n mav.addObject(\"reportdetails\", report);\n\n return mav;\n }", "public FormProduct() {\n initComponents();\n getData();\n }", "x0401.oecdStandardAuditFileTaxPT1.ProductDocument.Product addNewProduct();", "public void CrearNew(ActionEvent e) {\n List<Pensum> R = ejbFacade.existePensumID(super.getSelected().getIdpensum());\n if(R.isEmpty()){\n super.saveNew(e);\n }else{\n new Auxiliares().setMsj(3,\"PENSUM ID YA EXISTE\");\n }\n }", "public static Result newProduct() {\n Form<models.Product> productForm = form(models.Product.class).bindFromRequest();\n if(productForm.hasErrors()) {\n return badRequest(\"Tag name cannot be 'tag'.\");\n }\n models.Product product = productForm.get();\n product.save();\n return ok(product.toString());\n }", "@Override\r\n\tpublic void addProductGroup() {\r\n\t\tString newProductGroupName = getView().getProductGroupName();\r\n\t\tString supplyValue = getView().getSupplyValue();\r\n\t\tSizeUnits supplyUnit = getView().getSupplyUnit();\r\n\t\t\r\n\t\tProductGroup pg = new ProductGroup();\r\n\t\tpg.setName(newProductGroupName);\r\n\t\tUnitSize threeMounthSup = null;\r\n\t\ttry {\r\n\t\t\tthreeMounthSup = new UnitSize(supplyValue, supplyUnit.toString() );\r\n\t\t\t\r\n\t\t} catch (Exception e) {\r\n\t\t\tSystem.out.println(\"fail in addProductGroupController\");\r\n\t\t}\r\n\t\t\r\n\t\tpg.setThreeMonthSup(threeMounthSup);\r\n\t\t\r\n\t\tpg.setContainer(_parent);\r\n\t\t\r\n\t\t_productGroupFacade.addProductGroup(pg);\r\n\t\t\r\n\t\tPersistor persistor = Configuration.getInstance().getPersistor();\r\n\t\tpersistor.insertProductContainer(pg);\r\n\t}", "public ProductTestReport() {}", "public void buttonNew(View view) {\n Intent intent = new Intent(this, ProductNewActivity.class);\n startActivity(intent);\n }", "public void create_new_package(View V) {\n make_request();\r\n progressDialog.show();\r\n }", "@FXML\n\tpublic void buttonCreateProductType(ActionEvent event) {\n\t\tString empty = \"\";\n\t\tString name = txtProductTypeName.getText();\n\t\tif (!name.equals(empty)) {\n\t\t\tProductType obj = new ProductType(txtProductTypeName.getText());\n\t\t\ttry {\n\t\t\t\tboolean found = restaurant.addProductType(obj, empleadoUsername); // Se añade a la lista de tipos de\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// producto DEL RESTAURANTE\n\t\t\t\tif (found == false) {\n\t\t\t\t\ttypeOptions.add(name);// Se añade a la lista de tipos de producto para ser mostrada en los combobox\n\t\t\t\t}\n\t\t\t\ttxtProductTypeName.setText(\"\");\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\n\t\t} else {\n\t\t\tDialog<String> dialog = createDialog();\n\t\t\tdialog.setContentText(\"El tipo de producto a crear debe tener un nombre \");\n\t\t\tdialog.setTitle(\"Error, Campo sin datos\");\n\t\t\tdialog.show();\n\n\t\t}\n\t}", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jPanel1 = new javax.swing.JPanel();\n jPanel2 = new javax.swing.JPanel();\n jLabel7 = new javax.swing.JLabel();\n jLabel1 = new javax.swing.JLabel();\n jLabel2 = new javax.swing.JLabel();\n jLabel3 = new javax.swing.JLabel();\n jLabel5 = new javax.swing.JLabel();\n txt_ProductName = new javax.swing.JTextField();\n txt_category = new javax.swing.JTextField();\n txt_price = new javax.swing.JTextField();\n jScrollPane1 = new javax.swing.JScrollPane();\n txt_description = new javax.swing.JTextArea();\n jLabel6 = new javax.swing.JLabel();\n lbl_image = new javax.swing.JLabel();\n btn_insert = new javax.swing.JButton();\n btn_addImage = new javax.swing.JButton();\n cb_category = new javax.swing.JComboBox<>();\n jLabel4 = new javax.swing.JLabel();\n btn_newCategory = new javax.swing.JButton();\n jButton1 = new javax.swing.JButton();\n txt_validate = new javax.swing.JLabel();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n setTitle(\"NA | New Inventory\");\n addWindowFocusListener(new java.awt.event.WindowFocusListener() {\n public void windowGainedFocus(java.awt.event.WindowEvent evt) {\n formWindowGainedFocus(evt);\n }\n public void windowLostFocus(java.awt.event.WindowEvent evt) {\n formWindowLostFocus(evt);\n }\n });\n\n jPanel1.setBackground(new java.awt.Color(255, 255, 255));\n\n jPanel2.setBackground(new java.awt.Color(0, 31, 63));\n\n jLabel7.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/Image/smart devices.jpg\"))); // NOI18N\n jLabel7.setBorder(new javax.swing.border.SoftBevelBorder(javax.swing.border.BevelBorder.RAISED));\n\n javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);\n jPanel2.setLayout(jPanel2Layout);\n jPanel2Layout.setHorizontalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addGap(46, 46, 46)\n .addComponent(jLabel7)\n .addContainerGap(55, Short.MAX_VALUE))\n );\n jPanel2Layout.setVerticalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addGap(95, 95, 95)\n .addComponent(jLabel7)\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n );\n\n jLabel1.setFont(new java.awt.Font(\"Calibri\", 0, 18)); // NOI18N\n jLabel1.setText(\"Product Name\");\n\n jLabel2.setFont(new java.awt.Font(\"Calibri\", 0, 18)); // NOI18N\n jLabel2.setText(\"Category Name\");\n\n jLabel3.setFont(new java.awt.Font(\"Calibri\", 0, 18)); // NOI18N\n jLabel3.setText(\"Description\");\n\n jLabel5.setFont(new java.awt.Font(\"Calibri\", 0, 18)); // NOI18N\n jLabel5.setText(\"Price\");\n\n txt_category.setEnabled(false);\n txt_category.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n txt_categoryActionPerformed(evt);\n }\n });\n\n txt_price.addKeyListener(new java.awt.event.KeyAdapter() {\n public void keyReleased(java.awt.event.KeyEvent evt) {\n txt_priceKeyReleased(evt);\n }\n });\n\n txt_description.setColumns(20);\n txt_description.setRows(5);\n jScrollPane1.setViewportView(txt_description);\n\n jLabel6.setFont(new java.awt.Font(\"Calibri\", 0, 18)); // NOI18N\n jLabel6.setText(\"Image\");\n\n lbl_image.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(153, 153, 153)));\n\n btn_insert.setBackground(new java.awt.Color(255, 51, 51));\n btn_insert.setFont(new java.awt.Font(\"Calibri\", 1, 24)); // NOI18N\n btn_insert.setForeground(new java.awt.Color(255, 255, 255));\n btn_insert.setText(\"ADD\");\n btn_insert.setBorder(javax.swing.BorderFactory.createEtchedBorder());\n btn_insert.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btn_insertActionPerformed(evt);\n }\n });\n\n btn_addImage.setText(\"SELECT IMAGE\");\n btn_addImage.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btn_addImageActionPerformed(evt);\n }\n });\n\n cb_category.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n cb_categoryActionPerformed(evt);\n }\n });\n\n jLabel4.setFont(new java.awt.Font(\"Calibri\", 0, 18)); // NOI18N\n jLabel4.setText(\"Category ID\");\n\n btn_newCategory.setText(\"New Category\");\n btn_newCategory.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btn_newCategoryActionPerformed(evt);\n }\n });\n\n jButton1.setText(\"Check Availability\");\n jButton1.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jButton1ActionPerformed(evt);\n }\n });\n\n javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);\n jPanel1.setLayout(jPanel1Layout);\n jPanel1Layout.setHorizontalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(70, 70, 70)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jLabel1)\n .addComponent(jLabel2)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addGap(9, 9, 9)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jLabel6)\n .addComponent(jLabel5)))\n .addComponent(jLabel3)\n .addComponent(jLabel4))\n .addGap(86, 86, 86)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(txt_price)\n .addComponent(txt_category)\n .addComponent(txt_ProductName)\n .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 250, Short.MAX_VALUE)\n .addComponent(lbl_image, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(cb_category, 0, 250, Short.MAX_VALUE))\n .addComponent(btn_addImage, javax.swing.GroupLayout.PREFERRED_SIZE, 250, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addGap(42, 42, 42)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(btn_newCategory, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(jButton1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addComponent(txt_validate, javax.swing.GroupLayout.PREFERRED_SIZE, 180, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addContainerGap(35, Short.MAX_VALUE))\n .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(btn_insert, javax.swing.GroupLayout.PREFERRED_SIZE, 103, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(54, 54, 54))))\n );\n jPanel1Layout.setVerticalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addGap(30, 30, 30)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(txt_ProductName, javax.swing.GroupLayout.DEFAULT_SIZE, 40, Short.MAX_VALUE)\n .addComponent(jLabel1)\n .addComponent(jButton1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(btn_newCategory, javax.swing.GroupLayout.DEFAULT_SIZE, 42, Short.MAX_VALUE)\n .addComponent(jLabel2)\n .addComponent(cb_category))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(txt_category, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel4))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 152, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel3))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(txt_price, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel5))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 29, Short.MAX_VALUE)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(lbl_image, javax.swing.GroupLayout.PREFERRED_SIZE, 202, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel6))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 18, Short.MAX_VALUE)\n .addComponent(btn_addImage))\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addComponent(txt_validate, javax.swing.GroupLayout.PREFERRED_SIZE, 32, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(btn_insert, javax.swing.GroupLayout.PREFERRED_SIZE, 84, javax.swing.GroupLayout.PREFERRED_SIZE)))\n .addGap(43, 43, 43))\n );\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n );\n\n pack();\n }", "public void createProductCategory(HttpServletRequest request){\n \n HttpSession session = request.getSession();\n \n DAOFactory mySqlFactory = DAOFactory.getDAOFactory();\n ProductCategoryDAO riverProductCategoryDAO = mySqlFactory.getProductCategoryDAO();\n ProductCategoryDAO productCategoryDAO = new MySQLProductCategoryDAOImpl();\n \n List productCategories = productCategoryDAO.getAllProductCategories();\n \n //productCategories\n ProductCategory tmp3 = null;\n String[][] productCategoriesMatrix = new String[productCategories.size()][2];\n\n for(int i=0; i<productCategories.size(); i++){\n\n tmp3 = (ProductCategory)productCategories.get(i);\n\n productCategoriesMatrix[i][0] = Integer.toString(tmp3.getPCID());\n productCategoriesMatrix[i][1] = tmp3.getName();\n \n }\n \n session.setAttribute(\"productCategories\", productCategoriesMatrix);\n \n }", "public void actionPerformed(ActionEvent e)\n\t\t\t{\n try \n\t\t\t\t{\n\t\t\t\tString sql1=\"insert into ComplaintsData values(?,?,?,?,?,?,?,?)\";\t\n\t\t\t\tcon=DriverManager.getConnection(\"jdbc:mysql://localhost:3306/MundheElectronics1\",\"root\",\"vishakha\");\n\t\t\t\tps=con.prepareStatement(sql1);\n\t\t\t\tps.setString(1,txtCustomerName.getText());\n\t\t//\t\tSystem.out.println(txtCustomerName.getText());\n\t\t\t\tps.setString(2,txtAddress.getText());\n\t\t//\t\tSystem.out.println(Address.getText());\n\t\t\t\tps.setString(3,txtContact.getText());\n\t\t//\t\tSystem.out.println(txtContact.getText());\n\t\t\t\tps.setString(4,txtProduct.getText());\n\t\t//\t\tSystem.out.println(txtProduct.getText());\n\t\t\t\tps.setString(5,txtSerialNo.getText());\n\t\t//\t\tSystem.out.println(txtSerialNo.getText());\n\t\t\t\tps.setString(6,txtModuleNo.getText());\n\t\t//\t\tSystem.out.println(txtModuleNo.getText());\n\t\t\t\tps.setString(7,txtComplaintNo.getText());\n\t\t\t\tString Category=(String) CategorycomboBox.getSelectedItem();\n\t\t//\t\tSystem.out.println(Category);\n\t\t\t\tps.setString(8,Category);\n\t\t\t\tps.executeUpdate();\n\t\t\t\tclear();\n\t\t\t\t\n\t\t\t\t}\n\t\t\t\tcatch(Exception e1) \n\t\t\t\t{\n\t\t\t\t\tJOptionPane.showMessageDialog(null,e1);\t\n\t\t\t\t}\n\t\n\t\t\t\tshowData();\n\t\t\t}", "public void addButtonClicked(View view) {\n\n Products product = new Products(johnsInput.getText().toString());\n\n dbHandler.addProduct(product);\n printDatabase();\n }", "private void add()\n {\n //\"Product ID\",\"Name\",\"Price\",\"Colour\",\"RawMaterial\",\"Brand\",\"Type\",\"Quality\",\"Quantity\"\n String paintId,name,colour,rawMaterial,brand,type,quality;\n int quantity,price;\n \n if(tfPaintId.getText().isEmpty())\n {\n JOptionPane.showMessageDialog(rootPane,\"Please! Enter the Paint ID\");\n }\n else if(tfName.getText().isEmpty())\n {\n JOptionPane.showMessageDialog(rootPane,\"Please! Enter the Product name\");\n }\n else if(rwCombo.getSelectedItem().toString().equals(\"Select\"))\n {\n JOptionPane.showMessageDialog(rootPane,\"Please! Select the raw materials used\");\n }\n else if(bCombo.getSelectedItem().toString().equals(\"Select\"))\n {\n JOptionPane.showMessageDialog(rootPane,\"Please! select the brand you want\");\n }\n else if(tfPrice.getText().isEmpty())\n {\n JOptionPane.showMessageDialog(rootPane,\"Please! Enter the price\");\n }\n else if(tfColor.getText().isEmpty())\n {\n JOptionPane.showMessageDialog(rootPane,\"Please! Enter the colour\");\n }\n else if(typeCombo.getSelectedItem().toString().equals(\"Select\"))\n {\n JOptionPane.showMessageDialog(rootPane,\"Select something from paint type\");\n }\n else if(getQuality()==null) \n {\n JOptionPane.showMessageDialog(rootPane,\"Quality is not selected\");\n }\n else if(tfQuantity.getText().isEmpty())\n {\n JOptionPane.showMessageDialog(rootPane,\"Please! Enter the quantity\");\n }\n else\n {\n try\n {\n paintId = tfPaintId.getText();\n name=tfName.getText();\n price=Integer.valueOf(tfPrice.getText());\n colour=tfColor.getText();\n rawMaterial=rwCombo.getSelectedItem().toString();\n brand=bCombo.getSelectedItem().toString();\n type=typeCombo.getSelectedItem().toString();\n quality=getQuality();\n quantity=Integer.valueOf(tfQuantity.getText());\n boolean exist=false;\n for (int i=0; i<toCount(); i++) \n { \n if(jtModel.getValueAt(i,0).equals(paintId))\n {\n exist = true;\n break;\n }\n else\n {\n }\n } \n if(!exist)\n {\n jtModel.addRow(new Object[]{paintId,name,price,colour,rawMaterial,brand,type,quality,quantity});\n JOptionPane.showMessageDialog(rootPane,\"Paint detail successfully added\");\n toClear();\n }\n else\n {\n JOptionPane.showMessageDialog(rootPane,\"Paint ID should be unique.\");\n }\n \n }\n catch(NumberFormatException ex)\n {\n JOptionPane.showMessageDialog(rootPane, \"Expected Integer but entered other character at price or quantity.\");\n }\n }\n }", "public addproduct() {\n\t\tsuper();\n\t}", "public void actionPerformed(ActionEvent e){\n\t\t\t\tif(codeJTextField.getText().trim().equals(\"\") || codeJTextField.getText().trim().matches(\".*\\\\D.*\")){\n\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Product code must be a number\");\n\t\t\t\t}\n\t\t\t\telse if(retailJTextField.getText().trim().equals(\"\") || retailJTextField.getText().trim().matches(\".*\\\\D.*\")){\n\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Retail price must be a number\");\n\t\t\t\t}\n\t\t\t\telse if(costJTextField.getText().trim().equals(\"\") || costJTextField.getText().trim().matches(\".*\\\\D.*\")){\n\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Cost price must be a number\");\n\t\t\t\t}\n\t\t\t\telse if(tStockJTextField.getText().trim().equals(\"\") || tStockJTextField.getText().trim().matches(\".*\\\\D.*\")){\n\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Current stock must be a number\");\n\t\t\t\t}\n\t\t\t\telse if(maxJTextField.getText().trim().equals(\"\") || maxJTextField.getText().trim().matches(\".*\\\\D.*\")){\n\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Maximum stock must be a number\");\n\t\t\t\t}\n\t\t\t\telse if(minJTextField.getText().trim().equals(\"\") || minJTextField.getText().trim().matches(\".*\\\\D.*\")){\n\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Minimum stock must be a number\");\n\t\t\t\t}\n\t\t\t\telse{ \n\t\t\t\t\ttry{\n\t\t\t\t\t\tif(suppliers.size() >= 1 ){\n\t\t\t\t\t\t\tfor(Supplier supplier: suppliers){\n\t\t\t\t\t\t\t\tif(supplier.getId() == Integer.parseInt(prodSupplierIdJTextField.getText())){\n\t\t\t\t\t\t\t\t\t\tProduct product = new Product(titleJTextField.getText(),authorJTextField.getText().toLowerCase(),\n\t\t\t\t\t\t\t\t\t\t\t\tcodeJTextField.getText(),Double.parseDouble(retailJTextField.getText()),\n\t\t\t\t\t\t\t\t\t\t\t\tDouble.parseDouble(costJTextField.getText()), Integer.parseInt(tStockJTextField.getText()),\n\t\t\t\t\t\t\t\t\t\t\t\tInteger.parseInt(maxJTextField.getText()), Integer.parseInt(minJTextField.getText()),supplier\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\tproducts.add(product);\n\t\t\t\t\t\t\t\t\t\tJOptionPane.showMessageDialog(null, \"New Product Added\");\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tlistOfProdIds.addElement(codeJTextField.getText());\n\t\t\t\t\t\t\t\t\t\tlistOfProductAuthor.addElement(authorJTextField.getText());\n\t\t\t\t\t\t\t\t\t\tlistofProductTitle.addElement(titleJTextField.getText());\n\t\t\t\t\t\t\t\t\t\tCollections.sort(existingProductAuthor, String.CASE_INSENSITIVE_ORDER); // Sort Each list after adding to new element.\n\t\t\t\t\t\t\t\t\t\tCollections.sort(existingProductTitle, String.CASE_INSENSITIVE_ORDER);\n\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t}else{\n\t\t\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Suppliers List is Empty\");\n\t\t\t\t\t\t}\n\t\t\t\t\t}catch(NumberFormatException nfe){\n\t\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Please Complete All Fields\");\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\ttitleJTextField.setText(\"\");\n\t\t\t\t\tprodSupplierIdJTextField.setText(\"\");\n\t\t\t\t\tauthorJTextField.setText(\"\");\n\t\t\t\t\tcodeJTextField.setText(\"\");\n\t\t\t\t\tretailJTextField.setText(\"\");\n\t\t\t\t\tcostJTextField.setText(\"\");\n\t\t\t\t\ttStockJTextField.setText(\"\");\n\t\t\t\t\tmaxJTextField.setText(\"\");\n\t\t\t\t\tminJTextField.setText(\"\");\n\n\t\t\t\t}\n\t\t\t}", "public Prof_Report() {\r\n initComponents();\r\n }", "@FXML\r\n private void addProduct(ActionEvent event) {\r\n ParameterController parameterController = new ParameterController();\r\n Product product = cb_Product.getValue();\r\n Category category = cb_Category.getValue();\r\n\r\n try {\r\n if (tf_Amount.getText().isEmpty() || Double.parseDouble(tf_Amount.getText().replace(',', '.')) <= 0) {\r\n Alert alert = new Alert(Alert.AlertType.ERROR, \"Bitte geben Sie zum Erstellen eine gültige Zahl ein, die größer als 0 ist.\");\r\n alert.getDialogPane().getChildren().stream().filter(node -> node instanceof Label).forEach(node -> ((Label) node).setMinHeight(Region.USE_PREF_SIZE));\r\n alert.showAndWait();\r\n } else {\r\n Component component = new Component(product.getFullName(),\r\n product.getWidthProduct(),\r\n product.getHeightProduct(),\r\n product.getLengthProduct(),\r\n product.getPriceUnit() * Double.parseDouble(tf_Amount.getText().replace(',', '.')),\r\n Double.parseDouble(tf_Amount.getText().replace(',', '.')),\r\n category,\r\n product.getUnit(),\r\n product,\r\n ProjectViewController.getOpenedProject());\r\n\r\n component.setTailoringHours(parameterController.findParameterPByShortTerm(\"KZG\").getDefaultValue());\r\n component.setTailoringPricePerHour(parameterController.findParameterPByShortTerm(\"KPSZ\").getDefaultValue());\r\n component.setComponentType(\"Kubikmeter\");\r\n\r\n components.add(component);\r\n if (Long.compare(category.getId(), new CategoryController().findCategoryByShortTerm(\"KD\").getId()) == 0) {\r\n setChanged();\r\n notifyObservers();\r\n }\r\n ModifyController.getInstance().setProject_constructionmaterialList(Boolean.TRUE);\r\n }\r\n } catch (NumberFormatException ex) {\r\n Alert alert = new Alert(Alert.AlertType.ERROR, \"Die Anzahl darf nur Zahlen enthalten\");\r\n alert.getDialogPane().getChildren().stream().filter(node -> node instanceof Label).forEach(node -> ((Label) node).setMinHeight(Region.USE_PREF_SIZE));\r\n alert.showAndWait();\r\n }\r\n\r\n refreshTable();\r\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jLabel3 = new javax.swing.JLabel();\n viewDateAtual = new javax.swing.JLabel();\n jLabel5 = new javax.swing.JLabel();\n jTextField1 = new javax.swing.JTextField();\n jLabel15 = new javax.swing.JLabel();\n jTextField7 = new javax.swing.JTextField();\n jButton1 = new javax.swing.JButton();\n jButton2 = new javax.swing.JButton();\n jButton3 = new javax.swing.JButton();\n jLabel17 = new javax.swing.JLabel();\n jScrollPane1 = new javax.swing.JScrollPane();\n tabProdVen = new javax.swing.JTable();\n addProd = new javax.swing.JButton();\n jButton4 = new javax.swing.JButton();\n bPesquisa = new javax.swing.JButton();\n jLabel1 = new javax.swing.JLabel();\n jComboBox2 = new javax.swing.JComboBox<>();\n\n setClosable(true);\n setForeground(java.awt.Color.black);\n setIconifiable(true);\n setMaximizable(true);\n setResizable(true);\n setTitle(\"Venda\");\n\n jLabel3.setText(\"Data:\");\n\n jLabel5.setText(\"Cliente:\");\n\n jTextField1.setText(\"Nome do cliente\");\n jTextField1.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jTextField1ActionPerformed(evt);\n }\n });\n\n jLabel15.setText(\"Valor Total:\");\n\n jTextField7.setText(\"R$:\");\n\n jButton1.setText(\"Salvar\");\n\n jButton2.setText(\"Limpar\");\n\n jButton3.setText(\"Cancelar\");\n\n jLabel17.setText(\"VENDA\");\n\n tabProdVen.setModel(new javax.swing.table.DefaultTableModel(\n new Object [][] {\n\n },\n new String [] {\n \"Produto\", \"Quantidade\", \"Unidade\", \"Valor\"\n }\n ));\n tabProdVen.setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));\n jScrollPane1.setViewportView(tabProdVen);\n\n jButton4.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jButton4ActionPerformed(evt);\n }\n });\n\n bPesquisa.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n bPesquisaActionPerformed(evt);\n }\n });\n\n jLabel1.setText(\"Forma de pagamento:\");\n\n jComboBox2.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { \"Dinheiro\", \"Crédito\", \"Débito\", \"Cheque\" }));\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addComponent(jButton1)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jButton2)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jButton3))\n .addGroup(layout.createSequentialGroup()\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jLabel3)\n .addComponent(jLabel5))\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGap(72, 72, 72)\n .addComponent(viewDateAtual, javax.swing.GroupLayout.PREFERRED_SIZE, 155, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGroup(layout.createSequentialGroup()\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 314, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(bPesquisa, javax.swing.GroupLayout.PREFERRED_SIZE, 22, javax.swing.GroupLayout.PREFERRED_SIZE)))))\n .addGap(0, 0, Short.MAX_VALUE))\n .addGroup(layout.createSequentialGroup()\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 389, Short.MAX_VALUE)\n .addGroup(layout.createSequentialGroup()\n .addComponent(jLabel1)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jComboBox2, 0, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jLabel15)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jTextField7, javax.swing.GroupLayout.PREFERRED_SIZE, 75, javax.swing.GroupLayout.PREFERRED_SIZE)))\n .addContainerGap())))\n .addGroup(layout.createSequentialGroup()\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGap(176, 176, 176)\n .addComponent(jLabel17))\n .addGroup(layout.createSequentialGroup()\n .addContainerGap()\n .addComponent(addProd, javax.swing.GroupLayout.PREFERRED_SIZE, 22, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jButton4, javax.swing.GroupLayout.PREFERRED_SIZE, 22, javax.swing.GroupLayout.PREFERRED_SIZE)))\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()\n .addContainerGap()\n .addComponent(jLabel17, javax.swing.GroupLayout.PREFERRED_SIZE, 16, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(18, 18, 18)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(jLabel3, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(viewDateAtual, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel5))\n .addComponent(bPesquisa, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addGap(18, 18, 18)\n .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 159, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(jButton4, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(addProd))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 27, Short.MAX_VALUE)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel15)\n .addComponent(jTextField7, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel1)\n .addComponent(jComboBox2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(42, 42, 42)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jButton2, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jButton3, javax.swing.GroupLayout.PREFERRED_SIZE, 18, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(23, 23, 23))\n );\n\n pack();\n }", "@RequestMapping(value = {\"/add_product\"}, method = RequestMethod.POST)\n public String createProduct(Model model, HttpServletRequest request) {\n boolean isSuccess = addProductByRest(request);\n if (isSuccess) {\n ProductController controller = new ProductController();\n List<Product> productList = controller.getProductList(request, \"products\");\n model.addAttribute(\"products\", productList);\n return \"product_list\";\n } else {\n return \"product_detail_new\";\n }\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n panelForm = new javax.swing.JPanel();\n labelProduct_ID = new javax.swing.JLabel();\n txtProduct_ID = new javax.swing.JTextField();\n txtProduct_Name = new javax.swing.JTextField();\n labelProduct_Name = new javax.swing.JLabel();\n txtProduct_Stock = new javax.swing.JTextField();\n labelProduct_Stock = new javax.swing.JLabel();\n panelTabel = new javax.swing.JPanel();\n jScrollPane1 = new javax.swing.JScrollPane();\n tblProduct = new javax.swing.JTable();\n labelTabel = new javax.swing.JLabel();\n btnSimpan = new javax.swing.JButton();\n btnKeluar = new javax.swing.JButton();\n jPanel2 = new javax.swing.JPanel();\n jLabel5 = new javax.swing.JLabel();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n\n panelForm.setBackground(new java.awt.Color(145, 207, 84));\n\n labelProduct_ID.setText(\"Product ID :\");\n\n txtProduct_ID.setBackground(new java.awt.Color(237, 213, 39));\n txtProduct_ID.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n txtProduct_IDActionPerformed(evt);\n }\n });\n\n txtProduct_Name.setBackground(new java.awt.Color(237, 213, 39));\n txtProduct_Name.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n txtProduct_NameActionPerformed(evt);\n }\n });\n\n labelProduct_Name.setText(\"Nama Product :\");\n\n txtProduct_Stock.setBackground(new java.awt.Color(237, 213, 39));\n txtProduct_Stock.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n txtProduct_StockActionPerformed(evt);\n }\n });\n\n labelProduct_Stock.setText(\"Stock :\");\n\n javax.swing.GroupLayout panelFormLayout = new javax.swing.GroupLayout(panelForm);\n panelForm.setLayout(panelFormLayout);\n panelFormLayout.setHorizontalGroup(\n panelFormLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(panelFormLayout.createSequentialGroup()\n .addGap(61, 61, 61)\n .addGroup(panelFormLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(panelFormLayout.createSequentialGroup()\n .addComponent(labelProduct_ID)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)\n .addComponent(txtProduct_ID, javax.swing.GroupLayout.PREFERRED_SIZE, 124, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGroup(panelFormLayout.createSequentialGroup()\n .addComponent(labelProduct_Name)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)\n .addComponent(txtProduct_Name, javax.swing.GroupLayout.PREFERRED_SIZE, 182, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGroup(panelFormLayout.createSequentialGroup()\n .addComponent(labelProduct_Stock)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)\n .addComponent(txtProduct_Stock, javax.swing.GroupLayout.PREFERRED_SIZE, 373, javax.swing.GroupLayout.PREFERRED_SIZE)))\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n );\n panelFormLayout.setVerticalGroup(\n panelFormLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(panelFormLayout.createSequentialGroup()\n .addContainerGap()\n .addGroup(panelFormLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(labelProduct_ID)\n .addComponent(txtProduct_ID, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(panelFormLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(labelProduct_Name)\n .addComponent(txtProduct_Name, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(panelFormLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(labelProduct_Stock)\n .addComponent(txtProduct_Stock, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n );\n\n tblProduct.setModel(new javax.swing.table.DefaultTableModel(\n new Object [][] {\n {null, null, null},\n {null, null, null},\n {null, null, null},\n {null, null, null},\n {null, null, null}\n },\n new String [] {\n \"Product ID\", \"Nama Product\", \"Stock\"\n }\n ) {\n Class[] types = new Class [] {\n java.lang.Integer.class, java.lang.String.class, java.lang.Integer.class\n };\n boolean[] canEdit = new boolean [] {\n false, false, false\n };\n\n public Class getColumnClass(int columnIndex) {\n return types [columnIndex];\n }\n\n public boolean isCellEditable(int rowIndex, int columnIndex) {\n return canEdit [columnIndex];\n }\n });\n jScrollPane1.setViewportView(tblProduct);\n if (tblProduct.getColumnModel().getColumnCount() > 0) {\n tblProduct.getColumnModel().getColumn(0).setResizable(false);\n tblProduct.getColumnModel().getColumn(1).setResizable(false);\n tblProduct.getColumnModel().getColumn(2).setResizable(false);\n }\n\n labelTabel.setFont(new java.awt.Font(\"Tahoma\", 1, 16)); // NOI18N\n labelTabel.setText(\"Tabel Product\");\n\n btnSimpan.setText(\"Simpan\");\n btnSimpan.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnSimpanActionPerformed(evt);\n }\n });\n\n btnKeluar.setText(\"Keluar\");\n btnKeluar.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnKeluarActionPerformed(evt);\n }\n });\n\n javax.swing.GroupLayout panelTabelLayout = new javax.swing.GroupLayout(panelTabel);\n panelTabel.setLayout(panelTabelLayout);\n panelTabelLayout.setHorizontalGroup(\n panelTabelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(panelTabelLayout.createSequentialGroup()\n .addGap(178, 178, 178)\n .addGroup(panelTabelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(panelTabelLayout.createSequentialGroup()\n .addComponent(labelTabel)\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addGroup(panelTabelLayout.createSequentialGroup()\n .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 624, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 56, Short.MAX_VALUE)\n .addGroup(panelTabelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(btnSimpan, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(btnKeluar, javax.swing.GroupLayout.PREFERRED_SIZE, 85, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(27, 27, 27))))\n );\n panelTabelLayout.setVerticalGroup(\n panelTabelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, panelTabelLayout.createSequentialGroup()\n .addContainerGap()\n .addComponent(labelTabel)\n .addGroup(panelTabelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(panelTabelLayout.createSequentialGroup()\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 152, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGroup(panelTabelLayout.createSequentialGroup()\n .addGap(48, 48, 48)\n .addComponent(btnSimpan)\n .addGap(18, 18, 18)\n .addComponent(btnKeluar)))\n .addContainerGap(66, Short.MAX_VALUE))\n );\n\n jPanel2.setBackground(new java.awt.Color(255, 255, 255));\n jPanel2.setForeground(new java.awt.Color(255, 255, 255));\n\n jLabel5.setFont(new java.awt.Font(\"Tahoma\", 1, 36)); // NOI18N\n jLabel5.setText(\"Product\");\n\n javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);\n jPanel2.setLayout(jPanel2Layout);\n jPanel2Layout.setHorizontalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addGap(416, 416, 416)\n .addComponent(jLabel5)\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n );\n jPanel2Layout.setVerticalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel2Layout.createSequentialGroup()\n .addContainerGap(45, Short.MAX_VALUE)\n .addComponent(jLabel5)\n .addGap(35, 35, 35))\n );\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)\n .addComponent(panelTabel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(panelForm, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addContainerGap())\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(3, 3, 3)\n .addComponent(panelForm, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(panelTabel, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n );\n\n pack();\n }", "public void actionPerformed(ActionEvent e) {\n\t\t\t\tif(productBySearch.size() > 0){\r\n\t\t\t\t\tproductBySearch.clear();\r\n\t\t\t\t}\r\n\t\t\t\tif(productByLike == null){\r\n\t\t\t\t\t\r\n\t\t\t\t}\r\n\t\t\t\telse if(productByLike.size() > 0){\r\n\t\t\t\t\tpreviousValue.clear();\r\n\t\t\t\t}\r\n\t\t\t\tif(previousValue.size() > 0){\r\n\t\t\t\t\tpreviousValue.clear();\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\ttempProductSearch = new Product();\r\n\t\t\t\tsubtotal_textField.setText(\"Subtotal: $0.0\");\r\n\t\t\t\ttax_textField.setText(\"Tax: $0.0\");\r\n\t\t\t\ttotal_textField.setText(\"Total: $0.0\");\r\n\t\t\t\t\r\n\t\t\t\ttextField_productID_input.setText(\"\");\r\n\t\t\t\ttextField_name_input.setText(\"\");\r\n\t\t\t\ttextField_description_input.setText(\"\");\r\n\t\t\t\ttextField_quantity_input.setText(\"\");\r\n\t\t\t\ttextPane_productID_notFound.setText(\"\");\r\n\t\t\t\t\r\n\t\t\t\t//Table\r\n\t\t\t\t//private JTable table;\r\n\t\t\t\tremoveTableRows(model); //Clears table rows, model.\r\n\t\t\t\t\r\n\t\t\t\tif(data.size() > 0){\r\n\t\t\t\t\tdata.clear();\r\n\t\t\t\t}\r\n\t\t\t\ttableListenerCount = 0;\r\n\t\t\t\t\r\n\t\t\t\t//Sales Total\r\n\t\t\t\tsubTotal = 0;\r\n\t\t\t\ttax = 0;\r\n\t\t\t\ttotal = 0;\r\n\t\t\t\tc = 0;\r\n\t\t\t\tstringTempPrice = null;\r\n\t\t\t\ttransactionType = null;\r\n\t\t\t\ttransactionMethod = null;\r\n\t\t\t\tpromotionID = 0;\r\n\t\t\t\t\r\n\t\t\t\t//Discount\r\n\t\t\t\tdetail_discountID = 0;\r\n\t\t\t\tdetail_discountType = null;\r\n\t\t\t\toneTimeDiscountCheck = false;\r\n\t\t\t\t//discount_option.setText(\"\");\r\n\t\t\t\tdetail_discountValue = 0;\r\n\t\t\t\t\r\n\t\t\t\t//Discount buttons\r\n\t\t\t\tbutton_discount.setVisible(true);\r\n\t\t\t\tbtnDiscountDetails.setVisible(false);\r\n\t\t\t\t\r\n\t\t\t\ttextField_productID_input.requestFocusInWindow();\r\n\t\t\t}", "public CrearGrupos() throws SQLException {\n initComponents();\n setTitle(\"Crear Grupos\");\n setSize(643, 450);\n setLocationRelativeTo(this);\n cargarModelo();\n }", "public static boolean insert_prod(String ProdName, String catg,int cost,String owner,String Description) {\n\n String sql = \"INSERT INTO Product(ProdName,Category,Cost,Owner,Description,PackageID,Status) VALUES(?,?,?,?,?,?,?)\";\n try (\n PreparedStatement pstmt = conn.prepareStatement(sql)){\n pstmt.setString(1, ProdName);\n pstmt.setString(2, catg);\n pstmt.setInt(3, cost);\n pstmt.setString(4, owner);\n pstmt.setString(5, Description);\n pstmt.setString(6,\"\");\n pstmt.setString(7,\"0\");\n pstmt.executeUpdate();\n return true;\n } catch (SQLException e) {\n System.out.println(e.getMessage());\n }\n return false;\n }", "private void butNew_Click(Object sender, System.EventArgs e) throws Exception {\n FormProcCodeNew FormPCN = new FormProcCodeNew();\n FormPCN.ShowDialog();\n if (FormPCN.Changed)\n {\n changed = true;\n ProcedureCodes.refreshCache();\n fillGrid();\n }\n \n }", "@Override\n\tpublic void createForm(ERForm form) {\n\t\t\tString sql = \"insert into project1.reimbursementInfo (userName, fullName, thedate, eventstartdate, thelocation, description, thecost, gradingformat, passingpercentage, eventtype, filename,status,reason) values (?,?,?,?,?,?,?,?,?,?,?,?,?);\";\n\t\t\ttry {PreparedStatement stmt = conn.prepareCall(sql);\n\t\t\t//RID should auto increment, so this isnt necessary\n\t\t\t\n\t\t\tstmt.setString(1, form.getUserName());\n\t\t\tstmt.setString(2, form.getFullName());\n\t\t\tstmt.setDate(3, Date.valueOf(form.getTheDate()));\n\t\t\tstmt.setDate(4, Date.valueOf(form.getEventStartDate()));\n\t\t\tstmt.setString(5, form.getTheLocation());\n\t\t\tstmt.setString(6, form.getDescription());\n\t\t\tstmt.setDouble(7, form.getTheCost());\n\t\t\tstmt.setString(8, form.getGradingFormat());\n\t\t\tstmt.setString(9, form.getPassingPercentage());\n\t\t\tstmt.setString(10, form.getEventType());\n\t\t\tstmt.setString(11, form.getFileName());\n\t\t\tstmt.setString(12, \"pending\");\n\t\t\tstmt.setString(13, \"\");\n\t\t\tstmt.executeUpdate();\n\t\t\t\n\t\t} catch (SQLException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "public New_Product() throws SQLException {\n initComponents();\n this.setLocationRelativeTo(null);\n setIconImage (new ImageIcon(getClass().getResource(\"../img/icono_app.png\")).getImage());\n \n con.AbrirConexion(); //ABRIR LA CONEXIÓN\n \n /**\n * Llamada al método combobox provider\n */\n \n String query = \"SELECT * FROM Providers\";\n ResultSet r;\n Statement s = con.getCon().createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);\n r = s.executeQuery(query);\n \n DefaultComboBoxModel value = new DefaultComboBoxModel();\n while (r.next()) {\n value.addElement(r.getString(\"Name\"));\n }\n \n ComboBox_provider.setModel(value);\n \n /**\n * Llamada al método combobox category 2\n */\n \n String query2 = \"SELECT * FROM Categories\";\n ResultSet r2;\n Statement s2 = con.getCon().createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);\n r2 = s2.executeQuery(query2);\n \n DefaultComboBoxModel value2 = new DefaultComboBoxModel();\n while (r2.next()) {\n value2.addElement(r2.getString(\"Name\"));\n }\n \n ComboBox_category.setModel(value2);\n \n /**\n * Llamada al método combobox trademark 3\n */\n \n String query3 = \"SELECT * FROM Trademarks\";\n ResultSet r3;\n Statement s3 = con.getCon().createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);\n r3 = s3.executeQuery(query3);\n \n DefaultComboBoxModel value3 = new DefaultComboBoxModel();\n while (r3.next()) {\n value3.addElement(r3.getString(\"Name\"));\n }\n \n ComboBox_trademark.setModel(value3);\n \n /**\n * Llamada al método combobox sizes 4\n */\n \n String query4 = \"SELECT * FROM Sizes\";\n ResultSet r4;\n Statement s4 = con.getCon().createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);\n r4 = s4.executeQuery(query4);\n \n DefaultComboBoxModel value4 = new DefaultComboBoxModel();\n while (r4.next()) {\n value4.addElement(r4.getString(\"Name\"));\n }\n \n ComboBox_size.setModel(value4);\n \n /**\n * Llamada al método combobox colors 5\n */\n \n String query5 = \"SELECT * FROM Colors\";\n ResultSet r5;\n Statement s5 = con.getCon().createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);\n r5 = s5.executeQuery(query5);\n \n DefaultComboBoxModel value5 = new DefaultComboBoxModel();\n while (r5.next()) {\n value5.addElement(r5.getString(\"Name\"));\n }\n \n ComboBox_color.setModel(value5);\n \n /**\n * Llamada al método combobox material 6\n */\n \n String query6 = \"SELECT * FROM Materials\";\n ResultSet r6;\n Statement s6 = con.getCon().createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);\n r6 = s6.executeQuery(query6);\n \n DefaultComboBoxModel value6 = new DefaultComboBoxModel();\n while (r6.next()) {\n value6.addElement(r6.getString(\"Name\"));\n }\n \n ComboBox_material.setModel(value6);\n \n }", "public CrearProductos() {\n initComponents();\n }", "public static Result newForm() {\n return ok(newForm.render(palletForm, setOfArticleForm));\n }", "public JDialogParticleAnalysisNew() { }", "public void insertProblema() {\n \n \n java.util.Date d = new java.util.Date();\n java.sql.Date fecha = new java.sql.Date(d.getTime());\n \n this.equipo.setEstado(true);\n this.prob = new ReporteProblema(equipo, this.problema, true,fecha);\n f.registrarReporte(this.prob);\n \n }", "public void btnAddClicked(View view){\n List list = new List(input.getText().toString());\n dbHandler.addProduct(list);\n printDatabase();\n }", "public void put_The_Details_Of_Store_One_On_GUI()\n\t{\n\t\t/* The Expected ArrayList<Object> --->\n\t\t * Index 0 = First Store ID \n\t\t * Index 1 = Quarter Report - First Store \n\t\t * Index 2 = Quantity Of Order - First Store\n\t\t * Index 3 = Type Of Product In Order - First Store\n\t\t * Index 4 = Quantity Of Each Product Type In Order - First Store\n\t\t * Index 5 = The Revenue Of Store - First Store\n\t\t * Index 6 = The Number Of Complaint - First Store\n\t\t * Index 7 = Number Of Client That Fill Survey - First Store\n\t\t * Index 8 = Total Average Of Survey Answer - First Store \n\t\t * */\n\t\t\n\t\tthis.txtStoreID_1.setText(String.valueOf(CompanyManagerUI.Object_From_Comparing_For_Store_1.get(0)));\n\t\tthis.txtNumOfQuarter_1.setText(String.valueOf(CompanyManagerUI.Object_From_Comparing_For_Store_1.get(1)));\n\t\tthis.txtQuantityOfOrder_1.setText(String.valueOf(CompanyManagerUI.Object_From_Comparing_For_Store_1.get(2)));\n\t\tset_List_Of_Product_Type_Of_Store_One();\n\t\tthis.txtRevenuOfStore_1.setText(String.valueOf(CompanyManagerUI.Object_From_Comparing_For_Store_1.get(5)));\n\t\tthis.txtNumberOfComplaint_1.setText(String.valueOf(CompanyManagerUI.Object_From_Comparing_For_Store_1.get(6)));\n\t\tthis.txtNumberOfClientInSurvey_1.setText(String.valueOf(CompanyManagerUI.Object_From_Comparing_For_Store_1.get(7)));\n\t\t\n\t\tdouble Total_Avearge = Double.parseDouble(new DecimalFormat(\"##.###\").format(CompanyManagerUI.Object_From_Comparing_For_Store_1.get(8)));\n\t\tthis.txtTotalAverageInSurvey_1.setText(String.valueOf(Total_Avearge));\n\t}", "public void actionPerformed(ActionEvent e) {\n\t\t\t\n\t\t\tString name=\"\";\n\t\t\tname=view.getNameTF().getText();\n\t\t\tString price=\"\";\n\t\t\tprice=view.getPriceTF().getText();\n\t\t\t\n\t\t\ttry\n\t\t\t{\n\t\t\t\tif(name.equals(\"\") ||price.equals(\"\"))\n\t\t\t\t{\n\t\t\t\t\tthrow new BadInput(\"Nu au fost completate toate casutele pentru a se putea realiza CREATE!\");\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tdouble p=Double.parseDouble(price);\n\t\t\t\t\n\t\t\t\tMenuItem nou=new BaseProduct(name,p);\n\t\t\t\t\n\t\t\t\trestaurant.createMenuItem(nou);\n\t\t\t\tview.updateList(name);\n\t\t\t\t\n\t\t\t}catch(NumberFormatException ex)\n\t\t\t{\n\t\t\t\tview.showError(\"Nu s-a introdus o valoare valida pentru pret!\");\n\t\t\t}\n\t\t\tcatch(BadInput ex)\n\t\t\t{\n\t\t\t\tview.showError(ex.getMessage());\n\t\t\t}\n\t\t\tcatch(AssertionError er)\n\t\t\t{\n\t\t\t\tview.showError(\"Nu se poate adauga produsul deoarece acesta EXISTA deja!!!\");\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t}", "ch.crif_online.www.webservices.crifsoapservice.v1_00.ScoreAnalysis addNewScoreAnalysis();", "public Inventory(String kodeWh,String kodeProd,double hargaProd,int jumlahProd){\n this.kodeWh=kodeWh;\n this.kodeProd=kodeProd;\n this.hargaProd=hargaProd;\n this.jumlahProd=jumlahProd;\n }", "public Product() { \n initComponents();\n table();\n \n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jPanel1 = new javax.swing.JPanel();\n jScrollPane1 = new javax.swing.JScrollPane();\n table = new javax.swing.JTable();\n chartPanel = new javax.swing.JPanel();\n returnMaintenanceButton = new javax.swing.JButton();\n categoryTextField = new javax.swing.JTextField();\n batchTextField = new javax.swing.JTextField();\n userTextField = new javax.swing.JTextField();\n jLabel1 = new javax.swing.JLabel();\n jLabel3 = new javax.swing.JLabel();\n jLabel2 = new javax.swing.JLabel();\n jLabel4 = new javax.swing.JLabel();\n jLabel5 = new javax.swing.JLabel();\n jLabel6 = new javax.swing.JLabel();\n jXDatePicker1 = new org.jdesktop.swingx.JXDatePicker();\n jXDatePicker2 = new org.jdesktop.swingx.JXDatePicker();\n jLabel7 = new javax.swing.JLabel();\n jLabel8 = new javax.swing.JLabel();\n searchButton = new javax.swing.JButton();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n setTitle(\"Historial de productos\");\n\n jPanel1.setBackground(new java.awt.Color(153, 204, 153));\n jPanel1.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());\n\n table.setFont(new java.awt.Font(\"Arial\", 0, 12)); // NOI18N\n table.setModel(new javax.swing.table.DefaultTableModel(\n new Object [][] {\n {null, null, null, null, null},\n {null, null, null, null, null},\n {null, null, null, null, null},\n {null, null, null, null, null}\n },\n new String [] {\n \"Producto\", \"Bodega\", \"Categoría\", \"Lote\", \"Operador\"\n }\n ) {\n boolean[] canEdit = new boolean [] {\n false, false, false, true, false\n };\n\n public boolean isCellEditable(int rowIndex, int columnIndex) {\n return canEdit [columnIndex];\n }\n });\n jScrollPane1.setViewportView(table);\n\n jPanel1.add(jScrollPane1, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 210, 521, 233));\n\n javax.swing.GroupLayout chartPanelLayout = new javax.swing.GroupLayout(chartPanel);\n chartPanel.setLayout(chartPanelLayout);\n chartPanelLayout.setHorizontalGroup(\n chartPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 460, Short.MAX_VALUE)\n );\n chartPanelLayout.setVerticalGroup(\n chartPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 374, Short.MAX_VALUE)\n );\n\n jPanel1.add(chartPanel, new org.netbeans.lib.awtextra.AbsoluteConstraints(633, 80, -1, -1));\n\n returnMaintenanceButton.setFont(new java.awt.Font(\"Arial\", 0, 12)); // NOI18N\n returnMaintenanceButton.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/icons/salir-con-boton-en-esquema.png\"))); // NOI18N\n returnMaintenanceButton.setText(\"Salir\");\n returnMaintenanceButton.setBorderPainted(false);\n returnMaintenanceButton.setContentAreaFilled(false);\n returnMaintenanceButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR));\n returnMaintenanceButton.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n returnMaintenanceButtonActionPerformed(evt);\n }\n });\n jPanel1.add(returnMaintenanceButton, new org.netbeans.lib.awtextra.AbsoluteConstraints(1220, 500, -1, -1));\n\n categoryTextField.addKeyListener(new java.awt.event.KeyAdapter() {\n public void keyTyped(java.awt.event.KeyEvent evt) {\n categoryTextFieldKeyTyped(evt);\n }\n });\n jPanel1.add(categoryTextField, new org.netbeans.lib.awtextra.AbsoluteConstraints(260, 180, 72, -1));\n\n batchTextField.addKeyListener(new java.awt.event.KeyAdapter() {\n public void keyTyped(java.awt.event.KeyEvent evt) {\n batchTextFieldKeyTyped(evt);\n }\n });\n jPanel1.add(batchTextField, new org.netbeans.lib.awtextra.AbsoluteConstraints(370, 180, 65, -1));\n\n userTextField.addKeyListener(new java.awt.event.KeyAdapter() {\n public void keyTyped(java.awt.event.KeyEvent evt) {\n userTextFieldKeyTyped(evt);\n }\n });\n jPanel1.add(userTextField, new org.netbeans.lib.awtextra.AbsoluteConstraints(470, 180, 78, -1));\n\n jLabel1.setFont(new java.awt.Font(\"Arial\", 0, 13)); // NOI18N\n jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);\n jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/icons/crecimiento.png\"))); // NOI18N\n jLabel1.setText(\"Historial de productos\");\n jPanel1.add(jLabel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(633, 37, 246, -1));\n\n jLabel3.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/icons/lupa-para-buscar.png\"))); // NOI18N\n jPanel1.add(jLabel3, new org.netbeans.lib.awtextra.AbsoluteConstraints(230, 180, -1, -1));\n\n jLabel2.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/icons/lupa-para-buscar.png\"))); // NOI18N\n jPanel1.add(jLabel2, new org.netbeans.lib.awtextra.AbsoluteConstraints(340, 180, -1, -1));\n\n jLabel4.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/icons/lupa-para-buscar.png\"))); // NOI18N\n jPanel1.add(jLabel4, new org.netbeans.lib.awtextra.AbsoluteConstraints(440, 180, -1, -1));\n\n jLabel5.setFont(new java.awt.Font(\"Arial\", 0, 13)); // NOI18N\n jLabel5.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/icons/tareas.png\"))); // NOI18N\n jLabel5.setText(\"Lista de productos entregados\");\n jPanel1.add(jLabel5, new org.netbeans.lib.awtextra.AbsoluteConstraints(194, 25, -1, -1));\n\n jLabel6.setFont(new java.awt.Font(\"Arial\", 0, 13)); // NOI18N\n jLabel6.setText(\"Rango de fechas\");\n jPanel1.add(jLabel6, new org.netbeans.lib.awtextra.AbsoluteConstraints(60, 60, -1, -1));\n jPanel1.add(jXDatePicker1, new org.netbeans.lib.awtextra.AbsoluteConstraints(60, 110, 140, -1));\n jPanel1.add(jXDatePicker2, new org.netbeans.lib.awtextra.AbsoluteConstraints(240, 110, 140, -1));\n\n jLabel7.setFont(new java.awt.Font(\"Arial\", 0, 12)); // NOI18N\n jLabel7.setText(\"De:\");\n jPanel1.add(jLabel7, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 110, -1, -1));\n\n jLabel8.setFont(new java.awt.Font(\"Arial\", 0, 12)); // NOI18N\n jLabel8.setText(\"a:\");\n jPanel1.add(jLabel8, new org.netbeans.lib.awtextra.AbsoluteConstraints(220, 110, -1, -1));\n\n searchButton.setFont(new java.awt.Font(\"Arial\", 0, 12)); // NOI18N\n searchButton.setIcon(new javax.swing.ImageIcon(getClass().getResource(\"/icons/lupa-para-buscar.png\"))); // NOI18N\n searchButton.setText(\"Buscar\");\n searchButton.setBorderPainted(false);\n searchButton.setContentAreaFilled(false);\n searchButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR));\n searchButton.addMouseListener(new java.awt.event.MouseAdapter() {\n public void mouseClicked(java.awt.event.MouseEvent evt) {\n searchButtonMouseClicked(evt);\n }\n });\n searchButton.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n searchButtonActionPerformed(evt);\n }\n });\n jPanel1.add(searchButton, new org.netbeans.lib.awtextra.AbsoluteConstraints(390, 110, -1, -1));\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, 1321, Short.MAX_VALUE)\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jPanel1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 554, Short.MAX_VALUE)\n );\n\n pack();\n }", "public void genNewRep() {\r\n\r\n /** can possibly delete conditional? or complete this to make a secondary safeguard against error **/\r\n if (tx_cb.getValue() == null || filter.getValue() == null || switchPatch.getValue() == null) {\r\n //conditional to tell if enough information was provide to construct a rf diagram/report\r\n return;\r\n } else{\r\n try {/** when genRep button is clicked, a event occurs and opens a new window, if unable to open, a error is caught **/\r\n\r\n /** get needed product ID's (PID) **/\r\n getSwPID();\r\n getFilterPID();\r\n getPaPID();\r\n getSwitchPID();\r\n\r\n /** get selected values to pass to new window **/\r\n selectedSWDescription = (String)mainExciterSW.getValue();\r\n selectedFilterDescription = (String)filter.getValue();\r\n selectedPADescription = (String)paModules.getValue();\r\n txSelection = (String)tx_cb.getValue();\r\n txSelectionCabinets = cabinets;\r\n if(auxAntFeed.getValue() == null)\r\n auxAntFeedSelection = \"No Aux Antenna\";\r\n else\r\n auxAntFeedSelection = (String)auxAntFeed.getValue();\r\n\r\n\r\n /** load a new scene **/\r\n FXMLLoader fxmlLoader = new FXMLLoader();\r\n fxmlLoader.setLocation(getClass().getResource(\"repStage.fxml\"));\r\n Scene scene = new Scene(fxmlLoader.load(), 1500, 1000);\r\n stage.setTitle(\"Generated report\");\r\n stage.setScene(scene);\r\n stage.setMaximized(true);\r\n stage.show();\r\n } catch (IOException e) {/** catch error opening window **/\r\n Logger logger = Logger.getLogger(getClass().getName());\r\n logger.log(Level.SEVERE, \"Failed to create generate report.\", e);\r\n }\r\n /** displays and opens new window when proper input is detected for all cases **/\r\n return;\r\n }\r\n }", "private void addProduct()\n {\n System.out.println(\"|➕| Add new Product:\\n\");\n System.out.println(\"|➕| Enter ID\\n\");\n int id = Integer.parseInt(reader.getInput());\n System.out.println(\"|➕| Enter Name\\n\");\n String name = reader.getInput();\n manager.addProduct(id, name);\n }", "@Override\n\tpublic Oglas createNewOglas(NewOglasForm oglasForm) {\n\t\tSimpleDateFormat formatter = new SimpleDateFormat(\"yyyy-MM-dd\");\n\t\t\n\t\tOglas oglas = new Oglas();\n\t\tSystem.out.println(oglas.getId());\n\t\toglas.setNaziv(oglasForm.getNaziv());\n\t\toglas.setOpis(oglasForm.getOpis());\n\t\ttry {\n\t\t\toglas.setDatum(formatter.parse(oglasForm.getDatum()));\n\t\t\tSystem.out.println(oglas.getDatum());\n System.out.println(formatter.format(oglas.getDatum()));\n\t\t} catch (ParseException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\treturn repository.save(oglas);\n\t}", "public void onNew() {\t\t\n\t\tdesignWidget.addNewForm();\n\t}", "public String productOpenNewSave() {\n\t\tactionStartTime = new Date();\n\t\ttry {\n\t\t\tpromotionProgramMgr.saveListPromotionProductOpen(promotionId, listProductOpen, getLogInfoVO());\n\t\t} catch (Exception e) {\n\t\t\tLogUtility.logErrorStandard(e, R.getResource(\"web.log.message.error\", \"vnm.web.action.program.PromotionCatalogAction.productOpenNewSave\"), createLogErrorStandard(actionStartTime));\n\t\t\tresult.put(\"errMsg\", ValidateUtil.getErrorMsg(ConstantManager.ERR_SYSTEM));\n\t\t\tresult.put(ERROR, true);\n\t\t}\n\t\treturn SUCCESS;\n\t}", "public JPStock() {\n initComponents();\n this.setSize(800, 600);\n actualizardatos();\n jsp = new JScrollPane();\n modelotabla = new StockTableModel(datostabla);\n tablastock = new JTable(modelotabla);\n tablesice();\n tablastock.setFillsViewportHeight(true);\n jsp.setViewportView(tablastock);\n jsp.repaint();\n this.jPanel1.add(jsp, BorderLayout.CENTER);\n for (int i = 0; i < datostabla.size(); i++) {\n System.out.println(datostabla.get(i));\n }\n }", "private void addOrUpdate() {\n try {\n Stokdigudang s = new Stokdigudang();\n if (!tableStok.getSelectionModel().isSelectionEmpty()) {\n s.setIDBarang(listStok.get(row).getIDBarang());\n }\n s.setNamaBarang(tfNama.getText());\n s.setHarga(new Integer(tfHarga.getText()));\n s.setStok((int) spJumlah.getValue());\n s.setBrand(tfBrand.getText());\n s.setIDKategori((Kategorimotor) cbKategori.getSelectedItem());\n s.setIDSupplier((Supplier) cbSupplier.getSelectedItem());\n s.setTanggalDidapat(dateChooser.getDate());\n\n daoStok.addOrUpdateStok(s);\n JOptionPane.showMessageDialog(this, \"Data berhasil disimpan!\");\n showAllDataStok();\n } catch (Exception e) {\n JOptionPane.showMessageDialog(this, \"Data gagal disimpan!\");\n }\n }", "public static AddNewScheduleDialog createInstance(int quantity){\n AddNewScheduleDialog frag = new AddNewScheduleDialog();\n frag.quantity = quantity;\n return frag;\n }", "private ProductDtl addProductDtl() {\r\n\t\tInputFormatter formatter = new InputFormatter();\r\n\t\tProductDtl dtl = new ProductDtl();\r\n\t\tUnitConversion unit = new UnitConversion();\r\n\t\tunit.setId(formatter.toInt(lstUnit.getValue(lstUnit.getSelectedIndex())));\r\n\t\tunit.setName(lstUnit.getItemText(lstUnit.getSelectedIndex()));\r\n\t\tdtl.setUnitConversion(unit);\r\n\t\tdtl.setSellingQty(formatter.toFloat(txtSellingQty.getText()));\r\n\t\tdtl.setPrice(formatter.toDouble(txtPrice.getText()));\r\n\t\tdtl.setQtyOnHand(formatter.toFloat(txtQtyOnHand.getText()));\r\n\t\tdtl.setSugPrice(formatter.toDouble(txtSugPrice.getText()));\r\n//\t\tdtlsForSubmit.add(dtl);\r\n\t\treturn dtl;\r\n\t\t\r\n\t}", "public void add(Vector<String> prod) {\n\tproductions.add(prod);\n }", "public void addButtonClicked(){\n Products products = new Products(buckysInput.getText().toString());\n dbHandler.addProduct(products);\n printDatabase();\n }", "private void createBtnActionPerformed(java.awt.event.ActionEvent evt) {\n\n staff.setName(regName.getText());\n staff.setID(regID.getText());\n staff.setPassword(regPwd.getText());\n staff.setPosition(regPos.getSelectedItem().toString());\n staff.setGender(regGender.getSelectedItem().toString());\n staff.setEmail(regEmail.getText());\n staff.setPhoneNo(regPhone.getText());\n staff.addStaff();\n if (staff.getPosition().equals(\"Vet\")) {\n Vet vet = new Vet();\n vet.setExpertise(regExp.getSelectedItem().toString());\n vet.setExpertise_2(regExp2.getSelectedItem().toString());\n vet.addExpertise(staff.getID());\n }\n JOptionPane.showMessageDialog(null, \"User added to database\");\n updateJTable();\n }", "public void actionPerformed(ActionEvent e) {\n\t\t\t\tpHangHoa.setVisible(true);\r\n\t\t\t\tpLichLamViec.setVisible(false);\r\n\t\t\t\tpDashboard.setVisible(false);\r\n\t\t\t\tpKhachHang.setVisible(false);\r\n\t\t\t\tbllProduct = new ProductDAO();\r\n\r\n\t\t\t\ttxtTKHangHoa = new JTextField();\r\n\t\t\t\ttxtTKHangHoa.setText(\"Nhập tên hàng cần tìm ...\");\r\n\t\t\t\ttxtTKHangHoa.setBounds(49, 11, 562, 20);\r\n\t\t\t\tpHangHoa.add(txtTKHangHoa);\r\n\t\t\t\ttxtTKHangHoa.setColumns(10);\r\n\t\t\t\t\r\n\t\t\t\tJComboBox cbxNhomHang = new JComboBox();\r\n\t\t\t\tcbxNhomHang.setModel(new DefaultComboBoxModel(new String[] {\"Nhóm hàng\"}));\r\n\t\t\t\tcbxNhomHang.setToolTipText(\"\");\r\n\t\t\t\tcbxNhomHang.setBounds(646, 11, 146, 20);\r\n\t\t\t\tpHangHoa.add(cbxNhomHang);\r\n\t\t\t\t\r\n\t\t\t\tJButton btnThemHang = new JButton(\"Thêm Hàng\");\r\n\t\t\t\tbtnThemHang.setBounds(800, 11, 89, 23);\r\n\t\t\t\tpHangHoa.add(btnThemHang);\r\n\t\t\t\tbtnThemHang.addActionListener(new ActionListener() {\r\n\t\t\t\t\tpublic void actionPerformed(ActionEvent e) {\r\n\t\t\t\t\t\tThemHang fThemHang = new ThemHang();\r\n\t\t\t\t\t\tfThemHang.setVisible(true);\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t\t\r\n\t\t\t\tString[] columnNames = new String[]{\"Mã\",\r\n\t\t \"Tên hàng hóa\",\r\n\t\t \"Nhóm hàng\",\r\n\t\t \"Giá bán\",\r\n\t\t \"Số lượng\"};\r\n\t\t\t\t\r\n\t\t\t\tjava.util.List<BaseProduct> products = bllProduct.getProducts(null, 0);\r\n\t\t\t DefaultTableModel tblModel = new DefaultTableModel(columnNames, 0);\r\n\r\n\t\t\t\tfor (int i = 0; i < products.size(); i++){\r\n\t\t\t\t\t long ProductId = products.get(i).getProductId();\r\n\t\t\t\t\t String Barcode = products.get(i).getBarCode();\r\n\t\t\t\t\t String ProductName = products.get(i).getProductName();\r\n\t\t\t\t\t long CategoryId = products.get(i).getCategoryId();\r\n\t\t\t\t\t BigDecimal Price = products.get(i).getRetailPrice();\r\n\t\t\t\t\t BigDecimal Quantity = products.get(i).getQtyAvailable();\r\n\t\t\t\t\t Object[] row = { Barcode, ProductName, CategoryId, Price, Quantity};\r\n\t\t\t\t\t tblModel.addRow(row);\r\n\t\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\tJScrollPane scrollPane = new JScrollPane();\r\n\t\t\t\tscrollPane.setBounds(49, 50, 837, 588);\r\n\t\t\t\tpHangHoa.add(scrollPane);\r\n\t\t\t\t\r\n\t\t\t\ttbDSHangHoa = new JTable(tblModel);\r\n\t\t\t\tscrollPane.setViewportView(tbDSHangHoa);\r\n\t\t\t\t\r\n\t\t\t}", "public InsertOrUpdate_Details() {\n initComponents();\n }", "private void RptStockItem() {\n try {\n pnUmum.removeAll();\n pnUmum.repaint();\n pnUmum.revalidate();\n String sql = \"SELECT `ProdName`,`SellPrice`,`CostPrice`,`Netto`,`Stock`,ProdUnit.UnitName AS Unit FROM `Products` \"\n + \"INNER JOIN ProdUnit ON Products.UnitID = ProdUnit.UnitID ORDER BY Products.ProductID ASC\";\n JRDesignQuery jQuery = new JRDesignQuery();\n jQuery.setText(sql);\n JasperDesign jDesign = JRXmlLoader.load(System.getProperty(\"user.dir\") + \"/src/com/resources/jrxml/RptStokBarang.jrxml\");\n jDesign.setQuery(jQuery);\n JasperReport jReport = JasperCompileManager.compileReport(jDesign);\n JasperPrint jPrint = JasperFillManager.fillReport(jReport, null, new ConfigDB().getConnection());\n JRViewer jView = new JRViewer(jPrint);\n pnUmum.setLayout(new BorderLayout());\n jView.setFitPageZoomRatio();\n jView.setFont(new java.awt.Font(\"Arial\", 0, 14));\n pnUmum.add(jView);\n } catch (JRException ex) {\n JOptionPane.showMessageDialog(null, \"Terjadi Error Pada:\\n\" + ex.toString(), \"Kesalahan\", JOptionPane.ERROR_MESSAGE);\n }\n }", "public void create(List<Product> products) {\n this.products = products;\n deliveryDate = LocalDate.now().plusDays(2);\n warehouse = factory.getWarehouse(\"DHL\");\n\n stock.decrease(products);\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jPanel1 = new javax.swing.JPanel();\n jLabel2 = new javax.swing.JLabel();\n jTextField1 = new javax.swing.JTextField();\n jLabel3 = new javax.swing.JLabel();\n jTextField2 = new javax.swing.JTextField();\n jLabel4 = new javax.swing.JLabel();\n jTextField3 = new javax.swing.JTextField();\n jButton1 = new javax.swing.JButton();\n jButton2 = new javax.swing.JButton();\n jButton3 = new javax.swing.JButton();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n setTitle(\"Modify Product Details - Automotive Solutions v1.0\");\n\n jPanel1.setBackground(new java.awt.Color(204, 204, 255));\n jPanel1.setPreferredSize(new java.awt.Dimension(1160, 660));\n\n jLabel2.setText(\"Product Description\");\n\n jLabel3.setText(\"Rate per Unit\");\n\n jLabel4.setText(\"Unit\");\n\n jButton1.setText(\"Store In Database\");\n jButton1.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jButton1ActionPerformed(evt);\n }\n });\n\n jButton2.setText(\"Back\");\n jButton2.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jButton2ActionPerformed(evt);\n }\n });\n\n jButton3.setText(\"Get Details\");\n jButton3.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jButton3ActionPerformed(evt);\n }\n });\n\n javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);\n jPanel1.setLayout(jPanel1Layout);\n jPanel1Layout.setHorizontalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addGap(68, 68, 68)\n .addComponent(jButton1)\n .addGap(18, 18, 18)\n .addComponent(jButton2, javax.swing.GroupLayout.PREFERRED_SIZE, 121, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jLabel2)\n .addComponent(jLabel3)\n .addComponent(jLabel4))\n .addGap(63, 63, 63)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, 280, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, 280, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 280, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(77, 77, 77)\n .addComponent(jButton3)))))\n .addContainerGap(552, Short.MAX_VALUE))\n );\n jPanel1Layout.setVerticalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel2)\n .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jButton3))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel3)\n .addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel4)\n .addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(123, 123, 123)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jButton1)\n .addComponent(jButton2))\n .addContainerGap(428, Short.MAX_VALUE))\n );\n\n hello1();\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(0, 0, Short.MAX_VALUE))\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(0, 0, Short.MAX_VALUE))\n );\n\n pack();\n }", "@RequestMapping(value=\"/addproduct\",method=RequestMethod.POST)\n\tpublic ModelAndView gotNewProduct(@ModelAttribute(\"addpro\") Product pob,HttpServletRequest request,BindingResult result)\n\t{\n\t\tint res = 0;\n\t\tServletContext context=request.getServletContext();\n\t\tString path=context.getRealPath(\"./resources/\"+pob.getId()+\".jpg\");\n\t\tSystem.out.println(\"Path = \"+path);\n\t\t//System.out.println(\"File name = \"+pob.getImage().getOriginalFilename());\n\t\tFile f=new File(path);\n\t\tif(!pob.getImage().isEmpty()) {\n\t\t\ttry {\n\t\t\t\t//filename=p.getImage().getOriginalFilename(); byte[] bytes=p.getImage().getBytes(); BufferedOutputStream bs=new BufferedOutputStream(new FileOutputStream(f)); bs.write(bytes); bs.close(); System.out.println(\"Image uploaded\");\n\t\t\tres=sc.addNewProduct(pob);\n\t\t\tSystem.out.println(\"Data Inserted\");\n\t\t\t}\n\t\t\tcatch(Exception ex)\n\t\t\t{\n\t\t\tSystem.out.println(ex.getMessage());\n\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\tres=0;\n\t\t\t}\n\t\t\tif(res>0)\n\t\t\t{\n\t\t\t//List<Product> products = ps.getAllProduct();\n\t\t\t//model.addAttribute(\"products\", products );\n\t\t\treturn new ModelAndView(\"index\",\"\", null);\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\treturn new ModelAndView(\"error\",\"\",null);\n\t\t\t}\n\t\t\n\t}", "void create(Product product) throws IllegalArgumentException;", "@Override\r\n\tpublic void ManageProduct() {\n\t\tint id = this.view.enterId();\r\n\t\tString name = this.view.enterName();\r\n\t\tfloat price = this.view.enterPrice();\r\n\t\tint quantity = this.view.enterQuantity();\r\n\t\t\r\n\t\tthis.model.updProduct(id, name, price, quantity);\r\n\t}", "public product() {\n initComponents();\n }", "public void generateReport()\r\n {\r\n ProfilerGUI reportGUI = new ProfilerGUI(map,mapCountTracker);\r\n //reportGUI.\r\n }", "public String addNewProductGroup() {\n\t\tactionStartTime = new Date();\n\t\tresetToken(result);\n\t\tif ((StringUtil.isNullOrEmpty(groupCode) || StringUtil.isNullOrEmpty(groupName)) && maxQuantity == null && maxAmount == null) {\n\t\t\terrMsg = Configuration.getResourceString(ConstantManager.VI_LANGUAGE, \"common.user.input\");\n\t\t\tresult.put(\"errMsg\", errMsg);\n\t\t\tresult.put(ERROR, true);\n\t\t\treturn SUCCESS;\n\t\t}\n\t\terrMsg = ValidateUtil.validateField(groupCode, \"catalog.promotion.group.code\", 100, ConstantManager.ERR_REQUIRE, ConstantManager.ERR_EXIST_SPECIAL_CHAR_IN_CODE, ConstantManager.ERR_MAX_LENGTH);\n\t\tif (StringUtil.isNullOrEmpty(errMsg)) {\n\t\t\terrMsg = ValidateUtil.validateField(groupName, \"catalog.promotion.group.name\", 200, ConstantManager.ERR_REQUIRE, ConstantManager.ERR_EXIST_SPECIAL_CHAR_IN_SPECIAL, ConstantManager.ERR_MAX_LENGTH);\n\t\t}\n\t\tif (!StringUtil.isNullOrEmpty(errMsg)) {\n\t\t\tresult.put(\"errMsg\", errMsg);\n\t\t\tresult.put(ERROR, true);\n\t\t\treturn SUCCESS;\n\t\t}\n\t\ttry {\n\t\t\tif (groupMuaId != null && groupMuaId > 0 && groupKMId != null && groupKMId > 0) {\n\t\t\t\tProductGroup productGroupMua = promotionProgramMgr.getProductGroupById(groupMuaId);\n\t\t\t\tProductGroup productGroupKM = promotionProgramMgr.getProductGroupById(groupKMId);\n\t\t\t\tif (productGroupMua == null) {\n\t\t\t\t\terrMsg = ValidateUtil.getErrorMsg(ConstantManager.ERR_SYSTEM);\n\t\t\t\t\tresult.put(\"errMsg\", errMsg);\n\t\t\t\t\tresult.put(ERROR, true);\n\t\t\t\t\treturn SUCCESS;\n\t\t\t\t}\n\t\t\t\tif (productGroupKM == null) {\n\t\t\t\t\terrMsg = ValidateUtil.getErrorMsg(ConstantManager.ERR_SYSTEM);\n\t\t\t\t\tresult.put(\"errMsg\", errMsg);\n\t\t\t\t\tresult.put(ERROR, true);\n\t\t\t\t\treturn SUCCESS;\n\t\t\t\t}\n\t\t\t\tproductGroupMua.setProductGroupName(groupName);\n\t\t\t\tproductGroupMua.setMinQuantity(minQuantity);\n\t\t\t\tproductGroupMua.setMinAmount(minAmount);\n\t\t\t\tproductGroupMua.setMultiple(multiple != null && multiple ? 1 : 0);\n\t\t\t\tproductGroupMua.setRecursive(recursive != null && recursive ? 1 : 0);\n\t\t\t\tproductGroupMua.setOrder(stt);\n\t\t\t\tproductGroupMua.setQuantityUnit(quantityUnit);\n\t\t\t\tpromotionProgramMgr.updateProductGroup(productGroupMua, getLogInfoVO());\n\t\t\t\tproductGroupKM.setProductGroupName(groupName);\n\t\t\t\tproductGroupKM.setMaxQuantity(maxQuantity);\n\t\t\t\tproductGroupKM.setMaxAmount(maxAmount);\n\t\t\t\tproductGroupKM.setMultiple(multiple != null && multiple ? 1 : 0);\n\t\t\t\tproductGroupKM.setRecursive(recursive != null && recursive ? 1 : 0);\n\t\t\t\tproductGroupKM.setOrder(stt);\n\t\t\t\tproductGroupKM.setQuantityUnit(quantityUnit);\n\t\t\t\tpromotionProgramMgr.updateProductGroup(productGroupKM, getLogInfoVO());\n\t\t\t\tif (productGroupMua != null && productGroupMua.getPromotionProgram() != null) {\n\t\t\t\t\tpromotionProgramMgr.updateMD5ValidCode(productGroupMua.getPromotionProgram(), getLogInfoVO());\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfinal List<String> lstZVMultiGroup = Arrays.asList(PromotionType.ZV01.getValue(), PromotionType.ZV02.getValue(), PromotionType.ZV03.getValue(), PromotionType.ZV04.getValue(), PromotionType.ZV05.getValue(), PromotionType.ZV06\n\t\t\t\t\t\t.getValue(), PromotionType.ZV09.getValue(), PromotionType.ZV21.getValue()\n\t\t\t\t//\t\t\t\t\t\tPromotionType.ZV25.getValue(),\n\t\t\t\t//\t\t\t\t\t\tPromotionType.ZV26.getValue(),\n\t\t\t\t//\t\t\t\t\t\tPromotionType.ZV27.getValue()\n\t\t\t\t);\n\t\t\t\tPromotionProgram pp = promotionProgramMgr.getPromotionProgramById(promotionId);\n\t\t\t\tif (pp == null) {\n\t\t\t\t\tresult.put(ERROR, true);\n\t\t\t\t\tresult.put(\"errMsg\", ValidateUtil.getErrorMsg(ConstantManager.ERR_NOT_EXIST_DB, promotionId));\n\t\t\t\t\treturn SUCCESS;\n\t\t\t\t}\n\t\t\t\tString type = pp.getType();\n\t\t\t\tif (!lstZVMultiGroup.contains(type)) {\n\t\t\t\t\tList<ProductGroup> lstGroupTmp = promotionProgramMgr.getListProductGroupByPromotionId(promotionId, ProductGroupType.MUA);\n\t\t\t\t\tif (lstGroupTmp != null && lstGroupTmp.size() > 0) {\n\t\t\t\t\t\terrMsg = R.getResource(\"promotion.program.multi.group.invalid\");\n\t\t\t\t\t\tresult.put(\"errMsg\", errMsg);\n\t\t\t\t\t\tresult.put(ERROR, true);\n\t\t\t\t\t\treturn SUCCESS;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tProductGroup productGroupMua = promotionProgramMgr.getProductGroupByCode(groupCode, ProductGroupType.MUA, promotionId);\n\t\t\t\tProductGroup productGroupKM = promotionProgramMgr.getProductGroupByCode(groupCode, ProductGroupType.KM, promotionId);\n\t\t\t\tif (productGroupMua != null) {\n\t\t\t\t\terrMsg = ValidateUtil.getErrorMsg(ConstantManager.ERR_EXIST, groupCode);\n\t\t\t\t\tresult.put(\"errMsg\", errMsg);\n\t\t\t\t\tresult.put(ERROR, true);\n\t\t\t\t\treturn SUCCESS;\n\t\t\t\t}\n\t\t\t\tif (productGroupKM != null) {\n\t\t\t\t\terrMsg = ValidateUtil.getErrorMsg(ConstantManager.ERR_EXIST, groupCode);\n\t\t\t\t\tresult.put(\"errMsg\", errMsg);\n\t\t\t\t\tresult.put(ERROR, true);\n\t\t\t\t\treturn SUCCESS;\n\t\t\t\t}\n\t\t\t\t//productGroupMua = promotionProgramMgr.createProductGroup(promotionId, groupCode, groupName, ProductGroupType.MUA, minQuantity, null, minAmount, null, multiple, recursive, stt, getLogInfoVO());\n\t\t\t\t//productGroupKM = promotionProgramMgr.createProductGroup(promotionId, groupCode, groupName, ProductGroupType.KM, null, maxQuantity, null, maxAmount, multiple, recursive, stt, getLogInfoVO());\n\t\t\t\tproductGroupMua = new ProductGroup();\n\t\t\t\tproductGroupMua.setProductGroupCode(groupCode);\n\t\t\t\tproductGroupMua.setProductGroupName(groupName);\n\t\t\t\tproductGroupMua.setPromotionProgram(pp);\n\t\t\t\tproductGroupMua.setGroupType(ProductGroupType.MUA);\n\t\t\t\tproductGroupMua.setMinQuantity(minQuantity);\n\t\t\t\tproductGroupMua.setMinAmount(minAmount);\n\t\t\t\tproductGroupMua.setMaxQuantity(null);\n\t\t\t\tproductGroupMua.setMaxAmount(null);\n\t\t\t\tproductGroupMua.setMultiple((multiple != null && multiple == true) ? 1 : 0);\n\t\t\t\tproductGroupMua.setRecursive((recursive != null && recursive == true) ? 1 : 0);\n\t\t\t\tproductGroupMua.setOrder(stt);\n\t\t\t\tproductGroupMua.setQuantityUnit(quantityUnit);\n\t\t\t\tproductGroupMua = promotionProgramMgr.createProductGroup(productGroupMua, getLogInfoVO());\n\n\t\t\t\tproductGroupKM = new ProductGroup();\n\t\t\t\tproductGroupKM.setProductGroupCode(groupCode);\n\t\t\t\tproductGroupKM.setProductGroupName(groupName);\n\t\t\t\tproductGroupKM.setPromotionProgram(pp);\n\t\t\t\tproductGroupKM.setGroupType(ProductGroupType.KM);\n\t\t\t\tproductGroupKM.setMinQuantity(minQuantity);\n\t\t\t\tproductGroupKM.setMinAmount(minAmount);\n\t\t\t\tproductGroupKM.setMaxQuantity(null);\n\t\t\t\tproductGroupKM.setMaxAmount(null);\n\t\t\t\tproductGroupKM.setMultiple((multiple != null && multiple == true) ? 1 : 0);\n\t\t\t\tproductGroupKM.setRecursive((recursive != null && recursive == true) ? 1 : 0);\n\t\t\t\tproductGroupKM.setOrder(stt);\n\t\t\t\tproductGroupKM.setQuantityUnit(quantityUnit);\n\t\t\t\tpromotionProgramMgr.createProductGroup(productGroupKM, getLogInfoVO());\n\t\t\t\tif (productGroupMua != null && productGroupMua.getPromotionProgram() != null) {\n\t\t\t\t\tpromotionProgramMgr.updateMD5ValidCode(productGroupMua.getPromotionProgram(), getLogInfoVO());\n\t\t\t\t}\n\t\t\t}\n\t\t} catch (Exception e) {\n\t\t\tLogUtility.logErrorStandard(e, R.getResource(\"web.log.message.error\", \"vnm.web.action.program.PromotionCatalogAction.addNewProductGroup\"), createLogErrorStandard(actionStartTime));\n\t\t\tresult.put(\"errMsg\", ValidateUtil.getErrorMsg(ConstantManager.ERR_SYSTEM));\n\t\t\tresult.put(ERROR, true);\n\t\t\treturn SUCCESS;\n\t\t}\n\t\treturn SUCCESS;\n\t}", "public static void addNewSupplier() {\r\n\t\tSystem.out.println(\"Please enter the following supplier details:\");\r\n\r\n\t\tSystem.out.println(\"Supplier Name:\");\r\n\r\n\t\tString supName = Validation.stringNoIntsValidation();\r\n\r\n\t\tSystem.out.println(\"---Supplier Address details---\");\r\n\r\n\r\n\t\tAddress supAddress = addAddress();\r\n\r\n\t\tint numOfEnums = EnumSet.allOf(SupRegion.class).size();\r\n\r\n\t\tPrintMethods.printEnumList(numOfEnums);\r\n\r\n\t\tSystem.out.println(\"\\nPlease choose the region of your supplier:\");\r\n\r\n\t\tint regionChoice = Validation.listValidation(numOfEnums);\r\n\r\n\t\tSupRegion supRegion = SupRegion.values()[regionChoice-1];\r\n\r\n\r\n\t\tArrayList<Product> supProducts = addProduct();\r\n\t\t\r\n\t\tFeedback tempFeedback = new Feedback(null, null, null);\r\n\t\tArrayList<Feedback> supFeedback = new ArrayList<Feedback>();\r\n\t\tsupFeedback.add(tempFeedback);\r\n\r\n\t\tRandom supCodeRandom = new Random(100);\r\n\t\tint supCode = supCodeRandom.nextInt();\r\n\r\n\t\tSupplier tempSupplier = new Supplier(supCode, supName, supAddress, supRegion, supProducts, supFeedback);\r\n\r\n\t\tPart02Tester.supArray.add(tempSupplier);\r\n\t}", "public AddProductWindow() {\r\n initComponents();\r\n this.setLocationRelativeTo(null);\r\n SpinnerNumberModel modelSpinner = new SpinnerNumberModel();\r\n modelSpinner.setMaximum(100);\r\n modelSpinner.setMinimum(0);\r\n spnQuantity.setModel(modelSpinner);\r\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jPanel1 = new javax.swing.JPanel();\n jLabel1 = new javax.swing.JLabel();\n txtIdLigneCmd = new javax.swing.JTextField();\n jLabel2 = new javax.swing.JLabel();\n txtNomClientLigneCmd = new javax.swing.JTextField();\n jLabel3 = new javax.swing.JLabel();\n txtDateLigneCmd = new javax.swing.JTextField();\n jLabel4 = new javax.swing.JLabel();\n txtPrixTotal = new javax.swing.JTextField();\n jPanel2 = new javax.swing.JPanel();\n jLabel5 = new javax.swing.JLabel();\n comboProd = new javax.swing.JComboBox<>();\n jLabel6 = new javax.swing.JLabel();\n txtCatProd = new javax.swing.JTextField();\n jLabel7 = new javax.swing.JLabel();\n txtPU = new javax.swing.JTextField();\n jLabel8 = new javax.swing.JLabel();\n qteProdCmd = new javax.swing.JTextField();\n jPanel3 = new javax.swing.JPanel();\n btnAjouterProdCmd = new javax.swing.JButton();\n btnSupprimerProdCmd = new javax.swing.JButton();\n btnModifierProdCmd = new javax.swing.JButton();\n btnResetProdCmd = new javax.swing.JButton();\n jPanel4 = new javax.swing.JPanel();\n jScrollPane1 = new javax.swing.JScrollPane();\n jTable1 = new javax.swing.JTable();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n\n jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder(\"Informations Commande\"));\n\n jLabel1.setText(\"ID Commande\");\n\n txtIdLigneCmd.setEnabled(false);\n\n jLabel2.setText(\"Nom Client\");\n\n txtNomClientLigneCmd.setEnabled(false);\n\n jLabel3.setText(\"Date Commande\");\n\n txtDateLigneCmd.setEnabled(false);\n\n jLabel4.setText(\"Prix Total\");\n\n txtPrixTotal.setEnabled(false);\n\n javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);\n jPanel1.setLayout(jPanel1Layout);\n jPanel1Layout.setHorizontalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 72, Short.MAX_VALUE)\n .addComponent(jLabel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(txtIdLigneCmd)\n .addComponent(txtNomClientLigneCmd, javax.swing.GroupLayout.DEFAULT_SIZE, 168, Short.MAX_VALUE))\n .addGap(42, 42, 42)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 124, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel4, javax.swing.GroupLayout.PREFERRED_SIZE, 103, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addComponent(txtDateLigneCmd)\n .addComponent(txtPrixTotal, javax.swing.GroupLayout.DEFAULT_SIZE, 166, Short.MAX_VALUE))\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n );\n jPanel1Layout.setVerticalGroup(\n jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel1Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel1)\n .addComponent(txtIdLigneCmd, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 20, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(txtDateLigneCmd, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel2)\n .addComponent(txtNomClientLigneCmd, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel4)\n .addComponent(txtPrixTotal, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n );\n\n jPanel2.setBorder(javax.swing.BorderFactory.createTitledBorder(\"Produit\"));\n\n jLabel5.setText(\"Nom Produit\");\n\n comboProd.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n\n jLabel6.setText(\" Catégorie Produit\");\n\n txtCatProd.setEnabled(false);\n\n jLabel7.setText(\"PU\");\n\n txtPU.setEnabled(false);\n\n jLabel8.setText(\"Quantité Commandée\");\n\n javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);\n jPanel2.setLayout(jPanel2Layout);\n jPanel2Layout.setHorizontalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addComponent(jLabel7, javax.swing.GroupLayout.PREFERRED_SIZE, 65, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(18, 18, 18)\n .addComponent(txtPU))\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addComponent(jLabel5, javax.swing.GroupLayout.PREFERRED_SIZE, 76, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(comboProd, javax.swing.GroupLayout.PREFERRED_SIZE, 159, javax.swing.GroupLayout.PREFERRED_SIZE)))\n .addGap(43, 43, 43)\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addComponent(jLabel6, javax.swing.GroupLayout.PREFERRED_SIZE, 129, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(txtCatProd, javax.swing.GroupLayout.PREFERRED_SIZE, 166, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addComponent(jLabel8, javax.swing.GroupLayout.PREFERRED_SIZE, 118, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(18, 18, 18)\n .addComponent(qteProdCmd)))\n .addContainerGap(19, Short.MAX_VALUE))\n );\n jPanel2Layout.setVerticalGroup(\n jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel2Layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel5)\n .addComponent(comboProd, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel6)\n .addComponent(txtCatProd, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 18, Short.MAX_VALUE)\n .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel7)\n .addComponent(txtPU, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(jLabel8)\n .addComponent(qteProdCmd, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addContainerGap())\n );\n\n jPanel3.setBorder(javax.swing.BorderFactory.createTitledBorder(\"Gestion\"));\n\n btnAjouterProdCmd.setText(\"Ajouter\");\n btnAjouterProdCmd.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnAjouterProdCmdActionPerformed(evt);\n }\n });\n\n btnSupprimerProdCmd.setText(\"Supprimer\");\n\n btnModifierProdCmd.setText(\"Modifier\");\n btnModifierProdCmd.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnModifierProdCmdActionPerformed(evt);\n }\n });\n\n btnResetProdCmd.setText(\"Reset\");\n\n javax.swing.GroupLayout jPanel3Layout = new javax.swing.GroupLayout(jPanel3);\n jPanel3.setLayout(jPanel3Layout);\n jPanel3Layout.setHorizontalGroup(\n jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel3Layout.createSequentialGroup()\n .addGap(31, 31, 31)\n .addComponent(btnAjouterProdCmd, javax.swing.GroupLayout.PREFERRED_SIZE, 124, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(btnSupprimerProdCmd, javax.swing.GroupLayout.PREFERRED_SIZE, 114, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(18, 18, 18)\n .addComponent(btnModifierProdCmd, javax.swing.GroupLayout.PREFERRED_SIZE, 123, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(18, 18, 18)\n .addComponent(btnResetProdCmd, javax.swing.GroupLayout.PREFERRED_SIZE, 105, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(39, 39, 39))\n );\n jPanel3Layout.setVerticalGroup(\n jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel3Layout.createSequentialGroup()\n .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(btnAjouterProdCmd)\n .addComponent(btnSupprimerProdCmd)\n .addComponent(btnModifierProdCmd)\n .addComponent(btnResetProdCmd))\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n );\n\n jPanel4.setBorder(javax.swing.BorderFactory.createTitledBorder(\"Liste des produits de la commande\"));\n\n jTable1.setModel(new javax.swing.table.DefaultTableModel(\n new Object [][] {\n {null, null, null, null},\n {null, null, null, null},\n {null, null, null, null},\n {null, null, null, null}\n },\n new String [] {\n \"Title 1\", \"Title 2\", \"Title 3\", \"Title 4\"\n }\n ));\n jScrollPane1.setViewportView(jTable1);\n\n javax.swing.GroupLayout jPanel4Layout = new javax.swing.GroupLayout(jPanel4);\n jPanel4.setLayout(jPanel4Layout);\n jPanel4Layout.setHorizontalGroup(\n jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel4Layout.createSequentialGroup()\n .addContainerGap()\n .addComponent(jScrollPane1)\n .addContainerGap())\n );\n jPanel4Layout.setVerticalGroup(\n jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(jPanel4Layout.createSequentialGroup()\n .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 171, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(0, 9, Short.MAX_VALUE))\n );\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addContainerGap()\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jPanel3, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(jPanel4, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addContainerGap())\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addContainerGap()\n .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jPanel3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addComponent(jPanel4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n );\n\n pack();\n }", "public Project_Create_Process() {\n initComponents();\n }", "public JavaproductModel postproduct(JavaproductModel oJavaproductModel){\n\n \t/* Create a new hibernate session and begin the transaction*/\n Session hibernateSession = HibernateUtil.getSessionFactory().openSession();\n Transaction hibernateTransaction = hibernateSession.beginTransaction();\n\n /* Insert the new product to database*/\n int productId = (Integer) hibernateSession.save(oJavaproductModel);\n\n /* Commit and terminate the session*/\n hibernateTransaction.commit();\n hibernateSession.close();\n\n /* Return the JavaproductModel with updated productId*/\n oJavaproductModel.setproductId(productId);\n return oJavaproductModel;\n }", "private void actionStatisticalData() {\n String message = getStatisticalMsg(true);\n\n JOptionPane.showMessageDialog(null, message, \"Statistical data\",\n JOptionPane.PLAIN_MESSAGE);\n }", "public String actionCreateNew() {\r\n \t\tsetBook(new Book());\r\n \t\treturn \"new\";\r\n \t}", "public void createGestionnaireMeubles(){\n this.gestionaireMeubles = new GestionaireMeubles(panneaux.cuisine);\n this.panneaux.leftPanel.getCtrl().bindTotalPrice(this.gestionaireMeubles.totalPricePanierProperty());\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n grup1 = new javax.swing.ButtonGroup();\n labInstruccion = new javax.swing.JLabel();\n jLabel3 = new javax.swing.JLabel();\n jLabel4 = new javax.swing.JLabel();\n jLabel5 = new javax.swing.JLabel();\n jLabel6 = new javax.swing.JLabel();\n jLabel7 = new javax.swing.JLabel();\n jLabel8 = new javax.swing.JLabel();\n jLabel9 = new javax.swing.JLabel();\n jLabel10 = new javax.swing.JLabel();\n txtDescripcion = new javax.swing.JTextField();\n txtColor = new javax.swing.JTextField();\n txtPrecioCosto = new javax.swing.JTextField();\n txtCodigo = new javax.swing.JTextField();\n txtMarca = new javax.swing.JTextField();\n txtPrecioVenta = new javax.swing.JTextField();\n txtImpuesto = new javax.swing.JTextField();\n txtEmpresa = new javax.swing.JTextField();\n btnAtras = new javax.swing.JButton();\n btnAgregar = new javax.swing.JButton();\n txtFechaIngreso = new com.toedter.calendar.JDateChooser();\n rdbBolso = new javax.swing.JRadioButton();\n rdbZapato = new javax.swing.JRadioButton();\n jLabel1 = new javax.swing.JLabel();\n cmbGenero = new javax.swing.JComboBox();\n jLabel11 = new javax.swing.JLabel();\n cmbCategoria = new javax.swing.JComboBox();\n jLabel12 = new javax.swing.JLabel();\n txtTalla = new javax.swing.JTextField();\n txtCantidad = new javax.swing.JSpinner();\n jLabel13 = new javax.swing.JLabel();\n btnGenerarCodigo = new javax.swing.JButton();\n jLabel2 = new javax.swing.JLabel();\n jPanel1 = new javax.swing.JPanel();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);\n setTitle(\"Agregar Producto\");\n setMinimumSize(new java.awt.Dimension(590, 430));\n setPreferredSize(new java.awt.Dimension(590, 430));\n getContentPane().setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());\n\n labInstruccion.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 16)); // NOI18N\n labInstruccion.setForeground(new java.awt.Color(102, 102, 102));\n labInstruccion.setText(\"Ingrese los datos del nuevo producto:\");\n getContentPane().add(labInstruccion, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 11, -1, -1));\n\n jLabel3.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel3.setForeground(new java.awt.Color(102, 102, 102));\n jLabel3.setText(\"Descripción:\");\n getContentPane().add(jLabel3, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 96, -1, -1));\n\n jLabel4.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel4.setForeground(new java.awt.Color(102, 102, 102));\n jLabel4.setText(\"Fecha de Ingreso:\");\n getContentPane().add(jLabel4, new org.netbeans.lib.awtextra.AbsoluteConstraints(290, 60, -1, -1));\n\n jLabel5.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel5.setForeground(new java.awt.Color(102, 102, 102));\n jLabel5.setText(\"Color:\");\n getContentPane().add(jLabel5, new org.netbeans.lib.awtextra.AbsoluteConstraints(440, 180, -1, -1));\n\n jLabel6.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel6.setForeground(new java.awt.Color(102, 102, 102));\n jLabel6.setText(\"Marca:\");\n getContentPane().add(jLabel6, new org.netbeans.lib.awtextra.AbsoluteConstraints(210, 180, -1, -1));\n\n jLabel7.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel7.setForeground(new java.awt.Color(102, 102, 102));\n jLabel7.setText(\"Precio a costo:\");\n getContentPane().add(jLabel7, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 260, -1, -1));\n\n jLabel8.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel8.setForeground(new java.awt.Color(102, 102, 102));\n jLabel8.setText(\"Precio de venta:\");\n getContentPane().add(jLabel8, new org.netbeans.lib.awtextra.AbsoluteConstraints(330, 260, -1, -1));\n\n jLabel9.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel9.setForeground(new java.awt.Color(102, 102, 102));\n jLabel9.setText(\"Empresa:\");\n getContentPane().add(jLabel9, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 220, -1, -1));\n\n jLabel10.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel10.setForeground(new java.awt.Color(102, 102, 102));\n jLabel10.setText(\"Impuesto:\");\n getContentPane().add(jLabel10, new org.netbeans.lib.awtextra.AbsoluteConstraints(420, 220, -1, -1));\n\n txtDescripcion.setBackground(new java.awt.Color(237, 237, 237));\n txtDescripcion.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n getContentPane().add(txtDescripcion, new org.netbeans.lib.awtextra.AbsoluteConstraints(80, 93, 480, -1));\n\n txtColor.setBackground(new java.awt.Color(237, 237, 237));\n txtColor.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n txtColor.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n txtColorActionPerformed(evt);\n }\n });\n getContentPane().add(txtColor, new org.netbeans.lib.awtextra.AbsoluteConstraints(480, 180, 80, -1));\n\n txtPrecioCosto.setBackground(new java.awt.Color(237, 237, 237));\n txtPrecioCosto.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n txtPrecioCosto.addKeyListener(new java.awt.event.KeyAdapter() {\n public void keyTyped(java.awt.event.KeyEvent evt) {\n txtPrecioCostoKeyTyped(evt);\n }\n });\n getContentPane().add(txtPrecioCosto, new org.netbeans.lib.awtextra.AbsoluteConstraints(90, 260, 109, -1));\n\n txtCodigo.setEditable(false);\n txtCodigo.setBackground(new java.awt.Color(237, 237, 237));\n txtCodigo.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n txtCodigo.setEnabled(false);\n getContentPane().add(txtCodigo, new org.netbeans.lib.awtextra.AbsoluteConstraints(55, 45, 220, 30));\n\n txtMarca.setBackground(new java.awt.Color(237, 237, 237));\n txtMarca.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n getContentPane().add(txtMarca, new org.netbeans.lib.awtextra.AbsoluteConstraints(260, 180, 130, -1));\n\n txtPrecioVenta.setBackground(new java.awt.Color(237, 237, 237));\n txtPrecioVenta.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n txtPrecioVenta.addKeyListener(new java.awt.event.KeyAdapter() {\n public void keyTyped(java.awt.event.KeyEvent evt) {\n txtPrecioVentaKeyTyped(evt);\n }\n });\n getContentPane().add(txtPrecioVenta, new org.netbeans.lib.awtextra.AbsoluteConstraints(430, 260, 130, -1));\n\n txtImpuesto.setBackground(new java.awt.Color(237, 237, 237));\n txtImpuesto.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n txtImpuesto.addKeyListener(new java.awt.event.KeyAdapter() {\n public void keyTyped(java.awt.event.KeyEvent evt) {\n txtImpuestoKeyTyped(evt);\n }\n });\n getContentPane().add(txtImpuesto, new org.netbeans.lib.awtextra.AbsoluteConstraints(480, 220, 80, -1));\n\n txtEmpresa.setBackground(new java.awt.Color(237, 237, 237));\n txtEmpresa.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n getContentPane().add(txtEmpresa, new org.netbeans.lib.awtextra.AbsoluteConstraints(60, 220, 346, -1));\n\n btnAtras.setBackground(new java.awt.Color(177, 177, 177));\n btnAtras.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n btnAtras.setForeground(new java.awt.Color(51, 51, 51));\n btnAtras.setText(\"Atrás\");\n btnAtras.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnAtrasActionPerformed(evt);\n }\n });\n getContentPane().add(btnAtras, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 329, -1, 40));\n\n btnAgregar.setBackground(new java.awt.Color(177, 177, 177));\n btnAgregar.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n btnAgregar.setForeground(new java.awt.Color(51, 51, 51));\n btnAgregar.setText(\"Agregar\");\n btnAgregar.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnAgregarActionPerformed(evt);\n }\n });\n getContentPane().add(btnAgregar, new org.netbeans.lib.awtextra.AbsoluteConstraints(481, 328, -1, 40));\n\n txtFechaIngreso.setBackground(new java.awt.Color(237, 237, 237));\n getContentPane().add(txtFechaIngreso, new org.netbeans.lib.awtextra.AbsoluteConstraints(386, 45, 170, 30));\n\n rdbBolso.setBackground(new java.awt.Color(175, 201, 201));\n grup1.add(rdbBolso);\n rdbBolso.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n rdbBolso.setText(\"Bolso\");\n rdbBolso.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n rdbBolsoActionPerformed(evt);\n }\n });\n getContentPane().add(rdbBolso, new org.netbeans.lib.awtextra.AbsoluteConstraints(505, 11, -1, -1));\n\n rdbZapato.setBackground(new java.awt.Color(175, 201, 201));\n grup1.add(rdbZapato);\n rdbZapato.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n rdbZapato.setText(\"Zapato\");\n rdbZapato.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n rdbZapatoActionPerformed(evt);\n }\n });\n getContentPane().add(rdbZapato, new org.netbeans.lib.awtextra.AbsoluteConstraints(445, 11, -1, -1));\n\n jLabel1.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel1.setForeground(new java.awt.Color(102, 102, 102));\n jLabel1.setText(\"Género:\");\n getContentPane().add(jLabel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 135, -1, -1));\n\n cmbGenero.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"M\", \"F\" }));\n getContentPane().add(cmbGenero, new org.netbeans.lib.awtextra.AbsoluteConstraints(55, 132, -1, -1));\n\n jLabel11.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel11.setForeground(new java.awt.Color(102, 102, 102));\n jLabel11.setText(\"Categoría:\");\n getContentPane().add(jLabel11, new org.netbeans.lib.awtextra.AbsoluteConstraints(210, 130, -1, -1));\n\n cmbCategoria.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"Ninos\", \"Jovenes\", \"Adulto\" }));\n getContentPane().add(cmbCategoria, new org.netbeans.lib.awtextra.AbsoluteConstraints(270, 130, 115, -1));\n\n jLabel12.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel12.setForeground(new java.awt.Color(102, 102, 102));\n jLabel12.setText(\"Talla:\");\n getContentPane().add(jLabel12, new org.netbeans.lib.awtextra.AbsoluteConstraints(450, 130, -1, -1));\n\n txtTalla.setBackground(new java.awt.Color(237, 237, 237));\n txtTalla.setFont(new java.awt.Font(\"Yu Gothic UI\", 0, 11)); // NOI18N\n txtTalla.addKeyListener(new java.awt.event.KeyAdapter() {\n public void keyTyped(java.awt.event.KeyEvent evt) {\n txtTallaKeyTyped(evt);\n }\n });\n getContentPane().add(txtTalla, new org.netbeans.lib.awtextra.AbsoluteConstraints(480, 130, 80, -1));\n\n txtCantidad.setModel(new javax.swing.SpinnerNumberModel(Integer.valueOf(1), Integer.valueOf(1), null, Integer.valueOf(1)));\n getContentPane().add(txtCantidad, new org.netbeans.lib.awtextra.AbsoluteConstraints(60, 180, 70, -1));\n\n jLabel13.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel13.setForeground(new java.awt.Color(102, 102, 102));\n jLabel13.setText(\"Cantidad:\");\n getContentPane().add(jLabel13, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 179, -1, -1));\n\n btnGenerarCodigo.setBackground(new java.awt.Color(177, 177, 177));\n btnGenerarCodigo.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n btnGenerarCodigo.setForeground(new java.awt.Color(51, 51, 51));\n btnGenerarCodigo.setText(\"Generear código\");\n btnGenerarCodigo.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnGenerarCodigoActionPerformed(evt);\n }\n });\n getContentPane().add(btnGenerarCodigo, new org.netbeans.lib.awtextra.AbsoluteConstraints(440, 290, -1, -1));\n\n jLabel2.setFont(new java.awt.Font(\"Yu Gothic UI\", 1, 12)); // NOI18N\n jLabel2.setForeground(new java.awt.Color(102, 102, 102));\n jLabel2.setText(\"Código:\");\n getContentPane().add(jLabel2, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 56, -1, -1));\n\n jPanel1.setBackground(new java.awt.Color(175, 201, 201));\n getContentPane().add(jPanel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 600, 390));\n\n getAccessibleContext().setAccessibleDescription(\"\");\n\n pack();\n setLocationRelativeTo(null);\n }", "public AdmAddProduct() {\n initComponents();\n }", "@ModelAttribute(\"product\")\n public Product productToAdd() {\n return new Product();\n }", "public void actionPerformed(ActionEvent e) {\n\n\t\t\t\tProduto prod = null;\n\t\t\t\ttry {\n\t\t\t\t\tif (txtTipo.getText().equals(\"\")) {\n\t\t\t\t\t\tprod = new Produto(txtNome.getText(), txtCodigo.getText(), Integer.parseInt(txtValor.getText()),\n\t\t\t\t\t\t\t\tInteger.parseInt(txtQuantidade.getText()));\n\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\tprod = new Produto(txtNome.getText(), txtCodigo.getText(), Integer.parseInt(txtValor.getText()),\n\t\t\t\t\t\t\t\ttxtTipo.getText(), Integer.parseInt(txtQuantidade.getText()));\n\t\t\t\t\t}\n\t\t\t\t\tlistas.adicionarProduto(prod);\n\t\t\t\t\tSystem.out.println(\"BLZ\");\n\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Produto Cadastrado com sucesso!\", \"OK!!\",\n\t\t\t\t\t\t\tJOptionPane.INFORMATION_MESSAGE);\n\t\t\t\t} catch (Exception e2) {\n\t\t\t\t\tJOptionPane.showMessageDialog(null, \"ERRO! Digite um valor valido\", \"ERRO!!\",\n\t\t\t\t\t\t\tJOptionPane.INFORMATION_MESSAGE);\n\t\t\t\t}\n\t\t\t}", "public edu.umich.icpsr.ddi.ProcStatType addNewProcStat()\n {\n synchronized (monitor())\n {\n check_orphaned();\n edu.umich.icpsr.ddi.ProcStatType target = null;\n target = (edu.umich.icpsr.ddi.ProcStatType)get_store().add_element_user(PROCSTAT$16);\n return target;\n }\n }", "@Override\n\t\t\t\tpublic void actionPerformed(ActionEvent event) {\n\t\t\t\t\tif (qtyProductField.getText().isEmpty() || customerList.getSelectedIndex() == -1 || productList.getSelectedIndex() == -1) {\n\t\t\t\t\t\tJOptionPane.showMessageDialog(AddInvoiceForm.this, String.format(\n\t\t\t\t\t\t\t\t\"One or more empty field(s), will not add to database\", event.getActionCommand()));\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\t// get customer value\n\t\t\t\t\t\tString customerIdstr = customerList.getSelectedItem().toString();\n\t\t\t\t\t\tcustomerIdstr = customerIdstr.substring(customerIdstr.indexOf(\"(\") + 1, customerIdstr.indexOf(\")\"));\n\t\t\t\t\t\tint customerId = Integer.parseInt(customerIdstr);\n\n\t\t\t\t\t\t// get product value\n\t\t\t\t\t\tString productIdstr = productList.getSelectedItem().toString();\n\t\t\t\t\t\tproductIdstr = productIdstr.substring(productIdstr.indexOf(\"(\") + 1, productIdstr.indexOf(\")\"));\n\t\t\t\t\t\tint productId = Integer.parseInt(productIdstr);\n\t\t\t\t\t\t\n\t\t\t\t\t\t// check if the quantity input is a valid number\n\t\t\t\t\t\tif (qtyProductField.getText().matches(\"^[0-9]+\") == false) {\n\t\t\t\t\t\t\tJOptionPane.showMessageDialog(AddInvoiceForm.this, \n\t\t\t\t\t\t\t\t\tString.format(\"Invalid quantity input, please try again\", event.getActionCommand()));\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// check if the quantity input is no less than 1 and not more than 100\n\t\t\t\t\t\telse if (Integer.parseInt(qtyProductField.getText()) < 1 || Integer.parseInt(qtyProductField.getText()) > 100) {\n\t\t\t\t\t\t\tJOptionPane.showMessageDialog(AddInvoiceForm.this, \n\t\t\t\t\t\t\t\t\tString.format(\"Please enter a quantity 1-100, no more, no less\", event.getActionCommand()));\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// else execute insert\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// get quantity value and parse it into integer format\n\t\t\t\t\t\t\tint qtyProduct = Integer.parseInt(qtyProductField.getText());\n\n\t\t\t\t\t\t\tSimpleDateFormat formatDate = new SimpleDateFormat(\"yyyy-MM-dd\");\n\t\t\t\t\t\t\tSimpleDateFormat formatTime = new SimpleDateFormat(\"HH:mm:ss\");\n\t\t\t\t\t\t\tDate d = new Date();\n\t\t\t\t\t\t\tTimeZone.setDefault(TimeZone.getTimeZone(\"UTC\"));\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tConnection connection = null;\n\t\t\t\t\t\t\tStatement statement = null;\n\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tconnection = DriverManager.getConnection(DATABASE_URL, UserName_SQL, Password_SQL);\n\t\t\t\t\t\t\t\tstatement = connection.createStatement();\n\t\t\t\t\t\t\t\tstatement.executeUpdate(\n\t\t\t\t\t\t\t\t\t\t\"INSERT INTO invoice (customerId, productId, qtyProduct, invoiceDate, invoiceTime)\"\n\t\t\t\t\t\t\t\t\t\t\t\t+ \" VALUES \" + \"(\" + customerId + \",\" + productId + \",\" + qtyProduct + \",'\"\n\t\t\t\t\t\t\t\t\t\t\t\t+ formatDate.format(d) + \"','\" + formatTime.format(d) + \"')\");\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tcatch (SQLException sqlException) {\n\t\t\t\t\t\t\t\tsqlException.printStackTrace();\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tfinally {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tstatement.close();\n\t\t\t\t\t\t\t\t\tconnection.close();\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tcatch (Exception exception) {\n\t\t\t\t\t\t\t\t\texception.printStackTrace();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tJOptionPane.showMessageDialog(null, \"Created New Record\");\n\t\t\t\t\t\t\trefreshJTable();\n\t\t\t\t\t\t\tcustomerList.setSelectedIndex(-1);\n\t\t\t\t\t\t\tproductList.setSelectedIndex(-1);\n\t\t\t\t\t\t\tqtyProductField.setText(\"\");\n\t\t\t\t\t\t} // end inner else\n\t\t\t\t\t} // end outer else\n\t\t\t\t}", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jLabel1 = new javax.swing.JLabel();\n tf_product_code = new javax.swing.JTextField();\n jButton1 = new javax.swing.JButton();\n jPanel1 = new javax.swing.JPanel();\n lb_product_photo = new javax.swing.JLabel();\n lb_product_name = new javax.swing.JLabel();\n lb_product_category = new javax.swing.JLabel();\n lb_product_price = new javax.swing.JLabel();\n lb_pid = new javax.swing.JLabel();\n jLabel6 = new javax.swing.JLabel();\n tf_quantity = new javax.swing.JTextField();\n jButton2 = new javax.swing.JButton();\n jLabel7 = new javax.swing.JLabel();\n tf_net_total = new javax.swing.JTextField();\n jScrollPane1 = new javax.swing.JScrollPane();\n jTable1 = new javax.swing.JTable();\n lb_amount = new javax.swing.JLabel();\n jButton3 = new javax.swing.JButton();\n jLabel2 = new javax.swing.JLabel();\n tf_mobile = new javax.swing.JTextField();\n jButton4 = new javax.swing.JButton();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n getContentPane().setLayout(null);\n\n jLabel1.setText(\"ENTER PRODUCT CODE :\");\n getContentPane().add(jLabel1);\n jLabel1.setBounds(40, 36, 170, 30);\n getContentPane().add(tf_product_code);\n tf_product_code.setBounds(240, 40, 200, 26);\n\n jButton1.setText(\"SHOW\");\n jButton1.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jButton1ActionPerformed(evt);\n }\n });\n getContentPane().add(jButton1);\n jButton1.setBounds(500, 40, 82, 29);\n\n jPanel1.setLayout(null);\n\n lb_product_photo.setText(\"jLabel2\");\n jPanel1.add(lb_product_photo);\n lb_product_photo.setBounds(30, 30, 170, 160);\n\n lb_product_name.setText(\"jLabel3\");\n jPanel1.add(lb_product_name);\n lb_product_name.setBounds(260, 40, 180, 16);\n\n lb_product_category.setText(\"jLabel4\");\n jPanel1.add(lb_product_category);\n lb_product_category.setBounds(260, 100, 180, 16);\n\n lb_product_price.setText(\"jLabel5\");\n jPanel1.add(lb_product_price);\n lb_product_price.setBounds(260, 160, 200, 16);\n\n lb_pid.setText(\"jLabel2\");\n jPanel1.add(lb_pid);\n lb_pid.setBounds(420, 50, 45, 16);\n\n getContentPane().add(jPanel1);\n jPanel1.setBounds(40, 110, 550, 220);\n\n jLabel6.setText(\"ENTER QUANTITY : \");\n getContentPane().add(jLabel6);\n jLabel6.setBounds(60, 370, 160, 16);\n getContentPane().add(tf_quantity);\n tf_quantity.setBounds(270, 370, 190, 26);\n\n jButton2.setText(\"ADD TO CART\");\n jButton2.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jButton2ActionPerformed(evt);\n }\n });\n getContentPane().add(jButton2);\n jButton2.setBounds(590, 370, 160, 29);\n\n jLabel7.setText(\"NET TOTAL :\");\n getContentPane().add(jLabel7);\n jLabel7.setBounds(630, 450, 80, 16);\n\n tf_net_total.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n tf_net_totalActionPerformed(evt);\n }\n });\n getContentPane().add(tf_net_total);\n tf_net_total.setBounds(270, 410, 190, 26);\n\n jTable1.setModel(new javax.swing.table.DefaultTableModel(\n new Object [][] {\n {null, null, null, null},\n {null, null, null, null},\n {null, null, null, null},\n {null, null, null, null}\n },\n new String [] {\n \"Title 1\", \"Title 2\", \"Title 3\", \"Title 4\"\n }\n ));\n jScrollPane1.setViewportView(jTable1);\n\n getContentPane().add(jScrollPane1);\n jScrollPane1.setBounds(20, 480, 760, 270);\n getContentPane().add(lb_amount);\n lb_amount.setBounds(720, 450, 60, 0);\n\n jButton3.setText(\"DELETE\");\n jButton3.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jButton3ActionPerformed(evt);\n }\n });\n getContentPane().add(jButton3);\n jButton3.setBounds(690, 750, 90, 29);\n\n jLabel2.setText(\"MOBILE NUMBER : \");\n getContentPane().add(jLabel2);\n jLabel2.setBounds(20, 760, 114, 16);\n\n tf_mobile.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n tf_mobileActionPerformed(evt);\n }\n });\n getContentPane().add(tf_mobile);\n tf_mobile.setBounds(140, 750, 200, 40);\n\n jButton4.setText(\"CheckOUT\");\n jButton4.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n jButton4ActionPerformed(evt);\n }\n });\n getContentPane().add(jButton4);\n jButton4.setBounds(350, 760, 110, 29);\n\n pack();\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jLabel1 = new javax.swing.JLabel();\n jLabel2 = new javax.swing.JLabel();\n jLabel3 = new javax.swing.JLabel();\n jLabel4 = new javax.swing.JLabel();\n jLabel5 = new javax.swing.JLabel();\n jLabel6 = new javax.swing.JLabel();\n txtName = new javax.swing.JTextField();\n saveButton = new javax.swing.JButton();\n CancelButton = new javax.swing.JButton();\n txtCategory = new javax.swing.JComboBox<>();\n jLabel7 = new javax.swing.JLabel();\n txtID = new javax.swing.JFormattedTextField();\n txtPrice = new javax.swing.JFormattedTextField();\n txtQuantity = new javax.swing.JFormattedTextField();\n jScrollPane2 = new javax.swing.JScrollPane();\n txtDescription = new javax.swing.JTextArea();\n\n setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);\n\n jLabel1.setText(\"Product ID:\");\n\n jLabel2.setText(\"Name:\");\n\n jLabel3.setText(\"Description:\");\n\n jLabel4.setText(\"Category:\");\n\n jLabel5.setText(\"Price:\");\n\n jLabel6.setText(\"Quanitity in Stock:\");\n\n saveButton.setText(\"Save\");\n saveButton.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n saveButtonActionPerformed(evt);\n }\n });\n\n CancelButton.setText(\"Cancel\");\n CancelButton.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n CancelButtonActionPerformed(evt);\n }\n });\n\n txtCategory.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { \"Item 1\", \"Item 2\", \"Item 3\", \"Item 4\" }));\n\n jLabel7.setText(\"Product Editor\");\n\n txtDescription.setColumns(20);\n txtDescription.setRows(5);\n jScrollPane2.setViewportView(txtDescription);\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGap(10, 10, 10)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)\n .addComponent(jLabel4)\n .addComponent(jLabel2)\n .addComponent(jLabel1)\n .addComponent(jLabel5)\n .addComponent(jLabel6)\n .addComponent(jLabel3))\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGap(62, 62, 62)\n .addComponent(jLabel7, javax.swing.GroupLayout.PREFERRED_SIZE, 278, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))\n .addGroup(layout.createSequentialGroup()\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 421, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(0, 0, Short.MAX_VALUE))\n .addComponent(txtName)\n .addComponent(txtCategory, 0, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n .addComponent(txtID)\n .addComponent(txtPrice)\n .addComponent(txtQuantity))\n .addContainerGap())))\n .addGroup(layout.createSequentialGroup()\n .addContainerGap()\n .addComponent(saveButton, javax.swing.GroupLayout.DEFAULT_SIZE, 215, Short.MAX_VALUE)\n .addGap(55, 55, 55)\n .addComponent(CancelButton, javax.swing.GroupLayout.DEFAULT_SIZE, 234, Short.MAX_VALUE)\n .addGap(70, 70, 70))\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGap(33, 33, 33)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel1)\n .addComponent(txtID, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(txtName, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)))\n .addComponent(jLabel7, javax.swing.GroupLayout.PREFERRED_SIZE, 28, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addComponent(jLabel3)\n .addGap(0, 0, Short.MAX_VALUE))\n .addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 98, Short.MAX_VALUE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel4)\n .addComponent(txtCategory, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(jLabel5, javax.swing.GroupLayout.PREFERRED_SIZE, 15, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addComponent(txtPrice, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addComponent(jLabel6)\n .addComponent(txtQuantity, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))\n .addGap(18, 18, 18)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)\n .addComponent(saveButton)\n .addComponent(CancelButton)))\n );\n\n pack();\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n jPanel4 = new javax.swing.JPanel();\n jScrollPane6 = new javax.swing.JScrollPane();\n recieptTable = new javax.swing.JTable();\n btnDetails = new javax.swing.JButton();\n recieptAddProdError = new javax.swing.JLabel();\n jComboBox1 = new javax.swing.JComboBox();\n jLabel1 = new javax.swing.JLabel();\n jLabel2 = new javax.swing.JLabel();\n jComboBox2 = new javax.swing.JComboBox();\n jLabel3 = new javax.swing.JLabel();\n jComboBox3 = new javax.swing.JComboBox();\n jLabel4 = new javax.swing.JLabel();\n jComboBox4 = new javax.swing.JComboBox();\n jButton1 = new javax.swing.JButton();\n jButton2 = new javax.swing.JButton();\n jButton3 = new javax.swing.JButton();\n jButton4 = new javax.swing.JButton();\n jButton5 = new javax.swing.JButton();\n jButton6 = new javax.swing.JButton();\n\n jPanel4.setLayout(null);\n\n recieptTable.setModel(new javax.swing.table.DefaultTableModel(\n new Object [][] {\n\n },\n new String [] {\n \"Product Id\", \"Type\", \"Quantity\", \"Price\", \"Discount\", \"Total\"\n }\n ) {\n boolean[] canEdit = new boolean [] {\n false, false, false, false, false, false\n };\n\n public boolean isCellEditable(int rowIndex, int columnIndex) {\n return canEdit [columnIndex];\n }\n });\n recieptTable.setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));\n jScrollPane6.setViewportView(recieptTable);\n\n jPanel4.add(jScrollPane6);\n jScrollPane6.setBounds(20, 60, 1070, 390);\n\n btnDetails.setText(\"Details\");\n btnDetails.setToolTipText(\"Remove Item\");\n btnDetails.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR));\n btnDetails.addActionListener(new java.awt.event.ActionListener() {\n public void actionPerformed(java.awt.event.ActionEvent evt) {\n btnDetailsActionPerformed(evt);\n }\n });\n jPanel4.add(btnDetails);\n btnDetails.setBounds(1000, 460, 90, 30);\n\n recieptAddProdError.setFont(new java.awt.Font(\"Tahoma\", 1, 14)); // NOI18N\n jPanel4.add(recieptAddProdError);\n recieptAddProdError.setBounds(810, 130, 280, 30);\n\n jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"Any\", \"Location 1\", \"Location 2\" }));\n jPanel4.add(jComboBox1);\n jComboBox1.setBounds(70, 10, 150, 30);\n\n jLabel1.setText(\"Location\");\n jPanel4.add(jLabel1);\n jLabel1.setBounds(20, 10, 50, 30);\n\n jLabel2.setText(\"Property Type\");\n jPanel4.add(jLabel2);\n jLabel2.setBounds(260, 10, 80, 30);\n\n jComboBox2.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"Any\", \"1\", \"2\" }));\n jPanel4.add(jComboBox2);\n jComboBox2.setBounds(340, 10, 130, 30);\n\n jLabel3.setText(\"Price Range\");\n jPanel4.add(jLabel3);\n jLabel3.setBounds(510, 10, 70, 30);\n\n jComboBox3.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"Any\", \"1 - 10\", \"20 - 50\" }));\n jPanel4.add(jComboBox3);\n jComboBox3.setBounds(580, 10, 130, 30);\n\n jLabel4.setText(\"Area Range\");\n jPanel4.add(jLabel4);\n jLabel4.setBounds(760, 10, 80, 30);\n\n jComboBox4.setModel(new javax.swing.DefaultComboBoxModel(new String[] { \"Any\", \"Area 1\", \"Area 2\", \"Area 3\" }));\n jPanel4.add(jComboBox4);\n jComboBox4.setBounds(840, 10, 140, 30);\n\n jButton1.setText(\"Search\");\n jPanel4.add(jButton1);\n jButton1.setBounds(1005, 10, 90, 30);\n\n jButton2.setText(\"Export To Excel\");\n jPanel4.add(jButton2);\n jButton2.setBounds(30, 460, 160, 30);\n\n jButton3.setText(\"Sort by Date\");\n jPanel4.add(jButton3);\n jButton3.setBounds(280, 460, 140, 30);\n\n jButton4.setText(\"Sort by Price\");\n jPanel4.add(jButton4);\n jButton4.setBounds(440, 460, 130, 30);\n\n jButton5.setText(\"Sort by Area\");\n jPanel4.add(jButton5);\n jButton5.setBounds(600, 460, 130, 30);\n\n jButton6.setText(\"Sort by Location\");\n jPanel4.add(jButton6);\n jButton6.setBounds(760, 460, 120, 30);\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);\n this.setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 1105, Short.MAX_VALUE)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGap(0, 0, Short.MAX_VALUE)\n .addComponent(jPanel4, javax.swing.GroupLayout.PREFERRED_SIZE, 1105, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(0, 0, Short.MAX_VALUE)))\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 502, Short.MAX_VALUE)\n .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGroup(layout.createSequentialGroup()\n .addGap(0, 0, Short.MAX_VALUE)\n .addComponent(jPanel4, javax.swing.GroupLayout.PREFERRED_SIZE, 502, javax.swing.GroupLayout.PREFERRED_SIZE)\n .addGap(0, 0, Short.MAX_VALUE)))\n );\n }", "private void jButtonNewStageplaatsActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonNewStageplaatsActionPerformed\n\n this.geselecteerdeStageplaats = new Stageplaats();\n this.geselecteerdeStageplaats.setSitueertID((Situeert)this.jComboBoxSitueert.getSelectedItem());\n this.geselecteerdeStageplaats.getSitueertID().setSpecialisatieID((Specialisatie)this.jComboBoxSpecialisatie.getSelectedItem());\n this.geselecteerdeStageplaats.setBedrijfID(null);\n this.geselecteerdeStageplaats.setAanmaakDatum(new Date());\n this.geselecteerdeStageplaats.setLaatsteWijziging(new Date());\n this.geselecteerdeStageplaats.setStudentStageplaatsList(new ArrayList<StudentStageplaats>());\n refreshDataCache();\n ClearDisplayedStageplaats();\n refreshDisplayedStageplaats();\n enableButtons();\n }", "public loanform() {\n assets = 0;\n initComponents();\n assettypeinputs = new ArrayList();\n assetvalueinputs = new ArrayList();\n assetassesedinputs = new ArrayList();\n assettypelabels = new ArrayList();\n assetvaluelabels = new ArrayList();\n assetassesedlabels = new ArrayList();\n //jPanel6.setLayout(new FlowLayout());\n jPanel6.setLayout(new GridLayout(0,2));\n }" ]
[ "0.56540614", "0.5625715", "0.54512274", "0.5413737", "0.53575194", "0.53572476", "0.5353305", "0.529983", "0.5289382", "0.5265127", "0.52587736", "0.52406824", "0.52326477", "0.5232015", "0.5224021", "0.51954395", "0.5173798", "0.5154801", "0.51541483", "0.5150174", "0.51412416", "0.51384383", "0.51221323", "0.51063377", "0.50771505", "0.5076235", "0.5074693", "0.5067279", "0.5058904", "0.50579077", "0.5048819", "0.50475323", "0.50469124", "0.5043951", "0.5033957", "0.5031663", "0.5028194", "0.5018123", "0.50170004", "0.5006604", "0.49975914", "0.49974293", "0.49904242", "0.49853706", "0.4983232", "0.49828294", "0.49811062", "0.4974125", "0.4969333", "0.49649045", "0.4961653", "0.49566513", "0.49503362", "0.4945873", "0.49385864", "0.4937325", "0.49261495", "0.49223295", "0.4919477", "0.4911613", "0.4911182", "0.49092364", "0.4908946", "0.49082702", "0.48950976", "0.4892368", "0.4867758", "0.48673013", "0.4866827", "0.48626387", "0.48584282", "0.48536593", "0.48515198", "0.48395663", "0.48386294", "0.48379657", "0.4834753", "0.48270988", "0.48117286", "0.4806686", "0.4805939", "0.48041084", "0.48026627", "0.47965926", "0.47885135", "0.47838405", "0.4783046", "0.47807214", "0.477513", "0.47750622", "0.47748965", "0.47718832", "0.47680435", "0.4766083", "0.47650996", "0.47636697", "0.47616526", "0.4760084", "0.47576222", "0.4756996", "0.47541305" ]
0.0
-1
PREPARING THE SQL REQUEST
private List<Object[]> executeDayQuery( List<Object> segments, List<Object> workplaces, String Eq1startTime, String Eq1endTime, String Eq2startTime, String Eq2endTime, String Eq3startTime, String Eq3endTime) { try { //Clear all tables //################# Declared Harness Data #################### Helper.startSession(); String query_str_1 = "(SELECT 'Matin' as shift,'%s' As start_time, '%s' as end_time, " + "bh.segment AS segment, " + "bh.workplace AS workplace, " + "bh.harness_part AS harness_part, " + "bh.std_time AS std_time, " + "COUNT(bh.harness_part) AS produced_qty, " + "SUM(bh.std_time) AS produced_hours " + "FROM base_harness bh, base_container bc " + "WHERE bc.id = bh.container_id " + "AND bh.create_time BETWEEN '%s' AND '%s' " + "AND bh.segment IN (:segments) " + "AND bh.workplace IN (:workplaces) " + "GROUP BY bh.segment, bh.workplace, bh.harness_part, bh.std_time)"; query_str_1 = String.format(query_str_1, Eq1startTime, Eq1endTime, Eq1startTime, Eq1endTime); String query_str_2 = "(SELECT 'Soir' as shift,'%s' As start_time, '%s' as end_time, " + "bh.segment AS segment, " + "bh.workplace AS workplace, " + "bh.harness_part AS harness_part, " + "bh.std_time AS std_time, " + "COUNT(bh.harness_part) AS produced_qty, " + "SUM(bh.std_time) AS produced_hours " + "FROM base_harness bh, base_container bc " + "WHERE bc.id = bh.container_id " + "AND bh.create_time BETWEEN '%s' AND '%s' " + "AND bh.segment IN (:segments) " + "AND bh.workplace IN (:workplaces) " + "GROUP BY bh.segment, bh.workplace, bh.harness_part, bh.std_time)"; query_str_2 = String.format(query_str_2, Eq2startTime, Eq2endTime, Eq2startTime, Eq2endTime); String query_str_3 = "(SELECT 'Nuit' as shift,'%s' As start_time, '%s' as end_time, " + "bh.segment AS segment, " + "bh.workplace AS workplace, " + "bh.harness_part AS harness_part, " + "bh.std_time AS std_time, " + "COUNT(bh.harness_part) AS produced_qty, " + "SUM(bh.std_time) AS produced_hours " + "FROM base_harness bh, base_container bc " + "WHERE bc.id = bh.container_id " + "AND bh.create_time BETWEEN '%s' AND '%s' " + "AND bh.segment IN (:segments) " + "AND bh.workplace IN (:workplaces)" + "GROUP BY bh.segment, bh.workplace, bh.harness_part, bh.std_time) "; query_str_3 = String.format(query_str_3, Eq3startTime, Eq3endTime, Eq3startTime, Eq3endTime); String query_str = "SELECT * FROM (" + query_str_1 + " UNION " + query_str_2 + " UNION " + query_str_3 + ") results ORDER BY start_time ASC, segment ASC, workplace ASC, harness_part ASC"; SQLQuery query = Helper.sess.createSQLQuery(query_str); query.addScalar("shift", StandardBasicTypes.STRING) .addScalar("start_time", StandardBasicTypes.STRING) .addScalar("end_time", StandardBasicTypes.STRING) .addScalar("segment", StandardBasicTypes.STRING) .addScalar("workplace", StandardBasicTypes.STRING) .addScalar("harness_part", StandardBasicTypes.STRING) .addScalar("std_time", StandardBasicTypes.DOUBLE) .addScalar("produced_qty", StandardBasicTypes.INTEGER) .addScalar("produced_hours", StandardBasicTypes.DOUBLE) .setParameterList("segments", segments) .setParameterList("workplaces", workplaces); this.dataResultList = query.list(); Helper.sess.getTransaction().commit(); return this.dataResultList; } catch (HibernateException e) { if (Helper.sess.getTransaction() != null) { Helper.sess.getTransaction().rollback(); } } return this.dataResultList; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void executeRequest(String sql) {\n\t}", "default String preprocessSQL(String sql, QueryParameters queryParameters, SessionFactoryImplementor factory,\n\t\t\t\t\t\t List<AfterLoadAction> afterLoadActions) {\n\t\t// I believe this method is only needed for query-type loaders\n\t\treturn sql;\n\t}", "abstract protected String buildSQL(BatchSQLEnum sql);", "private String buildQuery(String ... sql) {\n\t\tfinal StringBuffer sb = new StringBuffer();\n\t\t\n\t\tfor (String s : sql) {\n\t\t\tsb.append(ParsingUtil.QUERY + \" \" + s + \"\\n\");\n\t\t}\n\t\t\n\t\treturn sb.toString(); \n\t}", "public void makeSql() {\n\t\tfor(int i=0; i<arr_sql.length; i++) {\n\t\t\tarr_sql[i] = new StringBuffer();\n\t\t}\n\t\t\n\t\t/*\n\t\t * 공통코드 쿼리\n\t\t * 대리점구분 : CU006\n\t\t * 직판구분 : CU012\n\t\t * 지역 : SY006\n\t\t * 계약상태 : CU013\n\t\t * 사용유무 : SY011\n\t\t * 보증보험회사 : CU010\n\t\t * 하위대리점여부 : CU011\n\t\t */\n\t\tarr_sql[0].append (\"SELECT\t\t\t\t\t\t\t\t\t\t\\n\")\n\t\t\t\t .append (\"\t' ' head, ' ' detail, '전체' detail_nm \\n\")\n\t\t\t\t .append (\"FROM DUAL \\n\")\n\t\t\t\t .append (\"UNION ALL \\n\")\n\t\t\t\t .append (\"SELECT \\n\")\n\t\t\t\t .append (\"\tB.head, B.detail, B.detail_nm \\n\")\n\t\t\t\t .append (\"FROM \\n\")\n\t\t\t\t .append (\"\tSALES.TSY011 A, \\n\")\n\t\t\t\t .append (\"\tSALES.TSY010 B \\n\")\n\t\t\t\t .append (\"WHERE 1=1 \\n\")\n\t\t\t\t .append (\" AND A.head = B.head \\n\")\n\t\t\t\t .append (\" AND B.head = ? \\n\")\n\t\t\t\t .append (\" AND LENGTH (rtrim(B.detail)) > 0 \\n\");\n\t\t\n\t\t/*\n\t\t * 대리점 조회\n\t\t */\n\t\tarr_sql[1].append(\"SELECT T1.client_sid\t\t\t \t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 매출처SID \t*/\n\t \t\t .append(\"\t\t ,T1.vend_cd \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* [회계]거래처 코드 \t*/\n\t \t\t .append(\"\t\t ,T1.client_cd \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 매출처 코드 \t*/\n\t \t\t .append(\"\t\t ,T1.client_nm \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 매출처 명 \t*/\n\t \t\t .append(\"\t\t ,T1.client_gu \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 매출처구분 :CU005 \t*/\n\t \t\t \n\t \t\t .append(\"\t\t ,T1.agen_gu \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 대리점구분 :CU006 \t*/\n\t \t\t .append(\"\t\t ,T1.dir_yn \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 직판여부 :CU012 \t*/\n\t \t\t .append(\"\t\t ,T1.area_cd \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 지역코드 :SY006 \t*/\n\t \t\t .append(\"\t\t ,T1.sal_dam_sid \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 영업담당자코드[TSY410] */\n\t \t\t .append(\"\t\t ,T1.client_dam_nm \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 매출처담당자 \t*/\n\t \t\t \n\t \t\t .append(\"\t\t ,T1.tel_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 전화번호 \t*/\n\t \t\t .append(\"\t\t ,T1.mobile_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 휴대전화 \t*/\n\t \t\t .append(\"\t\t ,T1.fax_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* FAX번호 \t*/\n\t \t\t .append(\"\t\t ,T1.e_mail \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 이메일 \t*/\n\t \t\t .append(\"\t\t ,T1.zip_cd \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 우편번호[TSY110] */\n\t \t\t \n\t \t\t .append(\"\t\t ,T1.address1 \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 주소1 \t*/\n\t \t\t .append(\"\t\t ,T1.address2 \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 주소2 \t*/\n\t \t\t .append(\"\t\t ,T1.commi_rate \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 수수료율 \t*/\n\t \t\t .append(\"\t\t ,T1.cunt_status \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 계약상태 :CU013 \t*/\n\t \t\t .append(\"\t\t ,T1.bancod \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 은행코드 [BANKCODE] */\n\t \t\t \n\t \t\t .append(\"\t\t ,T1.bank_acc_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 은행계좌번호 \t*/\n\t \t\t .append(\"\t\t ,T1.bank_acct_nm \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 예금주 \t*/\n\t \t\t .append(\"\t\t ,T1.use_yn \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 사용여부 :SY011 \t*/ \n\t \t\t .append(\"\t\t ,T1.client_url\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 홈페이지 URL\t\t\t\t*/\n\t \t\t .append(\"\t\t ,T2.sal_dam_nm \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 영업담당자명 \t*/\n\t \t\t .append(\"\t\t ,T3.vend_nm \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 거래처명 \t*/\n\t \t\t \n\t \t\t .append(\"\t\t ,T4.bannam \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 은행명 \t*/\n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'CU006',T1.agen_gu) AS agen_gu_name \t\t\t\t\t\\n\")\t/* 대리점구분명 \t\t\t\t*/ \n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'CU012',T1.dir_yn) AS dir_yn_name \t\t\t\t\t\\n\")\t/* 직판여부명 \t\t\t\t*/ \n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'SY006',T1.area_cd) AS area_nm\t\t\t\t\t\t\t\\n\")\t/* 지역명 \t\t\t\t*/\n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'CU013',T1.cunt_status) AS cunt_status_name \t\t\t\\n\")\t/* 계약상태명 \t\t\t\t*/\n\n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'SY011',T1.use_yn) AS use_yn_name \t\t\t\\n\")\t/* 사용여부명 \t\t\t \t*/\n\n\t \t\t .append(\"FROM SALES.TCU030 T1 LEFT OUTER JOIN SALES.TSY410 T2 ON T1.SAL_DAM_SID = T2.SAL_DAM_SID \\n\")\n\t \t\t .append(\"\t\t LEFT OUTER JOIN ACCOUNT.GCZM_VENDER T3 ON T1.VEND_CD = T3.VEND_CD \t\t\t\t\t\\n\")\n\t \t\t .append(\"\t\t LEFT OUTER JOIN ACCOUNT.BANKCODE T4 ON T1.BANCOD = T4.BANCOD \t\t\t\t\t\\n\")\n\t \t\t .append(\"WHERE 1 = 1 \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\n\t \t\t .append(\"\t\t AND T1.client_GU = '1' \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\");\n\t\t/*\n\t\t * 계약정보 조회\n\t\t */\n\t\tarr_sql[2].append(\"SELECT T1.client_sid\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 매출처SID \t*/\n\t\t\t\t .append(\"\t\t ,T1.cont_date\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\") \t/* 계약일자 \t*/\n\t\t\t\t .append(\"\t\t ,T1.expire_date\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 만기일자 \t*/\n\t\t\t\t .append(\"\t\t ,TO_NUMBER(T1.insur_amt) AS insur_amt\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 보험료 \t*/\n\t\t\t\t .append(\"\t\t ,T1.insur_comp_cd\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 보증보험회사:CU010 \t*/\n\t\t\t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ('CU010',T1.insur_comp_cd) AS insur_comp_cd_name\t\t\\n\") \t/* 보증보험회사명 \t\t*/ \n\t\t\t\t .append(\"FROM SALES.TCU031 T1 \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"WHERE 1=1\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\");\n\t\t \n\t\n\t\t/*\n\t\t * 지점정보 조회\n\t\t */\n\t\tarr_sql[3].append(\"SELECT T1.client_sid\t\t\t\t\t\t\t\t\t\t\t\t\\n\") \t/* 매출처SID \t\t*/\n\t\t\t\t .append(\"\t\t ,T1.branch_cd\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 지점코드 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.branch_nm \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\") \t/* 지점명 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.area_cd\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\") \t/* 지역코드:SY006 \t\t*/\n\t\t\t\t .append(\"\t\t ,T1.client_down_yn \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 하위대리점여부:CU011 \t*/\n\t\t\t\t .append(\"\t\t ,T1.empno \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 담당자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.tel_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 전화번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.mobile_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 휴대폰 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.fax_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 팩스번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.branch_url \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 지점홈페이지 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'SY006', T1.area_cd) AS area_nm\t\t\t\t\t\t\t\\n\") \t/* 지역명:SY006 \t\t*/\n\t\t\t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'CU011',T1.client_down_yn) AS client_down_yn_name \t\\n\")\t/* 하위대리점여부명 \t\t*/\n\t\t\t\t .append(\"FROM SALES.TCU032 T1\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\");\n\t\t\n\t\t\n\t\t/*\n\t\t * 대리점 등록\n\t\t */\n\n\t\tarr_sql[4].append(\"INSERT INTO SALES.TCU030 (\")\n\t\t\t\t .append(\"\t\t\t\t client_sid \\n\")\t\n\t\t\t\t .append(\"\t\t\t\t,vend_cd \\n\")\t/* [회계]거래처 코드 \t*/\n\t\t\t\t .append(\"\t\t\t\t,client_cd \\n\")\t/* 매출처 코드 \t*/\n\t\t\t\t .append(\"\t\t\t\t,client_nm \\n\")\t/* 매출처 명 \t*/\n\t\t\t\t .append(\"\t\t\t\t,client_gu \\n\")\t/* 매출처구분 :CU005 \t*/\n\t\t\t\t .append(\"\t\t\t\t,agen_gu \\n\")\t/* 대리점구분 :CU006 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t\t\t,dir_yn \\n\")\t/* 직판여부 :CU012 \t*/\n\t\t\t\t .append(\"\t\t\t\t,area_cd \\n\")\t/* 지역코드 :SY006 \t*/\n\t\t\t\t .append(\"\t\t\t\t,sal_dam_sid \\n\")\t/* 영업담당자코드[TSY410] \t*/\n\t\t\t\t .append(\"\t\t\t\t,client_dam_nm \\n\")\t/* 매출처담당자 \t*/\n\t\t\t\t .append(\"\t\t\t\t,tel_no \\n\")\t/* 전화번호 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t\t\t,mobile_no \\n\")\t/* 핸드폰 \t*/\n\t\t\t\t .append(\"\t\t\t\t,fax_no \\n\")\t/* FAX번호 \t*/\n\t\t\t\t .append(\"\t\t\t\t,e_mail \\n\")\t/* 이메일 \t*/\n\t\t\t\t .append(\"\t\t\t\t,zip_cd \\n\")\t/* 소재지우편번호[TSY110] */\n\t\t\t\t .append(\"\t\t\t\t,address1 \\n\")\t/* 소재지주소1 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t\t\t,address2 \\n\")\t/* 소재지주소2 \t*/\n\t\t\t\t .append(\"\t\t\t\t,commi_rate \t\\n\") \t/* 수수료율 \t*/\n\t\t\t\t .append(\"\t\t\t\t,cunt_status \\n\")\t/* 계약상태 :CU013 \t*/\n\t\t\t\t .append(\"\t\t\t\t,bancod\t\t\t\\n\") \t/* 은행코드 \t\t\t\t\t*/\n\t\t\t\t .append(\"\t\t\t\t,bank_acc_no \\n\")\t/* 은행계좌번호[BANKCODE] \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t\t\t,bank_acct_nm\t\\n\")\t/* 예금주 \t\t\t\t\t*/\n\t\t\t\t .append(\"\t\t\t\t,use_yn\t\t\t\\n\")\t/* 사용여부 \t\t\t\t\t*/\n\t\t\t\t\n\t\t\t\t .append(\"\t\t \t\t,u_date \t\\n\") \t/* 최종수정일자 \t*/\n\t \t\t .append(\"\t\t \t\t,u_empno \t\\n\")\t/* 최종수정자사번 \t*/\n\t \t\t .append(\"\t\t \t\t,u_ip \\n\")\t/* 최종수정IP */\t\t\t\n\t \t\t .append(\"\t\t\t\t,client_url\t\t\\n\")\t/* 홈페이지 */\n\t\t\t\t .append(\"\t\t\t)\t\t\t\t\t\\n\")\n\t\t\t\t \n\t\t\t\t .append(\"VALUES\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t(\t \t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\tSALES.SWS_TCU030_ID.NEXTVAL,?,?,?,?,?,\t\t\\n\")\t\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,SYSTIMESTAMP,?,?,?\t\\n\")\n\t\t\t\t .append(\"\t\t\t)\");\n\t\t\n\t\n\t\t\n\t\t/*\n\t\t * 계약정보 등록\n\t\t */\n\t\tarr_sql[5].append(\"INSERT INTO SALES.TCU031 ( \t\\n\")\n\t\t\t\t .append(\" \t client_SID\t\t\t\\n\")\t/* 매출처SID \t*/\n\t\t\t\t .append(\"\t\t ,cont_date\t\t\t\t\\n\") \t/* 계약일자 \t*/\n\t\t\t\t .append(\"\t\t ,expire_date\t\t\t\\n\")\t/* 만기일자 \t*/\n\t\t\t\t .append(\"\t\t ,insur_amt\t\t\t\t\\n\")\t/* 보험료 \t*/\n\t\t\t\t .append(\"\t\t ,insur_comp_cd\t\t\t\\n\")\t/* 보증보험회사:CU010 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,u_date\t\t\t\t\\n\")\t/* 최종수정일자 \t*/\n\t\t\t\t .append(\"\t\t ,u_empno \t\t\t\t\\n\") \t/* 최종수정자사번 \t*/\n\t\t\t\t .append(\"\t\t ,u_ip\t\t\t\t\t\\n\")\t/* 최종수정IP \t*/\n\t\t\t\t .append(\"\t\t)\t\t\t\t\t\t\\n\")\n\t\t\t\t \n\t\t\t\t .append(\"VALUES\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t(\t \t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\t\n\t\t\t\t .append(\"\t\t\t\tSYSTIMESTAMP,?,?\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t)\");\n\t\t\t\t\t\n\t\t/*\n\t\t * 지점정보 등록\n\t\t */\n\t\t\n\t\tarr_sql[6].append(\"INSERT INTO SALES.TCU032 ( \t\\n\")\n\t\t\t\t .append(\"\t\t client_SID\t\t\t\\n\") \t/* 매출처SID \t\t*/\n\t\t\t\t .append(\"\t\t ,branch_cd\t\t\t\t\\n\")\t/* 지점코드 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,branch_nm \t\t\t\\n\") \t/* 지점명 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,area_cd\t\t\t\t\\n\") \t/* 지역코드:SY006 \t\t*/\n\t\t\t\t .append(\"\t\t ,client_down_yn \t\t\\n\")\t/* 하위대리점여부:CU011 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,empno \t\t\t\t\\n\")\t/* 담당자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,tel_no \t\t\t\t\\n\")\t/* 전화번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,mobile_no \t\t\t\\n\")\t/* 휴대폰 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,fax_no \t\t\t\t\\n\")\t/* 팩스번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,branch_url \t\t\t\\n\")\t/* 지점홈페이지 \t\t\t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,u_date \t\t\t\t\\n\")\t/* 최종수정일자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,u_empno \t\t\t\t\\n\")\t/* 최종수정자사번 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,u_ip \t\t\t\t\\n\")\t/* 최종수정IP \t\t*/\n\t\t\t\t .append(\"\t)\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"VALUES\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t(\t \t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\t\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\tSYSTIMESTAMP,?,?\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t)\");\n\t\t\n\t\t/*\n\t\t * 대리점 수정\n\t\t */\n\n\t\tarr_sql[7].append(\"UPDATE SALES.TCU030 SET \t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t vend_cd\t\t= ? \t\t\t\t\\n\")\t/* [회계]거래처 코드 \t*/\n\t\t\t\t .append(\"\t\t,client_nm\t\t= ? \t\t\t\t\\n\")\t/* 매출처 명 \t*/\n\t\t\t\t .append(\"\t\t,agen_gu\t\t= ? \t\t\t\t \t\\n\")\t/* 대리점구분 :CU006 \t*/\n\t\t\t\t .append(\"\t\t,dir_yn\t\t\t= ? \t\t\t\t\\n\")\t/* 직판여부 :CU012 \t*/\n\t\t\t\t .append(\"\t\t,area_cd \t= ? \t\t\t\t\t\\n\")\t/* 지역코드 :SY006 \t*/\n\n\t\t\t\t .append(\"\t\t,sal_dam_sid\t= ? \t\t\t\t\t\\n\")\t/* 영업담당자코드[TSY410] */\n\t\t\t\t .append(\"\t\t,client_dam_nm\t= ? \t\t\t\t\t\\n\")\t/* 매출처담당자 \t*/\n\t\t\t\t .append(\"\t\t,tel_no = ?\t\t\t\t\t\t\\n\")\t/* 전화번호 \t*/\n\t\t\t\t .append(\"\t\t,mobile_no = ?\t\t\t\t\t\t\\n\")\t/* 핸드폰 \t*/\n\t\t\t\t .append(\"\t\t,fax_no = ?\t\t\t\t\t\t\\n\")\t/* FAX번호 \t*/\n\n\t\t\t\t .append(\"\t\t,e_mail = ?\t\t\t\t\t\t\\n\")\t/* 이메일 \t*/\n\t\t\t\t .append(\"\t\t,zip_cd = ?\t\t\t\t\t\t\\n\")\t/* 소재지우편번호[TSY110] \t*/\n\t\t\t\t .append(\"\t\t,address1 = ?\t\t\t\t\t\t\\n\")\t/* 소재지주소1 \t*/\n\t\t\t\t .append(\"\t\t,address2 = ?\t\t\t\t\t\t\\n\")\t/* 소재지주소2 \t*/\n\t\t\t\t .append(\"\t\t,commi_rate \t= ?\t\t\t\t\t\t\\n\") \t/* 수수료율 \t*/\n\n\t\t\t\t .append(\"\t\t,cunt_status = ?\t\t\t\t\t\t\\n\")\t/* 계약상태 :CU013 \t*/\n\t\t\t\t .append(\"\t\t,bancod\t\t\t= ?\t\t\t\t\t\t\\n\") \t/* 은행코드\t \t\t\t\t*/\n\t\t\t\t .append(\"\t\t,bank_acc_no = ?\t\t\t\t\t\t\\n\")\t/* 은행계좌번호[BANKCODE]\t\t*/\n\t\t\t\t .append(\"\t\t,bank_acct_nm\t= ?\t\t\t\t\t\t\\n\")\t/* 예금주 \t\t\t\t\t*/\n\t\t\t\t .append(\"\t\t,use_yn\t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 사용여부 \t\t\t\t\t*/\n\n\t\t\t\t .append(\"\t\t,u_date \t= SYSTIMESTAMP\t\t\\n\") \t/* 최종수정일자 \t*/\n\t \t\t .append(\"\t\t,u_empno \t= ?\t\t\t\t\t\t\\n\")\t/* 최종수정자사번 \t*/\n\t \t\t .append(\"\t\t,u_ip = ?\t\t\t\t\t\t\\n\")\t/* 최종수정IP */\n\t \t\t .append(\"\t,client_url = ?\t\t\t\t\t\t\\n\")\t/* 홈페이지 */\n\t\t\t\t .append (\"WHERE client_sid \t= ? \t\t\t\t\\n\");\n\t\t\t\t \n\t\t/*\n\t\t * 계약정보 수정\n\t\t */\n\t\tarr_sql[8].append(\"UPDATE SALES.TCU031 SET\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t cont_date\t\t\t= ?\t\t\t\t\t\\n\") \t/* 계약일자 \t*/\n\t\t\t\t .append(\"\t\t ,expire_date\t\t= ?\t\t\t\t\t\\n\")\t/* 만기일자 \t*/\n\t\t\t\t .append(\"\t\t ,insur_amt\t\t\t= ?\t\t\t\t\t\\n\")\t/* 보험료 \t*/\n\t\t\t\t .append(\"\t\t ,insur_comp_cd\t\t= ?\t\t\t\t\t\\n\")\t/* 보증보험회사:CU010 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,u_date\t\t\t= SYSTIMESTAMP\t\\n\")\t/* 최종수정일자 \t*/\n\t\t\t\t .append(\"\t\t ,u_empno \t\t\t= ?\t\t\t\t\t\\n\") \t/* 최종수정자사번 \t*/\n\t\t\t\t .append(\"\t\t ,u_ip\t\t\t\t= ?\t\t\t\t\t\\n\")\t/* 최종수정IP \t*/\n\t\t\t\t .append (\"WHERE client_sid \t\t= ? AND cont_date = ? \\n\");\n\t\t\t\t\n\t\t\t\t \n\t\t\t\t\t\n\t\t/*\n\t\t * 지점정보 수정\n\t\t */\n\t\t\n\t\tarr_sql[9].append(\"UPDATE SALES.TCU032 SET \t\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t branch_nm \t\t= ?\t\t\t\t\t\t\\n\") \t/* 지점명 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,area_cd\t\t\t= ?\t\t\t\t\t\t\\n\") \t/* 지역코드:SY006 \t\t*/\n\t\t\t\t .append(\"\t\t ,client_down_yn \t= ?\t\t\t\t\t\t\\n\")\t/* 하위대리점여부:CU011 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,empno \t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 담당자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,tel_no \t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 전화번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,mobile_no \t\t= ?\t\t\t\t\t\t\\n\")\t/* 휴대폰 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,fax_no \t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 팩스번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,branch_url \t\t= ?\t\t\t\t\t\t\\n\")\t/* 지점홈페이지 \t\t\t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,u_date \t\t\t= SYSTIMESTAMP\t\t\t\t\t\t\\n\")\t/* 최종수정일자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,u_empno \t\t\t= ?\t\t\\n\")\t/* 최종수정자사번 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,u_ip \t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 최종수정IP \t\t*/\n\t\t\t\t .append (\"WHERE client_sid = ? AND branch_cd \t= ?\t\t\\n\");\n\t\t\n\t\t arr_sql[10].append(\"DELETE FROM SALES.TCU030 WHERE client_sid = ?\");\t\n\t\t arr_sql[11].append(\"DELETE FROM SALES.TCU031 WHERE client_sid = ? AND cont_date = ?\");\n\t\t arr_sql[12].append(\"DELETE FROM SALES.TCU032 WHERE client_sid = ? AND branch_cd = ?\");\n\t\t \n\t\t \n\t\t /*\n\t\t * Client SID 얻어오기\n\t\t */\n\t\t\t\n\t\t\tarr_sql[13].append(\"SELECT client_sid FROM SALES.TCU030 WHERE client_cd = ?\\n\");\n\t\t\t\n\t\t/*\n\t\t * 수수료율 조회\n\t\t */\n\t\t\tarr_sql[14].append(\"SELECT\t\t\t\t\t\t\t\t\\n\")\n\t\t\t\t\t\t.append(\" T1.CLIENT_SID AS CLIENT_SID\t\\n\") /* 매출처SID */\n\t\t\t\t\t\t.append(\" ,T1.FR_DATE AS FR_DATE \t\\n\") /* 시작일자 */\n\t\t\t\t\t\t.append(\" ,T1.TO_DATE AS TO_DATE \t\\n\") /* 종료일자 */\n\t\t\t\t\t\t.append(\" ,T1.WEEKEND_YN AS WEEKEND_YN \t\\n\") /* 주말여부 */\n\t\t\t\t\t\t.append(\" ,T1.COMMI_RATE AS COMMI_RATE\t\\n\") /* 수수료율 */\n\t\t\t\t\t\t.append(\"FROM SALES.TCU033 T1 \t\\n\")\n\t\t\t\t\t\t.append(\"WHERE 1=1 \t\t\t\t\t\t\t\\n\");\n\t\t\t\t\t\t\n\t\t/*\n\t\t * 수수료율 등록\n\t\t */\n\t\t\t\n\t\t\tarr_sql[15].append(\"INSERT INTO SALES.TCU033 ( \t\\n\")\n\t\t\t\t\t\t .append(\" \t CLIENT_SID\t\t\t\\n\")\t/* 매출처SID \t*/\n\t\t\t\t\t\t .append(\"\t\t ,FR_DATE\t\t\t\t\\n\") \t/* 시작일자 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,TO_DATE\t\t\t\\n\")\t/* 종료일자 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,COMMI_RATE\t\t\t\t\\n\")\t/* 수수료율 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,WEEKEND_YN\t\t\t\\n\")\t/* 주말여부 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,I_DATE\t\t\t\t\\n\")\t/* 최종입력일자 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,I_EMPNO \t\t\t\t\\n\") \t/* 최종입력자사번 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,I_IP\t\t\t\t\t\\n\")\t/* 최종입력IP \t*/\t\t\t\t\t\t \n\t\t\t\t\t\t .append(\"\t\t ,u_date\t\t\t\t\\n\")\t/* 최종수정일자 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,u_empno \t\t\t\t\\n\") \t/* 최종수정자사번 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,u_ip\t\t\t\t\t\\n\")\t/* 최종수정IP \t*/\n\t\t\t\t\t\t .append(\"\t\t)\t\t\t\t\t\t\\n\")\n\t\t\t\t\t\t \n\t\t\t\t\t\t .append(\"VALUES\t\t\t\t\t\t\\n\")\n\t\t\t\t\t\t .append(\"\t\t\t(\t \t\t\t\\n\")\n\t\t\t\t\t\t .append(\"\t\t\t\t?,?,?,?, ?,\t\t\\n\")\t\n\t\t\t\t\t\t .append(\"\t\t\t\tSYSTIMESTAMP,?,?, SYSTIMESTAMP,?,?\t\\n\")\n\t\t\t\t\t\t .append(\"\t\t\t)\");\n\t\t/*\n\t\t * 수수료율 수정\n\t\t */\n\t\t\tarr_sql[16].append(\"UPDATE SALES.TCU033 SET\t\t\t\t\t\t\\n\") \n\t\t\t\t\t .append(\"\t\t TO_DATE\t\t\t= ?\t\t\t\t\t\\n\")\t/* 종료일자 \t*/\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append(\"\t\t ,COMMI_RATE\t\t= ?\t\t\t\t\t\\n\")\t/* 수수료율 \t*/\n\t\t\t\t\t .append(\"\t\t ,WEEKEND_YN\t\t= ?\t\t\t\t\t\\n\")\t/* 주말여부 \t*/\n\t\t\t\t\t \n\t\t\t\t\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append(\"\t\t ,u_date\t\t\t= SYSTIMESTAMP\t\\n\")\t/* 최종수정일자 \t*/\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append(\"\t\t ,u_empno \t\t\t= ?\t\t\t\t\t\\n\") \t/* 최종수정자사번 \t*/\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append(\"\t\t ,u_ip\t\t\t\t= ?\t\t\t\t\t\\n\")\t/* 최종수정IP \t*/\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append (\"WHERE client_sid \t\t= ? AND FR_DATE = ? AND WEEKEND_YN=? \\n\"); \n\t\t/*\n\t\t * 수수료율 삭제\n\t\t */\n\t\tarr_sql[17].append(\"DELETE FROM SALES.TCU033 WHERE client_sid = ? AND fr_date = ? AND WEEKEND_YN=? \");\t \n\t\t\t \n\n\t}", "protected String preprocessSQL(String sql, QueryParameters parameters, Dialect dialect)\n \t\t\tthrows HibernateException {\n \n \t\tsql = applyLocks( sql, parameters.getLockOptions(), dialect );\n \n \t\treturn getFactory().getSettings().isCommentsEnabled() ?\n \t\t\t\tprependComment( sql, parameters ) : sql;\n \t}", "protected String processGeneratedSql( String sql ) {\n return sql;\n }", "public String prepareStatementString() throws SQLException {\n\t\tList<Object> argList = new ArrayList<Object>();\n\t\treturn buildStatementString(argList);\n\t}", "public String prepareStringToSQL(String input_string) {\n\t\tif (isEmpty(input_string) || \"null\".equalsIgnoreCase(input_string)) {\r\n\t\t\treturn \"\";\r\n\t\t} else {\r\n\t\t\tinput_string = input_string.replaceAll(\"_NR_\", \"\\\\\\n\");\r\n\t\t\tinput_string = input_string.replaceAll(\"'\", \"''\");\r\n\t\t\treturn input_string;\r\n\t\t}\r\n\t}", "String toSql();", "private static String processall(String sql2) {\n\t\tString sql = sql2.replace(\"and txnChannel='ALL'\", \"\").replace(\"and txntype='ALL'\", \"\")\r\n\t\t\t\t.replace(\"and txncode='ALL'\", \"\");\r\n\t\treturn sql;\r\n\t}", "private void traceSqlRequest(String sql) {\n\t\tDatabaseInfo databaseInfo = oneAgentSdk.createDatabaseInfo(\"myCoolDatabase\", \"UnsupportedDatabaseVendor\", ChannelType.TCP_IP, \"theDbHost.localdomain:3434\");\n\t\tDatabaseRequestTracer databaseRequestTracer = oneAgentSdk.traceSqlDatabaseRequest(databaseInfo, sql);\n\t\tdatabaseRequestTracer.start();\n\t\ttry {\n\t\t\texecuteRequest(sql);\n\t\t} catch(Exception e) {\n\t\t\tdatabaseRequestTracer.error(e);\n\t\t\t// handle or re-throw exception!\n\t\t} finally {\n\t\t\tdatabaseRequestTracer.end();\n\t\t}\n\t}", "public String getSql() {\r\n String[] splitSql = this.origSql.split(\"\\\\Q\" + IN_PARAM_ESC + \"\\\\E\");\r\n StringBuffer compSql = new StringBuffer(splitSql[0]);\r\n Integer key = null;\r\n String value = IN_PARAM_ESC;\r\n for (int i = 1; i < splitSql.length && this.inMaxSqlLength(compSql.length()); i++) {\r\n key = new Integer(i);\r\n value = IN_PARAM_ESC;\r\n if (this.paramMap.containsKey(key)) {\r\n Object x = this.paramMap.get(key);\r\n value = getSqlString(x);\r\n }\r\n compSql.append(value);\r\n compSql.append(splitSql[i]);\r\n }\r\n key = new Integer(splitSql.length);\r\n value = this.origSql.lastIndexOf(IN_PARAM_ESC) == (this.origSql.length() - 1) ?\r\n IN_PARAM_ESC : \"\";\r\n if (this.paramMap.containsKey(key) && this.inMaxSqlLength(compSql.length())) {\r\n Object x = this.paramMap.get(key);\r\n value = getSqlString(x);\r\n }\r\n compSql.append(value);\r\n \r\n if (!this.inMaxSqlLength(compSql.length())) {\r\n compSql.delete(this.maxSqlLength, compSql.length());\r\n compSql.append(INCOMPLETE);\r\n }\r\n \r\n return compSql.toString();\r\n }", "public static void main(String args[]){\n String sql = \"select * from TBLS limit 2\";\n String sqlComplex = \"select testpartition.filename,format_.o,title.s,identifier.o,id.o,date_.o \" +\n \"from testpartition join format_ on (testpartition.filename=format_.s) \" +\n \"join title on (testpartition.filename=title.s) \" +\n \"join identifier on (testpartition.filename=identifier.s) \" +\n \"join id on (testpartition.filename=id.s) \" +\n \"join date_ on (testpartition.filename=date_.s) \" +\n \"where testpartition.gid0=1 and testpartition.sid=2 and testpartition.fid<100000 and testpartition.pfid=0\";\n String sqlOriginal = \"select idTable.filename,format_.o,title.s,identifier.o,id.o,date_.o \" +\n \"from idTable join format_ on (idTable.filename=format_.s) \" +\n \"join title on (idTable.filename=title.s) \" +\n \"join identifier on (idTable.filename=identifier.s) \" +\n \"join id on (idTable.filename=id.s) \" +\n \"join date_ on (idTable.filename=date_.s) \" +\n \"where idTable.gid0=1 and idTable.sid=2 and idTable.fid<100000\";\n\n QueryRewrite my = new QueryRewrite(sqlOriginal);\n String sqlRewrite = my.rewrite();\n System.out.println(sqlRewrite);\n\n\n }", "public abstract void toSQL(StringBuilder ret);", "public PreparedSql generatePreparedSql(BoundString prefix);", "protected String generateSQL() {\n String fields = generateFieldsJSON();\n return String.format(QUERY_PATTERN, fields, esQuery.generateQuerySQL(), from, size);\n }", "private String constructSQL() {\n\t\tString sql = \"\";\n\t\tif (!minAgeSet) {\n\t\t\tsql = \"SELECT E.EMP_ID, E.EMP_FULLNAME\" + \" FROM \" + empTable\n\t\t\t+ \" E\";\n\t\t} else {\n\t\t\tsql = \"SELECT E.EMP_ID, E.EMP_FULLNAME\" + \" FROM \" + empTable\n\t\t\t+ \" E WHERE E.EMP_BIRTH_DATE <= ? \";\n\t\t}\n\n\t\toriSqlLength = sql.length();\n\n\t\tStringTokenizer empTok = new StringTokenizer(employee, \",\");\n\t\tStringTokenizer calcTok = new StringTokenizer(calcGroup, \",\");\n\t\tStringTokenizer payTok = new StringTokenizer(payGroup, \",\");\n\t\tStringTokenizer teamTok = new StringTokenizer(team, \",\");\n\n\t\t// check if any of the selects have been used.\n\n\t\tif (empTok.hasMoreTokens() && !empTok.nextToken().equalsIgnoreCase(all))\n\t\t\tsql = groupSelect(\"employee\", sql);\n\t\tif (calcTok.hasMoreTokens()\n\t\t\t\t&& !calcTok.nextToken().equalsIgnoreCase(all))\n\t\t\tsql = groupSelect(\"calcGroup\", sql);\n\t\tif (payTok.hasMoreTokens() && !payTok.nextToken().equalsIgnoreCase(all))\n\t\t\tsql = groupSelect(\"payGroup\", sql);\n\t\tif (teamTok.hasMoreTokens()\n\t\t\t\t&& !teamTok.nextToken().equalsIgnoreCase(all))\n\t\t\tsql = groupSelect(\"team\", sql);\n\t\t\n\t\treturn sql;\n\t}", "private void constructExecuteSql() {\n getMetaData();\n // Validate that the primary keys are present in the underlying SQL\n StringBuilder orderBySql = new StringBuilder(super.getExecuteSql()).append(\"\\n order by \");\n switch (metaData.getDbType()) {\n case ORACLE:\n orderBySql.append(createOracleOrderedByClause ());\n break;\n case SQL_SERVER:\n orderBySql.append(createSqlServerOrderedByClause());\n break;\n case UNKNOWN:\n default:\n orderBySql.append(createUnknownDBOrderedByClause());\n }\n this.executeSql = orderBySql.toString();\n }", "public abstract String toSQL();", "public PreparedSql generatePreparedSql(String prefix);", "String replaceOnException(String sql);", "protected String buildDataQuery() {\n StringBuilder sql = new StringBuilder(\"select\");\n String delim = \" \";\n for (String vname : getColumnNames()) {\n sql.append(delim).append(vname);\n delim = \", \";\n }\n \n Element ncElement = getNetcdfElement();\n \n String table = ncElement.getAttributeValue(\"dbTable\");\n if (table == null) {\n String msg = \"No database table defined. Must set 'dbTable' attribute.\";\n _logger.error(msg);\n throw new TSSException(msg);\n }\n sql.append(\" from \" + table);\n \n String predicate = ncElement.getAttributeValue(\"predicate\");\n if (predicate != null) sql.append(\" where \" + predicate);\n \n //Order by time.\n String tname = getTimeVarName();\n sql.append(\" order by \"+tname+\" ASC\");\n \n return sql.toString();\n }", "public static void parseQueryString(String queryString) {\n\n System.out.println(\"STUB: Calling parseQueryString(String s) to process queries\");\n System.out.println(\"Parsing the string:\\\"\" + queryString + \"\\\"\");\n queryString = queryString.toLowerCase();\n String colName = queryString.substring(0,queryString.indexOf(\"from\")+5).trim();\n String colNames[] = removeWhiteSpacesInArray(colName.split(\" \"));\n ArrayList<String> queryStringList = new ArrayList<String>(Arrays.asList(colNames));\n queryStringList.remove(\"select\");\n queryStringList.remove(\"from\");\n String condition = \"\";\n String keyValueCond[] = new String[]{};\n String tableName = \"\";\n if(queryString.contains(\"where\")) {\n tableName = queryString.substring(queryString.indexOf(\"from\") + 5, queryString.indexOf(\"where\")).trim();\n condition = queryString.substring(queryString.indexOf(\"where\")+6, queryString.length()).trim();\n keyValueCond = removeWhiteSpacesInArray(condition.split(\" \"));\n }else\n tableName = queryString.substring(queryString.indexOf(\"from\")+5).trim();\n try {\n Table table = new Table(tableName.concat(\".tbl\"));\n int noOfRecords = table.page.getNoOfRecords();\n long pos = table.page.getStartofContent();\n TreeMap<String, String> colOrder = columnOrdinalHelper.getColumnsInOrdinalPositionOrder(tableName);\n int recordLength = Integer.parseInt(recordLengthHelper.getProperties(tableName.concat(\".\").concat(Constant.recordLength)));\n if(keyValueCond.length>0){\n\n }else{\n Iterator it = colOrder.entrySet().iterator();\n while (it.hasNext()){\n Map.Entry<String, String> entryPair = (Map.Entry<String, String>) it.next();\n// ReadResult<Object> readResult = table.page.readIntasByte(pos);\n// System.out.println(readResult.getT());\n ReadResult<Object> readResult = RecordFormat.readRecordFormat(columnTypeHelper.getProperties(entryPair.getValue()),table,pos);\n System.out.println(\"RESULT COLUMN NAME : \"+entryPair.getValue()+\" Value : \"+readResult.getT());\n\n }\n\n }\n\n\n\n } catch (FileNotFoundException e) {\n e.printStackTrace();\n } catch (IOException e) {\n e.printStackTrace();\n }\n\n }", "protected String getSQLString() {\n \t\treturn queryTranslator.getSQLString();\n \t}", "public String getPreparedSql() {\r\n return this.origSql;\r\n }", "public List sqlQuery(String sql,Object... params);", "private String buildSelect() {\r\n\t\tString select = \"select all_source.line, ' '||replace(all_source.TEXT,chr(9),' ')|| ' ' line from all_source where 2=2 \";\r\n\t\tString ownerCondition = \"\";\r\n\t\tString ownerInnerCondition = \"\";\r\n\t\tString beginProcedureCondition = \"\";\r\n\r\n\t\tif (!oraJdbcDTO.dbSchema.equals(\"\")) {\r\n\t\t\townerCondition = \" and all_source.OWNER = ? \";\r\n\t\t\townerInnerCondition = \" and all_source1.OWNER = ? \";\r\n\t\t}\r\n\t\tif (!oraJdbcDTO.packageName.equals(\"\")) {\r\n\t\t\t// Procedure in package\r\n\t\t\tbeginProcedureCondition = \"and all_source.name = ?\\n\"\r\n\t\t\t\t\t+ \"and all_source.TYPE = 'PACKAGE'\\n\"\r\n\t\t\t\t\t+ \"and all_source.line >=\\n\"\r\n\t\t\t\t\t+ \" (select min(all_source1.line)\\n\"\r\n\t\t\t\t\t+ \" from all_source all_source1 where 2=2 \"\r\n\t\t\t\t\t+ ownerInnerCondition\r\n\t\t\t\t\t+ \" and all_source1.name = ?\\n\"\r\n\t\t\t\t\t+ \" and all_source1.TYPE = 'PACKAGE'\\n\"\r\n\t\t\t\t\t+ \" and instr(upper(all_source1.TEXT), ?) > 0)\";\r\n\t\t\t;\r\n\t\t} else {\r\n\t\t\t// Single procedure or function\r\n\t\t\tbeginProcedureCondition = \"and all_source.name = ?\\n\"\r\n\t\t\t\t\t+ \"and all_source.TYPE in ('PROCEDURE','FUNCTION')\";\r\n\t\t}\r\n\t\tselect = select + beginProcedureCondition + \" and all_source.line >= ?\"\r\n\t\t\t\t+ ownerCondition + \" order by all_source.line\";\r\n\r\n\t\treturn select;\r\n\t}", "public void prepStmt(String sql) {\n\t\ttry {\n\t\t\tpstmt = conn.prepareStatement(sql);\n\t\t} catch(SQLException se) {\n\t\t\tse.printStackTrace();\n\t\t}\n\t}", "RewrittenStatement rewrite(String sql, Binding params);", "private String preprocessSql(String text) {\n\t\ttext = text.replace(\"(\\t\", \"(\\r\\n\\t\");\r\n\t\t// MsSql: combine primary key and foreign key clauses into a single line\r\n\t\tPattern pPrimaryKey = Pattern.compile(PRIMARY_KEY_BASE_PATTERN, Pattern.CASE_INSENSITIVE | Pattern.DOTALL);\r\n\t\tMatcher mPrimaryKey = pPrimaryKey.matcher(text);\r\n\t\twhile (mPrimaryKey.find()) {\r\n\t\t\tString originalText = mPrimaryKey.group();\r\n\t\t\tString replacedText = removeNewlines(originalText);\r\n\t\t\ttext = text.replace(originalText, replacedText);\r\n\t\t}\r\n\t\tPattern pForeignKey = Pattern.compile(FOREIGN_KEY_BASE_PATTERN, Pattern.CASE_INSENSITIVE | Pattern.DOTALL);\r\n\t\tMatcher mForeignKey = pForeignKey.matcher(text);\r\n\t\twhile (mForeignKey.find()) {\r\n\t\t\tString originalText = mForeignKey.group();\r\n\t\t\tString replacedText = removeNewlines(originalText);\r\n\t\t\ttext = text.replace(originalText, replacedText);\r\n\t\t}\r\n\t\treturn removeNewlines(text, REPLACE_NEWLINES);\r\n\t}", "SQLRequest(String req, Object[] options) {\n try{\n Connection con = Connector.getCon();\n stmt = con.prepareStatement(req, res.TYPE_SCROLL_INSENSITIVE, res.CONCUR_UPDATABLE);\n for (int i=1; i<=options.length; i++) {\n stmt.setObject(i, options[i - 1]);\n }\n executeRequest();\n } catch (SQLException e){\n e.printStackTrace();\n }\n }", "public String getQueryString() {\n if (CoreUtil.isEmpty(sql)) {\n return \"\";\n }\n if(bind == null) {\n return sql;\n }\n StringBuilder buf = new StringBuilder();\n StringTokenizer tok = new StringTokenizer(sql + \" \", \"?\");\n int x = 0;\n while (tok.hasMoreTokens()) {\n String oneChunk = tok.nextToken();\n buf.append(oneChunk);\n Object value = null;\n if(x < bind.length) {\n value = bind[x];\n if(value instanceof java.util.Date) {\n value = \"'\"+CoreUtil.formatDateTime(\"yyyy.MM.dd\", (java.util.Date)value)+\"'\";\n }else if(value instanceof java.sql.Date) {\n value = \"'\"+CoreUtil.formatDateTime(\"yyyy.MM.dd\", (java.sql.Date)value)+\"'\";\n }else if(value instanceof String) {\n value = \"'\"+value+\"'\";\n }\n buf.append(value);\n }\n x++;\n }\n return buf.toString().trim();\n }", "private String produceSQL(String[] cols) {\n StringBuffer buffer = new StringBuffer();\n buffer.append('(');\n buffer.append(cols[0]);\n\n for (int i = 1; i < cols.length; i++){\n buffer.append(',');\n buffer.append(cols[i]);\n }\n buffer.append(')');\n return buffer.toString();\n }", "private String encodeSQL(String text) {\r\n text = text.replaceAll(\"'\", \"''\");\r\n return \"'\" + text + \"'\";\r\n }", "public void setSql (String sql)\n\t{\n\t\tif (sql == null)\n\t\t\tthrow new IllegalArgumentException(\"No SQL\");\n\t\tm_sqlOriginal = sql;\n\t\tint index = m_sqlOriginal.indexOf(\"\\nFROM \");\n\t\tif (index != -1)\n\t\t\tm_sqlOriginal = m_sqlOriginal.replace(\"\\nFROM \", FROM);\n\t\tindex = m_sqlOriginal.indexOf(\"\\nWHERE \");\n\t\tif (index != -1)\n\t\t\tm_sqlOriginal = m_sqlOriginal.replace(\"\\nWHERE \", WHERE);\n\t\t//\n\t\tparse();\n\t}", "@Override\n\tpublic String onPrepareStatement(String sql) {\n\t\tif(!sql.contains(INSERT)){\n\t\t\t// We have to handle criteria query bit differently since\n\t\t\t// Hibernate framework is adding extra comment (/* criteria query */) to the query.\n\t\t\tif(sql.contains(\"/* criteria query */\")){\n\t\t\t\tsql = sql.replace(\"/* criteria query */\", \"\");\n\t\t\t}\n\t\t\treturn sql;\n\t\t}\n\t\tif(sql.contains(SEPARATOR+INSERT)){\n\t\t\treturn sql;\n\t\t}\n\t\tString modelClass=\"\";\n\t\tString calComment = \"\";\n\t\t\n\t\tStringBuilder fullQuery = new StringBuilder(sql);\n\t\t// Manipulating the existing comment \n\t\ttry{\n\t\t\tif (sql.indexOf(\"/* \") != -1){\n\t\t\t\tString str = sql.substring(sql.indexOf(\"/*\")+2, sql.indexOf(\"*/\")-1);\n\t\t\t\tmodelClass = str.substring(str.lastIndexOf('.')+1,str.length());\n\t\t\t}\n\t\t\t\n\t\t\tcalComment = modelClass+SEPARATOR+INSERT ;\n\t\t\tsql = sql.substring(sql.indexOf(\"*/\")+2).trim();\n\t\t\tfullQuery = new StringBuilder(sql.length());\n\t\t\t\n\t\t\tfullQuery.append(\"/* \").append(calComment).append(\n\t\t\t\t\t\" */ \").append(sql);\n\t\t}catch (Exception e) {\n\t\t\t// No Operation -- Stick to original query and comment\n\t\t}\n\t\t\n\t\treturn fullQuery.toString();\n\t}", "Object executeSelectQuery(String sql) { return null;}", "SQLCall createSQLCall();", "public String prepareSql(ProductDTO product){\n String SQL_SELECT = \"SELECT * FROM products \";\n String SQL_WHERE = \" WHERE quantity>0 \";\n String SQL_NAME = \"\";\n String SQL_PRICE = \"\";\n String SQL_CATEGORY = \"\";\n StringBuilder SQL_PRODUCT_DETAILS =new StringBuilder();\n List<String> product_details = new ArrayList<>();\n if (product.getName() != null) {\n SQL_NAME = \" AND name LIKE '%\" + product.getName() + \"%'\";\n }\n if (product.getMinPrice() != 0 || product.getMaxPrice() != 0) {\n if (product.getMaxPrice() == 0 && product.getMinPrice() != 0) {\n SQL_PRICE = \" AND price > \" + product.getMinPrice();\n } else if (product.getMinPrice() == 0 && product.getMaxPrice() != 0) {\n SQL_PRICE = \" AND price < \" + product.getMaxPrice();\n } else {\n SQL_PRICE = \" AND price BETWEEN \" + product.getMinPrice() + \" AND \" + product.getMaxPrice() + \" \";\n }\n }\n\n if (product.getCategory() != null) {\n SQL_CATEGORY = \" AND id_category=\" + product.getCategory().getId() + \" \";\n }\n if (!product.getProductDetailsList().isEmpty()) {\n int count=1;\n for (ProductDetails pd : product.getProductDetailsList()) {\n product_details.add(\" SELECT id_product FROM product_details WHERE id_parameter=\"\n + pd.getParameter().getId() + \" AND value='\" + pd.getValue() + \"'\");\n }\n SQL_PRODUCT_DETAILS.append(\" AND id IN (SELECT T1.id_product FROM (\"+product_details.get(0)+\") AS T1 \");\n product_details.remove(0);\n Iterator iterator = product_details.iterator();\n while (iterator.hasNext()) {\n count++;\n SQL_PRODUCT_DETAILS.append(\" JOIN ( \"+iterator.next()+\") AS T\"+count+\" ON T\"+(count-1)+\".id_product=T\"+count+\".id_product \");\n }\n SQL_PRODUCT_DETAILS.append(\" )\");\n }\n return SQL_SELECT + SQL_WHERE+SQL_NAME + SQL_PRICE + SQL_CATEGORY + SQL_PRODUCT_DETAILS;\n }", "public static String selectDef60CA42CC2D6246D6AF02CFED573960F1_4(ConnectionProvider connectionProvider, String FIN_Payment_IDR) throws ServletException {\n String strSql = \"\";\n strSql = strSql + \n \" SELECT ( COALESCE(TO_CHAR(TO_CHAR(COALESCE(TO_CHAR(table2.DocumentNo), ''))), '') || ' - ' || COALESCE(TO_CHAR(TO_CHAR(table2.Paymentdate, 'DD-MM-YYYY')), '') || ' - ' || COALESCE(TO_CHAR(TO_CHAR(COALESCE(TO_CHAR(table3.Name), ''))), '') || ' - ' || COALESCE(TO_CHAR(TO_CHAR(COALESCE(TO_CHAR(table2.Amount), ''))), '') ) as FIN_Payment_ID FROM FIN_Payment left join (select FIN_Payment_ID, DocumentNo, Paymentdate, C_Bpartner_ID, Amount from FIN_Payment) table2 on (FIN_Payment.FIN_Payment_ID = table2.FIN_Payment_ID)left join (select C_BPartner_ID, Name from C_BPartner) table3 on (table2.C_Bpartner_ID = table3.C_BPartner_ID) WHERE FIN_Payment.isActive='Y' AND FIN_Payment.FIN_Payment_ID = ? \";\n\n ResultSet result;\n String strReturn = \"\";\n PreparedStatement st = null;\n\n int iParameter = 0;\n try {\n st = connectionProvider.getPreparedStatement(strSql);\n QueryTimeOutUtil.getInstance().setQueryTimeOut(st, SessionInfo.getQueryProfile());\n iParameter++; UtilSql.setValue(st, iParameter, 12, null, FIN_Payment_IDR);\n\n result = st.executeQuery();\n if(result.next()) {\n strReturn = UtilSql.getValue(result, \"fin_payment_id\");\n }\n result.close();\n } catch(SQLException e){\n log4j.error(\"SQL error in query: \" + strSql + \"Exception:\"+ e);\n throw new ServletException(\"@CODE=\" + Integer.toString(e.getErrorCode()) + \"@\" + e.getMessage());\n } catch(Exception ex){\n log4j.error(\"Exception in query: \" + strSql + \"Exception:\"+ ex);\n throw new ServletException(\"@CODE=@\" + ex.getMessage());\n } finally {\n try {\n connectionProvider.releasePreparedStatement(st);\n } catch(Exception ignore){\n ignore.printStackTrace();\n }\n }\n return(strReturn);\n }", "String getPostDeclareSql();", "public PreparedStatement prepare(String str, Connection connection) throws SQLException {\n if (this.generatedResultReader == null) {\n return connection.prepareStatement(str, 2);\n }\n if (this.configuration.getPlatform().supportsGeneratedColumnsInPrepareStatement()) {\n return connection.prepareStatement(str, this.generatedResultReader.generatedColumns());\n }\n return connection.prepareStatement(str, 1);\n }", "public static String sqlCommandFilter(String sqlCommand){\n\t\treturn sqlCommand;\n\t\t}", "public void prepareSelectOneRow() {\n setCallFromStatement();\n // The statement is no longer require so can be released.\n clearStatement();\n\n super.prepareSelectOneRow();\n }", "@Override\n public String getPreparedStatementQuery() throws SQLException {\n StringBuilder sb = new StringBuilder();\n\n String statementQuery = getStatementQuery();\n\n // iterate over the characters in the query replacing the parameter placeholders\n // with the actual values\n int currentParameter = 0;\n for( int pos = 0; pos < statementQuery.length(); pos ++) {\n char character = statementQuery.charAt(pos);\n if( statementQuery.charAt(pos) == '?' && currentParameter < getParameterCount()) {\n // replace with parameter value\n boolean shouldQuote = true;\n switch( parameterMetaData.getParameterType(currentParameter+1)) {\n case Types.BIT:\n case Types.TINYINT:\n case Types.SMALLINT:\n case Types.INTEGER:\n case Types.BIGINT:\n case Types.FLOAT:\n case Types.REAL:\n case Types.DOUBLE:\n case Types.NUMERIC:\n case Types.DECIMAL:\n case Types.BOOLEAN:\n shouldQuote = false;\n }\n if( parameterValues.get(currentParameter) == null) {\n sb.append(\"NULL\");\n } else {\n if( shouldQuote ) {\n sb.append(\"'\");\n }\n sb.append(parameterValues.get(currentParameter));\n if( shouldQuote ) {\n sb.append(\"'\");\n }\n }\n currentParameter++;\n } else {\n sb.append(character);\n }\n }\n\n return sb.toString();\n }", "protected void createSelectStatement() throws Exception\n {\n selectStatement = new SQLStatementWithParams();\n\n // Generate the SQL and collect all host variables needed to execute it later\n generateSelectClause( wrqInfo, selectStatement );\n generateFromClause( wrqInfo, selectStatement );\n generateWhereClause( wrqInfo, selectStatement );\n generateGroupingClause( wrqInfo, selectStatement );\n generateHavingClause( wrqInfo, selectStatement );\n generateOrderClause( wrqInfo, selectStatement );\n }", "private void getSelectStatements()\n\t{\n\t\tString[] sqlIn = new String[] {m_sqlOriginal};\n\t\tString[] sqlOut = null;\n\t\ttry\n\t\t{\n\t\t\tsqlOut = getSubSQL (sqlIn);\n\t\t}\n\t\tcatch (Exception e)\n\t\t{\n\t\t\tlog.log(Level.SEVERE, m_sqlOriginal, e);\n\t\t\tthrow new IllegalArgumentException(m_sqlOriginal);\n\t\t}\n\t\t//\ta sub-query was found\n\t\twhile (sqlIn.length != sqlOut.length)\n\t\t{\n\t\t\tsqlIn = sqlOut;\n\t\t\ttry\n\t\t\t{\n\t\t\t\tsqlOut = getSubSQL (sqlIn);\n\t\t\t}\n\t\t\tcatch (Exception e)\n\t\t\t{\n\t\t\t\tlog.log(Level.SEVERE, m_sqlOriginal, e);\n\t\t\t\tthrow new IllegalArgumentException(sqlOut.length + \": \"+ m_sqlOriginal);\n\t\t\t}\n\t\t}\n\t\tm_sql = sqlOut;\n\t\t/** List & check **\n\t\tfor (int i = 0; i < m_sql.length; i++)\n\t\t{\n\t\t\tif (m_sql[i].indexOf(\"SELECT \",2) != -1)\n\t\t\t\tlog.log(Level.SEVERE, \"#\" + i + \" Has embedded SQL - \" + m_sql[i]);\n\t\t\telse\n\t\t\t\tlog.fine(\"#\" + i + \" - \" + m_sql[i]);\n\t\t}\n\t\t/** **/\n\t}", "String buildInsertQuery(String... args);", "String processQuery(String query);", "public static String formatQuery( String sqlString ) {\n StringTokenizer st= new StringTokenizer( sqlString, \"'\" );\n StringWriter sw = new StringWriter();\n \n while (st.hasMoreTokens()) {\n sw.write( st.nextToken() );\n if (st.hasMoreTokens())\n sw.write( \"''\" );\n }\n \n return sw.toString();\n }", "@Test\n public void testToStringWithSQL() throws SQLException {\n try (PreparedStatement stmt = this.proxy\n .prepareStatement(\"SELECT * FROM country WHERE lang = ? OR callingcode = ?\")) {\n stmt.setString(1, \"de\");\n stmt.setInt(2, 42);\n String sql = stmt.toString();\n assertEquals(\"SELECT * FROM country WHERE lang = 'de' OR callingcode = 42\", sql);\n LOG.info(\"sql = \\\"{}\\\"\", sql);\n }\n }", "String getBarcharDataQuery();", "public void parse_sql(String sql, Boolean as_is) throws ConnectorConfigException{\n\t\tif (as_is){\n\t\t\tfieldset = sql;\n\t\t\treturn;\n\t\t}\n\t\tPattern limit_regex = Pattern.compile(\"[ \\n]+limit[\\n ,0-9]\", Pattern.CASE_INSENSITIVE);\n\t\tPattern where_regex = Pattern.compile(\"[ \\n]+where\", Pattern.CASE_INSENSITIVE);\n\t\tPattern from_regex = Pattern.compile(\"[ \\n]+from\", Pattern.CASE_INSENSITIVE);\n\t\tPattern select_regex = Pattern.compile(\"select\", Pattern.CASE_INSENSITIVE);\n\t\tPattern order_regex = Pattern.compile(\"[ \\n]+order[ ]+by\", Pattern.CASE_INSENSITIVE);\n\t\tPattern empty_regex = Pattern.compile(\"[ ]+\", Pattern.CASE_INSENSITIVE);\n\t\tPattern groupby_regex = Pattern.compile(\"[ \\n]+group[ \\n]+by[ \\n]+\", Pattern.CASE_INSENSITIVE);\n\n\t\tsql = limit_regex.split(sql)[0]; //drop limit part;\n\n\t\tif (groupby_regex.split(sql).length > 1){ //workaround for GROUP BY in sql\n\t\t\tset_source(\"(\"+sql+\") dhx_group_table\");\n\t\t\treturn;\n\t\t}\n\t\t\t\n\t\t//locate select part\n\t\tString[] data = from_regex.split(sql,2);\n\t\tset_fieldset(select_regex.split(data[0],2)[1]);\n\t\t\n\t\tString [] table_data = where_regex.split(data[1],2);\n\t\tif (table_data.length>1){ //where construction exists\n\t\t\tset_source(table_data[0]);\n\t\t\tString [] where_data = order_regex.split(table_data[1]);\n\t\t\tset_filter(where_data[0]);\n\t\t\tif (where_data.length==1) return; //all parsed\n\t\t\tsql = where_data[1].trim();\n\t\t} else { //check order \n\t\t\tString [] order_data = order_regex.split(table_data[0],2);\n\t\t\tset_source(order_data[0]);\n\t\t\tif (order_data.length==1) return; //all parsed\n\t\t\tsql = order_data[1].trim();\n\t\t}\n\t\t\n\t\tif (!sql.equals(\"\")){\n\t\t\tString [] order_details = empty_regex.split(sql);\n\t\t\tset_sort(order_details[0],order_details[1]);\n\t\t}\n\t}", "boolean moznoSpustit(SqlHelper helper, String sql, Object... parametry);", "void rewrite(MySqlSelectQueryBlock query);", "public String convertStatement (String oraStatement);", "public String convertStatement (String oraStatement);", "public abstract String doTableConvert(String sql);", "public Vector executeCmd_v2_khusus1(String sql_stmt) {\n \tVector v = null;\n \tListIterator li = null;\n \ttry {\n \t//String ipAddr = request.getRemoteAddr();\n \tContext initContext = new InitialContext();\n \tContext envContext = (Context)initContext.lookup(\"java:/comp/env\");\n \tds = (DataSource)envContext.lookup(\"jdbc\"+beans.setting.Constants.getDbschema());\n \tcon = ds.getConnection();\n \t//update civitas\n \tstmt = con.prepareStatement(sql_stmt);\n \tif(sql_stmt.startsWith(\"select\")||sql_stmt.startsWith(\"SELECT\")||sql_stmt.startsWith(\"Select\")) {\n \t\trs = stmt.executeQuery();\n \t\tResultSetMetaData rsmd = rs.getMetaData();\n \t\tint columnsNumber = rsmd.getColumnCount();\n \t\tString col_label = null;\n \t\tString col_type = null;\n \t\tfor(int i=1;i<=columnsNumber;i++) {\n \t\t\t//getColumnName\n \t\t\t\tString col_name = rsmd.getColumnLabel(i);\n \t\t\t\tif(col_label==null) {\n \t\t\t\t\tcol_label = new String(col_name);\n \t\t\t\t\tcol_type = new String(\"`\");\n \t\t\t\t}\n \t\t\t\telse {\n \t\t\t\t\tcol_label = col_label+\"`\"+col_name;\n \t\t\t\t}\n \t\t\t\t//get col type\n \t\t\t\tint type = rsmd.getColumnType(i);\n \t\t\t\tif(type == java.sql.Types.DATE) {\n \t\t\t\t\tcol_type = col_type+\"date`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.DECIMAL || type == java.sql.Types.DOUBLE || type == java.sql.Types.FLOAT ) {\n \t\t\t\t\tcol_type = col_type+\"double`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.INTEGER || type == java.sql.Types.BIGINT || type == java.sql.Types.NUMERIC || type == java.sql.Types.SMALLINT) {\n \t\t\t\t\tcol_type = col_type+\"long`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.VARCHAR || type == java.sql.Types.LONGNVARCHAR || type == java.sql.Types.LONGVARCHAR || type == java.sql.Types.CHAR || type == java.sql.Types.NCHAR) {\n \t\t\t\t\tcol_type = col_type+\"string`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.TIME) {\n \t\t\t\t\tcol_type = col_type+\"time`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.BOOLEAN || type == java.sql.Types.TINYINT) {\n \t\t\t\t\tcol_type = col_type+\"boolean`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.TIMESTAMP) {\n \t\t\t\t\tcol_type = col_type+\"timestamp`\";\n \t\t\t\t}\n \t\t\t}\n \t\tif(v==null) {\n \t\t\t\tv = new Vector();\n \t\t\t\tli=v.listIterator();\n \t\t\t\tli.add(col_type);\n \t\t\t\tli.add(col_label);\n \t\t\t}\n \t\t\t\n \t\t//System.out.println(\"columnsNumber=\"+columnsNumber);\n \t\tString brs = null;\n \t\twhile(rs.next()) {\n \t\t\tfor(int i=1;i<=columnsNumber;i++) {\n \t\t\t\tString tmp = \"\";\n \t\t\t\t/*\n \t\t\t\t * ADA 2 metode cek column type, karena diupdate yg baruan adalah cara yg diatas, belum tau mana yg lebih efektif\n \t\t\t\t */\n \t\t\t\tcol_type = rsmd.getColumnTypeName(i);\n \t\t\t\t\n \t\t\t\tif(col_type.equalsIgnoreCase(\"VARCHAR\")||col_type.equalsIgnoreCase(\"TEXT\")||col_type.startsWith(\"CHAR\")) {\n \t\t\t\t\ttmp = \"\"+rs.getString(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"TINYINT\")) {\n \t\t\t\t\ttmp = \"\"+rs.getBoolean(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.contains(\"INT\")||col_type.contains(\"LONG\")) {\n \t\t\t\t\ttmp = \"\"+rs.getLong(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"DATE\")) {\n \t\t\t\t\ttmp = \"\"+rs.getDate(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"DECIMAL\")||col_type.equalsIgnoreCase(\"DOUBLE\")||col_type.equalsIgnoreCase(\"FLOAT\")) {\n \t\t\t\t\ttmp = \"\"+rs.getDouble(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"TIMESTAMP\")||col_type.equalsIgnoreCase(\"DATETIME\")) {\n \t\t\t\t\ttmp = \"\"+rs.getTimestamp(i);\n \t\t\t\t}\n \t\t\t\t\n \t\t\t\tif(brs==null) {\n \t\t\t\t\tif(Checker.isStringNullOrEmpty(tmp)) {\n \t\t\t\t\t\tbrs = new String(\"null\");\n \t\t\t\t\t}\n \t\t\t\t\telse {\n \t\t\t\t\t\tbrs = new String(tmp);\n \t\t\t\t\t}\n \t\t\t\t}\n \t\t\t\telse {\n \t\t\t\t\tif(Checker.isStringNullOrEmpty(tmp)) {\n \t\t\t\t\t\tbrs = brs +\"`null\";\n \t\t\t\t\t}\n \t\t\t\t\telse {\n \t\t\t\t\t\tbrs = brs+\"`\"+tmp;\n \t\t\t\t\t}\n \t\t\t\t}\t\n \t\t\t}\n \t\t\tbrs = brs.replace(\"`K`\", \"`KELUAR`\");\n \t\t\tli.add(brs);\n \t\t\tbrs = null;\n \t\t}\n \t}\n \telse {\n \t\t//non select\n \t\tint i = stmt.executeUpdate();\n \t\tif(v==null) {\n \t\t\t\tv = new Vector();\n \t\t\t\tli=v.listIterator();\n \t\t\t\tli.add(\"string`string\");\n \t\t\t\tli.add(\"COMMAND`EXE\");\n \t\t\t}\n \t\t\n \t\tli.add(sql_stmt+\"`\"+i);\n \t}\n \t}\n \tcatch (NamingException e) {\n \t\te.printStackTrace();\n \t\tif(v==null) {\n\t\t\t\tv = new Vector();\n\t\t\t\tli=v.listIterator();\n\t\t\t\tli.add(\"ERROR\");\n\t\t\t}\n \t\tli.add(e.toString());\n \t}\n \tcatch (SQLException ex) {\n \t\tex.printStackTrace();\n \t\tif(v==null) {\n\t\t\t\tv = new Vector();\n\t\t\t\tli=v.listIterator();\n\t\t\t\tli.add(\"ERROR\");\n\t\t\t}\n \t\tli.add(ex.toString());\n \t} \n \tfinally {\n \t\tif (rs!=null) try { rs.close(); } catch (Exception ignore){}\n \t if (stmt!=null) try { stmt.close(); } catch (Exception ignore){}\n \t if (con!=null) try { con.close();} catch (Exception ignore){}\n \t}\n \ttry {\n \t\tv = Tool.removeDuplicateFromVector(v);\n \t}\n \tcatch(Exception e) {}\n \treturn v;\n }", "protected String getSelectSQLWithKey(String key) {\n\t\treturn queryData.getString(\"SelectSQLWithKeySQL\").replace(\"key!\", key);\n\t}", "public void prepareStatements() throws SQLException {\n\t\tpstmt_updateTicket = connection.prepareStatement(\r\n\t\t \"UPDATE ticket \" +\r\n \"SET kunde = ? \" +\r\n \"WHERE tid IN (\" +\r\n \"SELECT tid FROM ticket WHERE kunde IS NULL AND auffuehrung = ? LIMIT ?)\" +\r\n \"RETURNING preis\");\r\n\t}", "public abstract String createQuery();", "@SuppressWarnings(\"null\")\n\tpublic QueryParameter parseQuery(String queryString) {\n\t\t\n/*\n\t\t * extract the name of the file from the query. File name can be found after the\n\t\t * \"from\" clause.\n\t\t */\n\n\t\t/*\n\t\t * extract the order by fields from the query string. Please note that we will\n\t\t * need to extract the field(s) after \"order by\" clause in the query, if at all\n\t\t * the order by clause exists. For eg: select city,winner,team1,team2 from\n\t\t * data/ipl.csv order by city from the query mentioned above, we need to extract\n\t\t * \"city\". Please note that we can have more than one order by fields.\n\t\t */\n\n\t\t/*\n\t\t * extract the group by fields from the query string. Please note that we will\n\t\t * need to extract the field(s) after \"group by\" clause in the query, if at all\n\t\t * the group by clause exists. For eg: select city,max(win_by_runs) from\n\t\t * data/ipl.csv group by city from the query mentioned above, we need to extract\n\t\t * \"city\". Please note that we can have more than one group by fields.\n\t\t */\n\n\t\t /*\n\t\t * extract the selected fields from the query string. Please note that we will\n\t\t * need to extract the field(s) after \"select\" clause followed by a space from\n\t\t * the query string. For eg: select city,win_by_runs from data/ipl.csv from the\n\t\t * query mentioned above, we need to extract \"city\" and \"win_by_runs\". Please\n\t\t * note that we might have a field containing name \"from_date\" or \"from_hrs\".\n\t\t * Hence, consider this while parsing.\n\t\t */\n\n\t\t/*\n\t\t * extract the conditions from the query string(if exists). for each condition,\n\t\t * we need to capture the following: 1. Name of field 2. condition 3. value\n\t\t * \n\t\t * For eg: select city,winner,team1,team2,player_of_match from data/ipl.csv\n\t\t * where season >= 2008 or toss_decision != bat\n\t\t * \n\t\t * here, for the first condition, \"season>=2008\" we need to capture: 1. Name of\n\t\t * field: season 2. condition: >= 3. value: 2008\n\t\t * \n\t\t * the query might contain multiple conditions separated by OR/AND operators.\n\t\t * Please consider this while parsing the conditions.\n\t\t * \n\t\t */\n\n\t\t /*\n\t\t * extract the logical operators(AND/OR) from the query, if at all it is\n\t\t * present. For eg: select city,winner,team1,team2,player_of_match from\n\t\t * data/ipl.csv where season >= 2008 or toss_decision != bat and city =\n\t\t * bangalore\n\t\t * \n\t\t * the query mentioned above in the example should return a List of Strings\n\t\t * containing [or,and]\n\t\t */\n\n\t\t/*\n\t\t * extract the aggregate functions from the query. The presence of the aggregate\n\t\t * functions can determined if we have either \"min\" or \"max\" or \"sum\" or \"count\"\n\t\t * or \"avg\" followed by opening braces\"(\" after \"select\" clause in the query\n\t\t * string. in case it is present, then we will have to extract the same. For\n\t\t * each aggregate functions, we need to know the following: 1. type of aggregate\n\t\t * function(min/max/count/sum/avg) 2. field on which the aggregate function is\n\t\t * being applied\n\t\t * \n\t\t * Please note that more than one aggregate function can be present in a query\n\t\t * \n\t\t * \n\t\t */\n\n\t\tString file = null;\n\t\tList<Restriction> restrictions = new ArrayList<Restriction>();\n\t\tList<String> logicalOperators = new ArrayList<String>();\n\t\tList<String> fields = new ArrayList<String>();;\n\t\tList<AggregateFunction> aggregateFunction = new ArrayList<AggregateFunction>();\n\t\tList<String> groupByFields = new ArrayList<String>();;\n\t\tList<String> orderByFields = new ArrayList<String>();;\n\t\tString baseQuery=null;\n\t\n\t\tfile = getFile(queryString);\n\n\t\t\n\t\tString[] conditions = getConditions(queryString);\n\t\tif(conditions!=null) {\n\t\tRestriction[] restriction = new Restriction[conditions.length];\n\t\t\n\t\tfor (int i = 0; i < conditions.length; i++) {\n\t\t\trestriction[i] = new Restriction();\n\t\t\t\n\t\t\tString operator=null;\n\t\t\tString value=null;\n\t\t\tString property=null;\n\t\t\t if(conditions[i].contains(\"<=\")) {\n\t\t\t\tString[] split = conditions[i].split(\"<=\");\n\t\t\t\toperator=\"<=\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t\t\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\">=\")) {\n\t\t\t\tString[] split = conditions[i].split(\">=\");\n\t\t\t\toperator=\">=\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t\t\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\">\")) {\n\t\t\t\tString[] split = conditions[i].split(\">\");\n\t\t\t\toperator=\">\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\"!=\")) {\n\t\t\t\tString[] split = conditions[i].split(\"!=\");\n\t\t\t\toperator=\"!=\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\"=\")) {\n\t\t\t\tString[] split = conditions[i].split(\"=\");\n\t\t\t\toperator=\"=\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t\t if(value.contains(\"'\")) {\n\t\t\t\t\t value= value.replaceAll(\"'\",\"\").trim();\n\t\t\t\t }\n\t\t\t\t\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\"<\")) {\n\t\t\t\tString[] split = conditions[i].split(\"<\");\n\t\t\t\toperator=\"<\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t}\n\t\t\t \n\t\t\t\n\t\t\trestriction[i].setCondition(operator);\n\t\t\trestriction[i].setPropertyName(property);\n\t\t\trestriction[i].setPropertyValue(value);\n\t\t\trestrictions.add(restriction[i]);\n\n\t\t}\n\t\t}\n\t\n\t\tString[] operators = getLogicalOperators(queryString);\n\t\tif(operators!=null) {\n\t\tfor (String op : operators) {\n\t\t\tlogicalOperators.add(op);\n\t\t}\n\t\t}\n\t\t\n\t\tString[] filds = getFields(queryString);\n\t\tif(filds!=null) {\n\t\tfor (String field : filds) {\n\t\t\tfields.add(field);\n\t\t}\n\t\t}\n\t\t\n\t\tString[] aggregationVal = getAggregateFunctions(queryString);\n\t\tif(aggregationVal!=null) {\n\t\tAggregateFunction[] aggregation = new AggregateFunction[aggregationVal.length];\n\t\tfor (int i = 0; i < aggregationVal.length; i++) {\n\t\t\taggregation[i] = new AggregateFunction();\n\t\t\tString[] split = (aggregationVal[i].replace(\"(\", \" \")).split(\" \");\n\t\t\tSystem.out.println(split[0]);\n\t\t\tSystem.out.println(split[1].replace(\")\", \"\").trim());\n\t\t\t\n\t\t\taggregation[i].setFunction(split[0]);\n\t\t\taggregation[i].setField(split[1].replace(\")\", \"\").trim());\n\t\t\taggregateFunction.add(aggregation[i]);\n\n\t\t}\n\t\t}\n\t\t\n\t\t\t\n\t\t\n\t\tString[] groupBy = getGroupByFields(queryString);\n\t\tif(groupBy!=null) {\n\t\tfor (String group : groupBy) {\n\t\t\tgroupByFields.add(group);\n\t\t}\n\t\t}\n\t\n\t\tString[] orderBy = getOrderByFields(queryString);\n\t\tif(orderBy!=null) {\n\t\tfor (String order : orderBy) {\n\t\t\torderByFields.add(order);\n\t\t}\n\t\t}\n\t\tqueryParameter.setFile(file);\n\t\tif(restrictions.size()!=0) {\n\t\t\tqueryParameter.setRestrictions(restrictions);\n\t\t}\n\t\telse {\n\t\t\tqueryParameter.setRestrictions(null);\n\t\t}\n\t\tif(logicalOperators.size()!=0) {\n\t\tqueryParameter.setLogicalOperators(logicalOperators);\n\t\t}\n\t\telse {\n\t\t\tqueryParameter.setLogicalOperators(null);\n\t\t}\n\t\tbaseQuery=getBaseQuery(queryString);\n\t\t\n\t\tqueryParameter.setFields(fields);\n\t\tqueryParameter.setAggregateFunctions(aggregateFunction);\n\t\tqueryParameter.setGroupByFields(groupByFields);\n\t\tqueryParameter.setOrderByFields(orderByFields);\n\t\tqueryParameter.setBaseQuery(baseQuery.trim());\n\t\treturn queryParameter;\n\n\t}", "public String generateSQL(HttpServletRequest request)throws Exception \n\t{\n\t\t//boolean getLog=getQueryParameter(request.getQueryString(),\"searchMode\").contains(\"Log\");\n String SQLString=\"\";\n //String selectStr=\"\";\n\t\ttry {\n\t\t\tJSONObject searchCon=dealQS.condition2Json(request);\n\t\t\tdealQS.validateSearchConditon(searchCon);\n\t\t\t//String select=selectStr;\n\t\t\tList<String> tables=dealQS.getTables(searchCon);\n\t\t\tString condition=dealQS.getWhereCondition(searchCon);\n\t\t\tif(tables.size()==1) \n\t\t\t{\n\t\t\t\tSQLString=\"SELECT COUNT(*) FROM \"+tables.get(0);\n\t\t\t\tif(!condition.isEmpty()) {\n\t\t\t\t\tSQLString+=\" WHERE \"+condition;\n\t\t\t\t}\n\t\t\t}else {\n\t\t\t\t//for(String table:tables) \n\t\t\t\tfor(int i=0;i<tables.size();i++)\n\t\t\t\t{\n\t\t\t\t\t//selectStr=\"SELECT sql_calc_found_rows Slot,Record_Time,PC_Name\";\n\t\t\t\t\tif(!condition.isEmpty()) {\n\t\t\t\t\t\tSQLString+=\"(SELECT COUNT(*) FROM \"+tables.get(i)+\" WHERE \"+condition+\")\";\n\t\t\t\t\t}else {\n\t\t\t\t\t\tSQLString+=\"(SELECT COUNT(*) FROM \"+tables.get(i)+\")\";\n\t\t\t\t\t}\n\t\t\t\t\tif (i!=tables.size()-1) {\n\t\t\t\t\t\tSQLString+=\"+\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tSQLString=\"SELECT(\"+SQLString+\") AS sum_count\";\n\t\t\t}\n\t\t}catch(Exception e) {\n\t\t\tthrow e;\n\t\t}\n\t\treturn SQLString;\n\t}", "public List<String> queryForStrings(String sql, Object[] params);", "SQLQuery createSQLQuery(final String query);", "protected abstract PreparedResult implement( RelRoot root );", "public Vector executeCmd_v2(String sql_stmt) {\n \tVector v = null;\n \tListIterator li = null;\n \ttry {\n \t//String ipAddr = request.getRemoteAddr();\n \tContext initContext = new InitialContext();\n \tContext envContext = (Context)initContext.lookup(\"java:/comp/env\");\n \tds = (DataSource)envContext.lookup(\"jdbc\"+beans.setting.Constants.getDbschema());\n \tcon = ds.getConnection();\n \t//update civitas\n \tstmt = con.prepareStatement(sql_stmt);\n \tif(sql_stmt.startsWith(\"select\")||sql_stmt.startsWith(\"SELECT\")||sql_stmt.startsWith(\"Select\")) {\n \t\trs = stmt.executeQuery();\n \t\tResultSetMetaData rsmd = rs.getMetaData();\n \t\tint columnsNumber = rsmd.getColumnCount();\n \t\tString col_label = null;\n \t\tString col_type = null;\n \t\tfor(int i=1;i<=columnsNumber;i++) {\n \t\t\t//getColumnName\n \t\t\t\tString col_name = rsmd.getColumnLabel(i);\n \t\t\t\tif(col_label==null) {\n \t\t\t\t\tcol_label = new String(col_name);\n \t\t\t\t\tcol_type = new String(\"`\");\n \t\t\t\t}\n \t\t\t\telse {\n \t\t\t\t\tcol_label = col_label+\"`\"+col_name;\n \t\t\t\t}\n \t\t\t\t//get col type\n \t\t\t\tint type = rsmd.getColumnType(i);\n \t\t\t\tif(type == java.sql.Types.DATE) {\n \t\t\t\t\tcol_type = col_type+\"date`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.DECIMAL || type == java.sql.Types.DOUBLE || type == java.sql.Types.FLOAT ) {\n \t\t\t\t\tcol_type = col_type+\"double`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.INTEGER || type == java.sql.Types.BIGINT || type == java.sql.Types.NUMERIC || type == java.sql.Types.SMALLINT) {\n \t\t\t\t\tcol_type = col_type+\"long`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.VARCHAR || type == java.sql.Types.LONGNVARCHAR || type == java.sql.Types.LONGVARCHAR || type == java.sql.Types.CHAR || type == java.sql.Types.NCHAR) {\n \t\t\t\t\tcol_type = col_type+\"string`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.TIME) {\n \t\t\t\t\tcol_type = col_type+\"time`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.BOOLEAN || type == java.sql.Types.TINYINT) {\n \t\t\t\t\tcol_type = col_type+\"boolean`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.TIMESTAMP) {\n \t\t\t\t\tcol_type = col_type+\"timestamp`\";\n \t\t\t\t}\n \t\t\t}\n \t\tif(v==null) {\n \t\t\t\tv = new Vector();\n \t\t\t\tli=v.listIterator();\n \t\t\t\tli.add(col_type);\n \t\t\t\tli.add(col_label);\n \t\t\t}\n \t\t\t\n \t\t//System.out.println(\"columnsNumber=\"+columnsNumber);\n \t\tString brs = null;\n \t\twhile(rs.next()) {\n \t\t\tfor(int i=1;i<=columnsNumber;i++) {\n \t\t\t\tString tmp = \"\";\n \t\t\t\t/*\n \t\t\t\t * ADA 2 metode cek column type, karena diupdate yg baruan adalah cara yg diatas, belum tau mana yg lebih efektif\n \t\t\t\t */\n \t\t\t\tcol_type = rsmd.getColumnTypeName(i);\n \t\t\t\t\n \t\t\t\tif(col_type.equalsIgnoreCase(\"VARCHAR\")||col_type.equalsIgnoreCase(\"TEXT\")||col_type.startsWith(\"CHAR\")) {\n \t\t\t\t\ttmp = \"\"+rs.getString(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"TINYINT\")) {\n \t\t\t\t\ttmp = \"\"+rs.getBoolean(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.contains(\"INT\")||col_type.contains(\"LONG\")) {\n \t\t\t\t\ttmp = \"\"+rs.getLong(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"DATE\")) {\n \t\t\t\t\ttmp = \"\"+rs.getDate(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"DECIMAL\")||col_type.equalsIgnoreCase(\"DOUBLE\")||col_type.equalsIgnoreCase(\"FLOAT\")) {\n \t\t\t\t\ttmp = \"\"+rs.getDouble(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"TIMESTAMP\")||col_type.equalsIgnoreCase(\"DATETIME\")) {\n \t\t\t\t\ttmp = \"\"+rs.getTimestamp(i);\n \t\t\t\t}\n \t\t\t\t\n \t\t\t\tif(brs==null) {\n \t\t\t\t\tif(Checker.isStringNullOrEmpty(tmp)) {\n \t\t\t\t\t\tbrs = new String(\"null\");\n \t\t\t\t\t}\n \t\t\t\t\telse {\n \t\t\t\t\t\tbrs = new String(tmp);\n \t\t\t\t\t}\n \t\t\t\t}\n \t\t\t\telse {\n \t\t\t\t\tif(Checker.isStringNullOrEmpty(tmp)) {\n \t\t\t\t\t\tbrs = brs +\"`null\";\n \t\t\t\t\t}\n \t\t\t\t\telse {\n \t\t\t\t\t\tbrs = brs+\"`\"+tmp;\n \t\t\t\t\t}\n \t\t\t\t}\t\n \t\t\t}\n \t\t\t\t\n \t\t\tli.add(brs);\n \t\t\tbrs = null;\n \t\t}\n \t}\n \telse {\n \t\t//non select\n \t\tint i = stmt.executeUpdate();\n \t\tif(v==null) {\n \t\t\t\tv = new Vector();\n \t\t\t\tli=v.listIterator();\n \t\t\t\tli.add(\"string`string\");\n \t\t\t\tli.add(\"COMMAND`EXE\");\n \t\t\t}\n \t\t\n \t\tli.add(sql_stmt+\"`\"+i);\n \t}\n \t}\n \tcatch (NamingException e) {\n \t\te.printStackTrace();\n \t\tif(v==null) {\n\t\t\t\tv = new Vector();\n\t\t\t\tli=v.listIterator();\n\t\t\t\tli.add(\"ERROR\");\n\t\t\t}\n \t\tli.add(e.toString());\n \t}\n \tcatch (SQLException ex) {\n \t\tex.printStackTrace();\n \t\tif(v==null) {\n\t\t\t\tv = new Vector();\n\t\t\t\tli=v.listIterator();\n\t\t\t\tli.add(\"ERROR\");\n\t\t\t}\n \t\tli.add(ex.toString());\n \t} \n \tfinally {\n \t\tif (rs!=null) try { rs.close(); } catch (Exception ignore){}\n \t if (stmt!=null) try { stmt.close(); } catch (Exception ignore){}\n \t if (con!=null) try { con.close();} catch (Exception ignore){}\n \t}\n \ttry {\n \t\tv = Tool.removeDuplicateFromVector(v);\n \t}\n \tcatch(Exception e) {}\n \treturn v;\n }", "@Override\r\n\t\tpublic PreparedStatement prepareStatement(String sql)\r\n\t\t\t\tthrows SQLException {\n\t\t\treturn this.conn.prepareStatement(sql);\r\n\t\t}", "String getSafeSql(String name);", "private void appendSelectStatement() {\n builder.append(SELECT).append(getSelectedFields()).append(FROM);\n }", "@Override\n\tprotected void runData(Query query) throws SQLException {\n\t\tStringBuilder q = new StringBuilder();\n\t\tArrayList<Integer> destinationList = new ArrayList<Integer>();\n\t\tquery.inc(2);\n\t\twhile (!isData(query.part()) || !isComment(query.part()) || !isCode(query.part())) {\n\t\t\tq.append(query.part());\n\t\t\tq.append(\" \");\n\t\t\tquery.inc();\n\t\t}\n\t\tArrayList<Integer> originList = getLinesFromData(q.toString());\n\t\tparseSecondCondition(query, originList, destinationList);\n\t}", "@Override\r\n public StringBuilder getWhereStatement(BuildingContext context, StringBuilder targetAlias, List<Object> params) {\n AbstractMsSQLDatabaseDialect dialect = (AbstractMsSQLDatabaseDialect)context.getDialect(); \r\n String schemaName;\r\n try{\r\n schemaName = dialect.getSchemaName();\r\n }catch(Exception e){\r\n throw new RuntimeException(\"Failed to get schema name from MSSQL Dialect\", e);\r\n }\r\n \r\n StringBuilder statement = new StringBuilder((schemaName.length() != 0 ? schemaName+\".\" : \"\"))\r\n .append(\"PREAD\")\r\n .append(\"(\")\r\n .append(QueryUtils.asPrefix(targetAlias)).append(dialect.convertColumnName(Constants.FIELD_ID))\r\n .append(\",\")\r\n .append(QueryUtils.asPrefix(targetAlias)).append(dialect.convertColumnName(Constants.TABLE_NODE__SECURITY_ID))\r\n .append(\",?,?,?,?)>0\");\r\n\r\n \r\n Collection<String> groups = context.getSession().getGroupIDs();\r\n Collection<String> contexts = context.getSession().getContextIDs();\r\n StringBuffer groupNames = new StringBuffer();\r\n int i = 0;\r\n for(String group:groups){\r\n if(i++>0) {\r\n groupNames.append(',');\r\n }\r\n \r\n groupNames.append(dialect.convertStringToSQL(group));\r\n }\r\n \r\n StringBuffer contextNames = new StringBuffer();\r\n i = 0;\r\n for(String c:contexts){\r\n if(i++>0)\r\n contextNames.append(',');\r\n \r\n contextNames.append(dialect.convertStringToSQL(c));\r\n }\r\n \r\n \r\n params.add(dialect.convertStringToSQL(context.getSession().getUserID()));\r\n params.add(groupNames.toString());\r\n params.add(contextNames.toString());\r\n params.add(context.isAllowBrowse());\r\n \r\n return statement;\r\n }", "public String getFindByIdSql() {\r\n\t\treturn getSelectPrefix() + \" and XH=? \";\r\n\t}", "public List<Object[]> getRetencionesAnuladas(int mes, int anio, int idOrganizacion, Sucursal sucursalFP, Sucursal sucursalRetencion, PuntoDeVenta puntoVentaRetencion, String orden, TipoComprobanteSRI tipoComprobante)\r\n/* 125: */ {\r\n/* 126:175 */ StringBuilder sql = new StringBuilder();\r\n/* 127: */ \r\n/* 128:177 */ sql.append(\" SELECT a.fechaEmisionDocumento, f.fechaRegistro, f.fechaEmision, CONCAT(f.establecimiento,'-',f.puntoEmision,'-',f.numero), f.identificacionProveedor, \");\r\n/* 129: */ \r\n/* 130:179 */ sql.append(\" \\t'', f.montoIva*0, f.montoIva*0, f.montoIva*0, '', '', \");\r\n/* 131: */ \r\n/* 132:181 */ sql.append(\" \\tCONCAT(a.establecimiento,'-',a.puntoEmision,'-',a.numeroDesde), f.montoIva*0, f.montoIva*0, f.montoIva*0, f.nombreProveedor, \");\r\n/* 133: */ \r\n/* 134:183 */ sql.append(\"\\tf.montoIva*0, f.montoIva*0, '', a.autorizacion, f.fechaRegistro, f.autorizacion, '', 'ANULADO', f.idFacturaProveedorSRI,'' \");\r\n/* 135:184 */ sql.append(\" FROM AnuladoSRI a, FacturaProveedorSRI f \");\r\n/* 136:185 */ sql.append(\" WHERE a.documentoRelacionado = f.idFacturaProveedorSRI \");\r\n/* 137:186 */ sql.append(\" AND a.tipoComprobanteSRI = :tipoComprobante \");\r\n/* 138:187 */ sql.append(\" AND a.anio = :anio AND a.mes = :mes \");\r\n/* 139:188 */ sql.append(\" AND a.idOrganizacion = :idOrganizacion \");\r\n/* 140:189 */ if (sucursalFP != null) {\r\n/* 141:190 */ sql.append(\" AND f.idSucursal = :idSucursal \");\r\n/* 142: */ }\r\n/* 143:192 */ if (sucursalRetencion != null) {\r\n/* 144:193 */ sql.append(\" AND a.establecimiento = :sucursalRetencion \");\r\n/* 145: */ }\r\n/* 146:195 */ if (puntoVentaRetencion != null) {\r\n/* 147:196 */ sql.append(\" AND a.puntoEmision = :puntoVentaRetencion \");\r\n/* 148: */ }\r\n/* 149:198 */ Query query = this.em.createQuery(sql.toString());\r\n/* 150:199 */ query.setParameter(\"mes\", Integer.valueOf(mes));\r\n/* 151:200 */ query.setParameter(\"anio\", Integer.valueOf(anio));\r\n/* 152:201 */ query.setParameter(\"idOrganizacion\", Integer.valueOf(idOrganizacion));\r\n/* 153:202 */ query.setParameter(\"tipoComprobante\", tipoComprobante);\r\n/* 154:203 */ if (sucursalFP != null) {\r\n/* 155:204 */ query.setParameter(\"idSucursal\", Integer.valueOf(sucursalFP.getId()));\r\n/* 156: */ }\r\n/* 157:206 */ if (sucursalRetencion != null) {\r\n/* 158:207 */ query.setParameter(\"sucursalRetencion\", sucursalRetencion.getCodigo());\r\n/* 159: */ }\r\n/* 160:209 */ if (puntoVentaRetencion != null) {\r\n/* 161:210 */ query.setParameter(\"puntoVentaRetencion\", puntoVentaRetencion.getCodigo());\r\n/* 162: */ }\r\n/* 163:213 */ return query.getResultList();\r\n/* 164: */ }", "private String createSelectWithNameAndAddress() {\n StringBuilder sb = new StringBuilder();\n sb.append(\"SELECT * FROM client\");\n sb.append(\" WHERE name =?\");\n sb.append(\" AND address =?\");\n\n return sb.toString();\n }", "@Override\n\tprotected String getParameters()\n\t{\n\t\tString fields = \" ?, ?, ?, ?, ? \";\n\t\treturn fields;\n\t}", "private String formatSql(String sql) {\n\t\tString sqlStr = formator.format(sql + \";\");\n\t\tif (sqlStr == null) {\n\t\t\tLOGGER.error(\"The formator.format(sql) is a null.\");\n\t\t\treturn null;\n\t\t}\n\n\t\tString trimmedSql = sqlStr.trim();\n\t\tif (!trimmedSql.endsWith(\";\")) {\n\t\t\treturn \"\";\n\t\t}\n\n\t\tString formattedSql = trimmedSql.substring(0, trimmedSql.length() - 1);\n\t\treturn formattedSql;\n\t}", "private PreparedStatement prepareClientes(Connection conn, String data) throws ParseException, SQLException\n\t{\n\t\t\n\t\tPreparedStatement result = null;\n\t\t\n\t\t//Parametros 1 e 6: Data de execucao atual\n\t\tSimpleDateFormat conversorData = new SimpleDateFormat(\"dd/MM/yyyy\");\n\t\tDate dataExecucao = conversorData.parse(data);\n\t\t//Parametro 2: Ano e mes da execucao\n\t\tSimpleDateFormat conversorDatMes = new SimpleDateFormat(\"yyMM\");\n\t\tString datMes = conversorDatMes.format(mesAnterior(dataExecucao));\n\t\t//Parametro 3: Tipo de transacao da promocao PulaPula\n\t\tString tipoTransacao = TIPO_TRANSACAO_PULA_PULA;\n\t\t//Parametros 4 e 7: Primeiro dia do mes da execucao\n\t\tDate dataInicioMesExecucao = getPrimeiroDiaMes(dataExecucao);\n\t\t//Parametro 5: Primeiro dia do mes posterior ao da execucao\n\t\tDate dataInicioProxMes = getPrimeiroDiaMes(proximoMes(dataExecucao));\n\t\t//Parametro 8: Ultimo dia do mes da execucao\n\t\tDate dataFimMesExecucao = getUltimoDiaMes(dataExecucao);\n\n\t\tString sqlClientes = getQuerySelecaoClientes();\n\t\tresult = conn.prepareStatement(sqlClientes);\n\t\tresult.setDate (1, new java.sql.Date(dataExecucao.getTime()));\n\t\tresult.setString(2, datMes);\n\t\tresult.setString(3, tipoTransacao);\n\t\tresult.setDate (4, new java.sql.Date(dataInicioMesExecucao.getTime()));\n\t\tresult.setDate (5, new java.sql.Date(dataInicioProxMes.getTime()));\n\t\tresult.setDate (6, new java.sql.Date(dataExecucao.getTime()));\n\t\tresult.setDate (7, new java.sql.Date(dataInicioMesExecucao.getTime()));\n\t\tresult.setDate (8, new java.sql.Date(dataFimMesExecucao.getTime()));\n\t\t\n\t\treturn result;\n\t}", "@Override\n\tprotected String getParameters()\n\t{\n\t\tString fields = \" ?, ?, ?, ?, ?, ? \";\n\t\treturn fields;\n\t}", "protected String getSQLWhere()\n \t{\n \t\tStringBuffer sql = new StringBuffer();\n \t\tif (fDocumentNo.getText().length() > 0)\n \t\t\tsql.append(\" AND UPPER(p.DocumentNo) LIKE ?\");\n if (fRoutingNo.getText().length() > 0)\n sql.append(\" AND UPPER(p.RoutingNo) LIKE ?\"); // Marcos Zúñiga\n if (fCheckNo.getText().length() > 0)\n sql.append(\" AND UPPER(p.CheckNo) LIKE ?\"); // Marcos Zúñiga\n if (fA_Name.getText().length() > 0)\n sql.append(\" AND UPPER(p.A_Name) LIKE ?\"); // Marcos Zúñiga\n \t\tif (fDateFrom.getValue() != null || fDateTo.getValue() != null)\n \t\t{\n \t\t\tTimestamp from = (Timestamp)fDateFrom.getValue();\n \t\t\tTimestamp to = (Timestamp)fDateTo.getValue();\n \t\t\tif (from == null && to != null)\n \t\t\t\tsql.append(\" AND TRUNC(p.DateTrx) <= ?\");\n \t\t\telse if (from != null && to == null)\n \t\t\t\tsql.append(\" AND TRUNC(p.DateTrx) >= ?\");\n \t\t\telse if (from != null && to != null)\n \t\t\t\tsql.append(\" AND TRUNC(p.DateTrx) BETWEEN ? AND ?\");\n \t\t}\n \t\t//\n \t\tif (fAmtFrom.getValue() != null || fAmtTo.getValue() != null)\n \t\t{\n \t\t\tBigDecimal from = (BigDecimal)fAmtFrom.getValue();\n \t\t\tBigDecimal to = (BigDecimal)fAmtTo.getValue();\n \t\t\tif (from == null && to != null)\n \t\t\t\tsql.append(\" AND p.PayAmt <= ?\");\n \t\t\telse if (from != null && to == null)\n \t\t\t\tsql.append(\" AND p.PayAmt >= ?\");\n \t\t\telse if (from != null && to != null)\n \t\t\t\tsql.append(\" AND p.PayAmt BETWEEN ? AND ?\");\n \t\t}\n \t\tsql.append(\" AND p.IsReceipt=?\");\n \n \t\t// sql.append(\" AND p.IsReconciled='N'\");\n \n \t\tlog.fine(sql.toString());\n \t\treturn sql.toString();\n \t}", "DataSet sql(SQLContext context, String sql);", "SELECT createSELECT();", "@Override\n\tprotected void prepare() {\n\t\tOrder_ID = getRecord_ID();\n\t\tEventType = getParameterAsString(\"EventType\");\n\t\t\n\t}", "public abstract ResultList executeSQL(RawQuery rawQuery);", "private Set parseSQL(String sqlin){\r\n \tSet columnProposals = new HashSet();\r\n \t//Find the end of \"SELECT\" and the start of \"FROM\"\r\n \t//if you dont find SELECT run away\r\n \tint selectStartPos = sqlin.toLowerCase().indexOf(\"select\", 0);\r\n \tint fromStartPos = sqlin.toLowerCase().indexOf(\"from\", 0);\r\n \tif(selectStartPos == -1){\r\n \t\treturn null;\r\n \t}\r\n \tif(fromStartPos == -1){\r\n \t\treturn null;\r\n \t}\r\n \t\r\n \t//Ok, so we found a SELECT and a FROM, lets get the middle bit!\r\n \tString allColumns = sqlin.substring(selectStartPos + (\"select\").length(), fromStartPos).trim();\r\n \tString[] columnArray = allColumns.split(\",\");\r\n \t\r\n \tfor(int i=0; i<columnArray.length; i++){\r\n \t\tString column = columnArray[i].trim();\r\n \t\t//We need to find if it has an AS\r\n \t\t\r\n \t\tint findAS = column.toLowerCase().indexOf(\" as \", 0);\r\n \t\t\r\n \t\tif(findAS != -1){\r\n \t\t\tcolumn = column.substring(findAS + 4, column.length()).trim();\r\n \t\t}\r\n \t\tcolumnProposals.add(column);\r\n \t}\r\n \treturn columnProposals;\r\n }", "String escapeReservedWords(String query);", "public String ejecutarSQLselect(String sql, int div){\n String line=\"\";\n try {\n iniciarConexion();\n ResultSet rs = this.statement.executeQuery(sql);\n if (rs.next()){ \n String paquete = rs.getString(\"dataInstrumento\");\n String token[]=paquete.split(\";\");\n double aux []=new double[token.length];\n for(int i=0;i<aux.length;i++){\n aux[i]+=Double.parseDouble(token[i]);\n }\n while (rs.next()) {\n paquete = rs.getString(\"dataInstrumento\");\n String token2[]=paquete.split(\";\");\n for(int i=0;i<aux.length;i++){\n aux[i]+=Double.parseDouble(token2[i]);\n }\n }\n for(int i=0;i<aux.length-1;i++){\n line+=aux[i]/div+\";\";// posible error entteros\n }\n line+=aux[aux.length-1]/div;\n } \n rs.close();\n cerrarConexion();\n } catch (SQLException ex) {\n System.out.println(ex);\n }\n return line;\n }", "public static String getCmd(String sql) {\r\n\t\tString ret = \"\";\r\n\r\n\t\tchar ch;\r\n\t\tString word = \"\";\r\n\r\n\t\tfor (int x = 0; x < sql.length(); x++) {\r\n\t\t\tch = sql.charAt(x);\r\n\t\t\t// word = word + ch;\r\n\r\n\t\t\tif (ch == ' ') {\r\n\t\t\t\tx = sql.length() + 1;\r\n\t\t\t} else {\r\n\t\t\t\tword = word + ch;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tret = word;\r\n\r\n\t\treturn (ret);\r\n\t}", "private String addParametersAsLiterals(fyiReporting.RDL.Report rpt, IDbConnection cn, String sql, boolean bValue) throws Exception {\n if (this._QueryParameters == null || this._QueryParameters.getItems() == null || this._QueryParameters.getItems().Count == 0)\n return sql;\n \n // Only do this for ODBC datasources - AddParameters handles it in other cases\n if (!RdlEngineConfig.doParameterReplacement(getProvider(),cn))\n {\n if (!_QueryParameters.getContainsArray())\n return sql;\n \n }\n \n // when array we do substitution\n StringBuilder sb = new StringBuilder(sql);\n List<QueryParameter> qlist = new List<QueryParameter>();\n if (_QueryParameters.getItems().Count <= 1)\n qlist = _QueryParameters.getItems();\n else\n {\n // need to sort the list so that longer items are first in the list\n // otherwise substitution could be done incorrectly\n qlist = new List<QueryParameter>(_QueryParameters.getItems());\n qlist.Sort();\n } \n for (Object __dummyForeachVar12 : qlist)\n {\n QueryParameter qp = (QueryParameter)__dummyForeachVar12;\n String paramName = new String();\n // force the name to start with @\n if (qp.getName().getNm()[0] == '@')\n paramName = qp.getName().getNm();\n else\n paramName = \"@\" + qp.getName().getNm(); \n // build the replacement value\n String svalue = new String();\n if (bValue)\n {\n // use the value provided\n svalue = this.parameterValue(rpt,qp);\n }\n else\n {\n // just need a place holder value that will pass parsing\n TypeCode __dummyScrutVar1 = qp.getValue().getExpr().getTypeCode();\n if (__dummyScrutVar1.equals(TypeCode.Char))\n {\n svalue = \"' '\";\n }\n else if (__dummyScrutVar1.equals(TypeCode.DateTime))\n {\n svalue = \"'1900-01-01 00:00:00'\";\n }\n else if (__dummyScrutVar1.equals(TypeCode.Decimal) || __dummyScrutVar1.equals(TypeCode.Double) || __dummyScrutVar1.equals(TypeCode.Int32) || __dummyScrutVar1.equals(TypeCode.Int64))\n {\n svalue = \"0\";\n }\n else if (__dummyScrutVar1.equals(TypeCode.Boolean))\n {\n svalue = \"'false'\";\n }\n else\n {\n svalue = \"' '\";\n } \n } \n sb.Replace(paramName, svalue);\n }\n return sb.ToString();\n }", "public void setSql(String sql) {\n this.sql = sql;\n }", "static SqlInfo parse(String namedSql, List<Parameter> parameters) {\n List<String> names = new ArrayList<String>();\n String sql = collectNamesAndConvertToQuestionMarks(namedSql, names, parameters);\n log.debug(\"sqlAfterSubs={}\", sql);\n return new SqlInfo(sql, names);\n }", "private void preparedStatementForEmployeeData() {\n\t\ttry {\n\t\t\tConnection connection = this.getConnection();\n\t\t\tString sql = \"Select * from employee_payroll_2 WHERE name = ?\";\n\t\t\temployeePayrollDataStatement = connection.prepareStatement(sql);\n\t\t} catch (SQLException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "protected static PreparedStatement prepareStatement(ReviewDb db, String sql)\n throws SQLException {\n return ((JdbcSchema) db).getConnection().prepareStatement(sql);\n }", "@Override\n\tpublic void executeUpdateDinamicSQL(String s) throws Exception {\n\t\t\n\t}", "public AvaticaPrepareResult prepare(AvaticaStatement statement_, String sql) {\n return new DrillPrepareResult(sql);\n }", "public String[] makeToDeterministic(String sqlQuery) throws JSQLParserException {\n\t\t\n\t\tDebug.println(\"Try to make the queries deterministic\");\n\t\t\n\t\tString[] deterQueries = null;\n\t\t\n\t\t// contains current_time_stamp\n\t\t// contains NOW(), use the same\n\t\t// contains select, do the select first\n\t\t// contains delete from where (not specify by full primary key)\n\t\t// fill in default value and IDs for insert\n\t\tnet.sf.jsqlparser.statement.Statement sqlStmt = cJsqlParser.parse(new StringReader(sqlQuery));\n\t\tif (sqlStmt instanceof Insert) {\n\t\t\tInsert insertStmt = (Insert) sqlStmt;\n\t\t\tString tableName = insertStmt.getTable().getName();\n\t\t\tList<String> colList = new ArrayList<String>();\n\t\t\tList<String> valList = new ArrayList<String>();\n\t\t\tIterator colIt = insertStmt.getColumns().iterator();\n\t\t\twhile(colIt.hasNext()){\n\t\t\t\tcolList.add(colIt.next().toString());\n\t\t\t}\n\t\t\t//replace selection with their results\n\t\t\treplaceSelectionForInsert(insertStmt, valList);\n\t\t\t//call function to replace and fill in the missing fields\n\t\t\tfillInMissingValue(tableName, colList, valList);\n\t\t\tdeterQueries = new String[1];\n\t\t\tdeterQueries[0] = assembleInsert(tableName, colList, valList);\n\t\t}else if(sqlStmt instanceof Update){\n\t\t\tUpdate updateStmt = (Update) sqlStmt;\n\t\t\tList<String> colList = new ArrayList<String>();\n\t\t\tList<String> valList = new ArrayList<String>();\n\t\t\tIterator colIt = updateStmt.getColumns().iterator();\n\t\t\twhile(colIt.hasNext()){\n\t\t\t\tcolList.add(colIt.next().toString());\n\t\t\t}\n\t\t\tIterator valueIt = updateStmt.getExpressions().iterator();\n\t\t\twhile(valueIt.hasNext()){\n\t\t\t\tvalList.add(valueIt.next().toString());\n\t\t\t}\n\t\t\t//replace values for selection in the itemlist\n\t\t\treplaceSelectionForUpdate(updateStmt,valList);\n\t\t\t//replace database functions like now or current time stamp\n\t\t\treplaceValueForDatabaseFunctions(updateStmt.getTable().getName(), valList);\n\t\t\t//where clause figure out whether this is specify by primary key or not, if yes, go ahead,\n\t\t\t//it not, please first query \n\t\t\tdeterQueries = fillInMissingPrimaryKeysForUpdate(updateStmt, colList, valList);\n\t\t\t\n\t\t}else if(sqlStmt instanceof Delete){\n\t\t\tDelete deleteStmt = (Delete) sqlStmt;\n\t\t\t//where clause figure out whether this is specify by primary key or not, if yes, go ahead,\n\t\t\t//it not, please first query \n\t\t\tdeterQueries = fillInMissingPrimaryKeysForDelete(deleteStmt);\n\t\t}\n\t\t\n\t\treturn deterQueries;\n\t}", "<T extends BaseDto, V extends BaseDto> List<T> executeQuery(String reqResQuery, V req, QueryResultTransformer<T> transformer, Connection conn);", "private String stageDetailsFromDB(String queryString){\n\t\tString RET=\"\";\n\t\ttry\n\t\t{\n\t\t\tcon = Globals.getDatasource().getConnection();\n\t\t\tps = con.prepareStatement(queryString); \n\t\t\tresult = ps.executeQuery();\n\t\t\tif (result.first()) {\n\t\t\t\tRET = result.getString(1);\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t}\n\t\tcatch(SQLException sqle){sqle.printStackTrace();}\n\t\tfinally {\n\t\t Globals.closeQuietly(con, ps, result);\n\t\t}\n\t\treturn RET;\n\t}", "public void prepareExecuteSelect() {\n setCallFromStatement();\n // The statement is no longer require so can be released.\n clearStatement();\n\n super.prepareExecuteSelect();\n }" ]
[ "0.6679664", "0.6430556", "0.6278587", "0.61006624", "0.5992704", "0.59693927", "0.59265107", "0.59147", "0.58785415", "0.5856395", "0.5816937", "0.5809208", "0.5787084", "0.57269454", "0.57217836", "0.57170945", "0.5711721", "0.57075167", "0.57036334", "0.5686189", "0.56763893", "0.56755656", "0.5640733", "0.5592838", "0.5563667", "0.5563078", "0.55551934", "0.5517311", "0.54792833", "0.54746586", "0.54705536", "0.5460032", "0.5418282", "0.5405029", "0.5402087", "0.54010844", "0.5400651", "0.53723925", "0.5360007", "0.53509766", "0.5336335", "0.53350675", "0.53325903", "0.53319013", "0.5326896", "0.5321177", "0.5309805", "0.5302376", "0.52903306", "0.52816504", "0.52813256", "0.5280961", "0.5280593", "0.5280313", "0.5261455", "0.5256564", "0.5254802", "0.5254802", "0.5245016", "0.5233116", "0.52323145", "0.5208377", "0.5195097", "0.5191266", "0.51834184", "0.517111", "0.5166814", "0.5166644", "0.5152001", "0.51501334", "0.5143618", "0.5138414", "0.51344603", "0.51342624", "0.5131054", "0.5124886", "0.5118074", "0.51024187", "0.51017374", "0.51016545", "0.5098506", "0.50985026", "0.5096", "0.50903946", "0.50898314", "0.50737673", "0.50730467", "0.50721097", "0.5069836", "0.5065151", "0.5063329", "0.50548965", "0.5052331", "0.5048336", "0.5048175", "0.503768", "0.5030332", "0.5029278", "0.5025848", "0.5023485", "0.5023295" ]
0.0
-1
PREPARING THE SQL REQUEST
private List<Object[]> executeWeekQuery(String week, String year) { try { //Clear all tables //################# Declared Harness Data #################### Helper.startSession(); String query_str_1 = "(SELECT " + year + " as year, " + week + " as week, 'Matin' as SHIFT, segment, workplace, harness_part, harness_index, supplier_part_number, harness_type, SUM(qty_read) as total_qty " + "FROM base_container bc " + "WHERE EXTRACT(HOUR FROM bc.closed_time) in (6,7,8,9,10,11,12,13) " + "AND EXTRACT(WEEK FROM bc.closed_time) = " + week + "AND EXTRACT(YEAR FROM bc.closed_time) = " + year + "GROUP BY segment, workplace, harness_part, harness_index, supplier_part_number, harness_type)"; String query_str_2 = "(SELECT " + year + " as year, " + week + " as week, 'Soir' as SHIFT, segment, workplace, harness_part, harness_index, supplier_part_number, harness_type, SUM(qty_read) as total_qty " + "FROM base_container bc " + "WHERE EXTRACT(HOUR FROM bc.closed_time) in (14,15,16,17,18,19,20,21) " + "AND EXTRACT(WEEK FROM bc.closed_time) = " + week + "AND EXTRACT(YEAR FROM bc.closed_time) = " + year + "GROUP BY segment, workplace, harness_part, harness_index, supplier_part_number, harness_type)"; String query_str_3 = "(SELECT " + year + " as year, " + week + " as week, 'Nuit' as SHIFT, segment, workplace, harness_part, harness_index, supplier_part_number, harness_type, SUM(qty_read) as total_qty " + "FROM base_container bc " + "WHERE EXTRACT(HOUR FROM bc.closed_time) in (22,23,0,1,2,3,4,5) " + "AND EXTRACT(WEEK FROM bc.closed_time) = " + week + "AND EXTRACT(YEAR FROM bc.closed_time) = " + year + "GROUP BY segment, workplace, harness_part, harness_index, supplier_part_number, harness_type)"; String query_str = "SELECT * FROM (" + query_str_1 + " UNION " + query_str_2 + " UNION " + query_str_3 + ") results ORDER BY shift, segment, workplace;"; SQLQuery query = Helper.sess.createSQLQuery(query_str); this.dataResultList = query.list(); Helper.sess.getTransaction().commit(); return this.dataResultList; } catch (HibernateException e) { if (Helper.sess.getTransaction() != null) { Helper.sess.getTransaction().rollback(); } } return this.dataResultList; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void executeRequest(String sql) {\n\t}", "default String preprocessSQL(String sql, QueryParameters queryParameters, SessionFactoryImplementor factory,\n\t\t\t\t\t\t List<AfterLoadAction> afterLoadActions) {\n\t\t// I believe this method is only needed for query-type loaders\n\t\treturn sql;\n\t}", "abstract protected String buildSQL(BatchSQLEnum sql);", "private String buildQuery(String ... sql) {\n\t\tfinal StringBuffer sb = new StringBuffer();\n\t\t\n\t\tfor (String s : sql) {\n\t\t\tsb.append(ParsingUtil.QUERY + \" \" + s + \"\\n\");\n\t\t}\n\t\t\n\t\treturn sb.toString(); \n\t}", "public void makeSql() {\n\t\tfor(int i=0; i<arr_sql.length; i++) {\n\t\t\tarr_sql[i] = new StringBuffer();\n\t\t}\n\t\t\n\t\t/*\n\t\t * 공통코드 쿼리\n\t\t * 대리점구분 : CU006\n\t\t * 직판구분 : CU012\n\t\t * 지역 : SY006\n\t\t * 계약상태 : CU013\n\t\t * 사용유무 : SY011\n\t\t * 보증보험회사 : CU010\n\t\t * 하위대리점여부 : CU011\n\t\t */\n\t\tarr_sql[0].append (\"SELECT\t\t\t\t\t\t\t\t\t\t\\n\")\n\t\t\t\t .append (\"\t' ' head, ' ' detail, '전체' detail_nm \\n\")\n\t\t\t\t .append (\"FROM DUAL \\n\")\n\t\t\t\t .append (\"UNION ALL \\n\")\n\t\t\t\t .append (\"SELECT \\n\")\n\t\t\t\t .append (\"\tB.head, B.detail, B.detail_nm \\n\")\n\t\t\t\t .append (\"FROM \\n\")\n\t\t\t\t .append (\"\tSALES.TSY011 A, \\n\")\n\t\t\t\t .append (\"\tSALES.TSY010 B \\n\")\n\t\t\t\t .append (\"WHERE 1=1 \\n\")\n\t\t\t\t .append (\" AND A.head = B.head \\n\")\n\t\t\t\t .append (\" AND B.head = ? \\n\")\n\t\t\t\t .append (\" AND LENGTH (rtrim(B.detail)) > 0 \\n\");\n\t\t\n\t\t/*\n\t\t * 대리점 조회\n\t\t */\n\t\tarr_sql[1].append(\"SELECT T1.client_sid\t\t\t \t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 매출처SID \t*/\n\t \t\t .append(\"\t\t ,T1.vend_cd \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* [회계]거래처 코드 \t*/\n\t \t\t .append(\"\t\t ,T1.client_cd \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 매출처 코드 \t*/\n\t \t\t .append(\"\t\t ,T1.client_nm \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 매출처 명 \t*/\n\t \t\t .append(\"\t\t ,T1.client_gu \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 매출처구분 :CU005 \t*/\n\t \t\t \n\t \t\t .append(\"\t\t ,T1.agen_gu \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 대리점구분 :CU006 \t*/\n\t \t\t .append(\"\t\t ,T1.dir_yn \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 직판여부 :CU012 \t*/\n\t \t\t .append(\"\t\t ,T1.area_cd \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 지역코드 :SY006 \t*/\n\t \t\t .append(\"\t\t ,T1.sal_dam_sid \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 영업담당자코드[TSY410] */\n\t \t\t .append(\"\t\t ,T1.client_dam_nm \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 매출처담당자 \t*/\n\t \t\t \n\t \t\t .append(\"\t\t ,T1.tel_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 전화번호 \t*/\n\t \t\t .append(\"\t\t ,T1.mobile_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 휴대전화 \t*/\n\t \t\t .append(\"\t\t ,T1.fax_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* FAX번호 \t*/\n\t \t\t .append(\"\t\t ,T1.e_mail \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 이메일 \t*/\n\t \t\t .append(\"\t\t ,T1.zip_cd \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 우편번호[TSY110] */\n\t \t\t \n\t \t\t .append(\"\t\t ,T1.address1 \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 주소1 \t*/\n\t \t\t .append(\"\t\t ,T1.address2 \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 주소2 \t*/\n\t \t\t .append(\"\t\t ,T1.commi_rate \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 수수료율 \t*/\n\t \t\t .append(\"\t\t ,T1.cunt_status \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 계약상태 :CU013 \t*/\n\t \t\t .append(\"\t\t ,T1.bancod \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 은행코드 [BANKCODE] */\n\t \t\t \n\t \t\t .append(\"\t\t ,T1.bank_acc_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 은행계좌번호 \t*/\n\t \t\t .append(\"\t\t ,T1.bank_acct_nm \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 예금주 \t*/\n\t \t\t .append(\"\t\t ,T1.use_yn \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 사용여부 :SY011 \t*/ \n\t \t\t .append(\"\t\t ,T1.client_url\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 홈페이지 URL\t\t\t\t*/\n\t \t\t .append(\"\t\t ,T2.sal_dam_nm \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 영업담당자명 \t*/\n\t \t\t .append(\"\t\t ,T3.vend_nm \t\t\t\t\t\t\t\t\t\t\t\t \t\t\t\t\\n\")\t/* 거래처명 \t*/\n\t \t\t \n\t \t\t .append(\"\t\t ,T4.bannam \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 은행명 \t*/\n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'CU006',T1.agen_gu) AS agen_gu_name \t\t\t\t\t\\n\")\t/* 대리점구분명 \t\t\t\t*/ \n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'CU012',T1.dir_yn) AS dir_yn_name \t\t\t\t\t\\n\")\t/* 직판여부명 \t\t\t\t*/ \n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'SY006',T1.area_cd) AS area_nm\t\t\t\t\t\t\t\\n\")\t/* 지역명 \t\t\t\t*/\n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'CU013',T1.cunt_status) AS cunt_status_name \t\t\t\\n\")\t/* 계약상태명 \t\t\t\t*/\n\n\t \t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'SY011',T1.use_yn) AS use_yn_name \t\t\t\\n\")\t/* 사용여부명 \t\t\t \t*/\n\n\t \t\t .append(\"FROM SALES.TCU030 T1 LEFT OUTER JOIN SALES.TSY410 T2 ON T1.SAL_DAM_SID = T2.SAL_DAM_SID \\n\")\n\t \t\t .append(\"\t\t LEFT OUTER JOIN ACCOUNT.GCZM_VENDER T3 ON T1.VEND_CD = T3.VEND_CD \t\t\t\t\t\\n\")\n\t \t\t .append(\"\t\t LEFT OUTER JOIN ACCOUNT.BANKCODE T4 ON T1.BANCOD = T4.BANCOD \t\t\t\t\t\\n\")\n\t \t\t .append(\"WHERE 1 = 1 \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\n\t \t\t .append(\"\t\t AND T1.client_GU = '1' \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\");\n\t\t/*\n\t\t * 계약정보 조회\n\t\t */\n\t\tarr_sql[2].append(\"SELECT T1.client_sid\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 매출처SID \t*/\n\t\t\t\t .append(\"\t\t ,T1.cont_date\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\") \t/* 계약일자 \t*/\n\t\t\t\t .append(\"\t\t ,T1.expire_date\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 만기일자 \t*/\n\t\t\t\t .append(\"\t\t ,TO_NUMBER(T1.insur_amt) AS insur_amt\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 보험료 \t*/\n\t\t\t\t .append(\"\t\t ,T1.insur_comp_cd\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 보증보험회사:CU010 \t*/\n\t\t\t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ('CU010',T1.insur_comp_cd) AS insur_comp_cd_name\t\t\\n\") \t/* 보증보험회사명 \t\t*/ \n\t\t\t\t .append(\"FROM SALES.TCU031 T1 \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"WHERE 1=1\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\");\n\t\t \n\t\n\t\t/*\n\t\t * 지점정보 조회\n\t\t */\n\t\tarr_sql[3].append(\"SELECT T1.client_sid\t\t\t\t\t\t\t\t\t\t\t\t\\n\") \t/* 매출처SID \t\t*/\n\t\t\t\t .append(\"\t\t ,T1.branch_cd\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 지점코드 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.branch_nm \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\") \t/* 지점명 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.area_cd\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\") \t/* 지역코드:SY006 \t\t*/\n\t\t\t\t .append(\"\t\t ,T1.client_down_yn \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 하위대리점여부:CU011 \t*/\n\t\t\t\t .append(\"\t\t ,T1.empno \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 담당자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.tel_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 전화번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.mobile_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 휴대폰 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.fax_no \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 팩스번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,T1.branch_url \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\")\t/* 지점홈페이지 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'SY006', T1.area_cd) AS area_nm\t\t\t\t\t\t\t\\n\") \t/* 지역명:SY006 \t\t*/\n\t\t\t\t .append(\"\t\t ,SALES.FN_DETAIL_NM ( 'CU011',T1.client_down_yn) AS client_down_yn_name \t\\n\")\t/* 하위대리점여부명 \t\t*/\n\t\t\t\t .append(\"FROM SALES.TCU032 T1\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\\n\");\n\t\t\n\t\t\n\t\t/*\n\t\t * 대리점 등록\n\t\t */\n\n\t\tarr_sql[4].append(\"INSERT INTO SALES.TCU030 (\")\n\t\t\t\t .append(\"\t\t\t\t client_sid \\n\")\t\n\t\t\t\t .append(\"\t\t\t\t,vend_cd \\n\")\t/* [회계]거래처 코드 \t*/\n\t\t\t\t .append(\"\t\t\t\t,client_cd \\n\")\t/* 매출처 코드 \t*/\n\t\t\t\t .append(\"\t\t\t\t,client_nm \\n\")\t/* 매출처 명 \t*/\n\t\t\t\t .append(\"\t\t\t\t,client_gu \\n\")\t/* 매출처구분 :CU005 \t*/\n\t\t\t\t .append(\"\t\t\t\t,agen_gu \\n\")\t/* 대리점구분 :CU006 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t\t\t,dir_yn \\n\")\t/* 직판여부 :CU012 \t*/\n\t\t\t\t .append(\"\t\t\t\t,area_cd \\n\")\t/* 지역코드 :SY006 \t*/\n\t\t\t\t .append(\"\t\t\t\t,sal_dam_sid \\n\")\t/* 영업담당자코드[TSY410] \t*/\n\t\t\t\t .append(\"\t\t\t\t,client_dam_nm \\n\")\t/* 매출처담당자 \t*/\n\t\t\t\t .append(\"\t\t\t\t,tel_no \\n\")\t/* 전화번호 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t\t\t,mobile_no \\n\")\t/* 핸드폰 \t*/\n\t\t\t\t .append(\"\t\t\t\t,fax_no \\n\")\t/* FAX번호 \t*/\n\t\t\t\t .append(\"\t\t\t\t,e_mail \\n\")\t/* 이메일 \t*/\n\t\t\t\t .append(\"\t\t\t\t,zip_cd \\n\")\t/* 소재지우편번호[TSY110] */\n\t\t\t\t .append(\"\t\t\t\t,address1 \\n\")\t/* 소재지주소1 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t\t\t,address2 \\n\")\t/* 소재지주소2 \t*/\n\t\t\t\t .append(\"\t\t\t\t,commi_rate \t\\n\") \t/* 수수료율 \t*/\n\t\t\t\t .append(\"\t\t\t\t,cunt_status \\n\")\t/* 계약상태 :CU013 \t*/\n\t\t\t\t .append(\"\t\t\t\t,bancod\t\t\t\\n\") \t/* 은행코드 \t\t\t\t\t*/\n\t\t\t\t .append(\"\t\t\t\t,bank_acc_no \\n\")\t/* 은행계좌번호[BANKCODE] \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t\t\t,bank_acct_nm\t\\n\")\t/* 예금주 \t\t\t\t\t*/\n\t\t\t\t .append(\"\t\t\t\t,use_yn\t\t\t\\n\")\t/* 사용여부 \t\t\t\t\t*/\n\t\t\t\t\n\t\t\t\t .append(\"\t\t \t\t,u_date \t\\n\") \t/* 최종수정일자 \t*/\n\t \t\t .append(\"\t\t \t\t,u_empno \t\\n\")\t/* 최종수정자사번 \t*/\n\t \t\t .append(\"\t\t \t\t,u_ip \\n\")\t/* 최종수정IP */\t\t\t\n\t \t\t .append(\"\t\t\t\t,client_url\t\t\\n\")\t/* 홈페이지 */\n\t\t\t\t .append(\"\t\t\t)\t\t\t\t\t\\n\")\n\t\t\t\t \n\t\t\t\t .append(\"VALUES\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t(\t \t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\tSALES.SWS_TCU030_ID.NEXTVAL,?,?,?,?,?,\t\t\\n\")\t\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,SYSTIMESTAMP,?,?,?\t\\n\")\n\t\t\t\t .append(\"\t\t\t)\");\n\t\t\n\t\n\t\t\n\t\t/*\n\t\t * 계약정보 등록\n\t\t */\n\t\tarr_sql[5].append(\"INSERT INTO SALES.TCU031 ( \t\\n\")\n\t\t\t\t .append(\" \t client_SID\t\t\t\\n\")\t/* 매출처SID \t*/\n\t\t\t\t .append(\"\t\t ,cont_date\t\t\t\t\\n\") \t/* 계약일자 \t*/\n\t\t\t\t .append(\"\t\t ,expire_date\t\t\t\\n\")\t/* 만기일자 \t*/\n\t\t\t\t .append(\"\t\t ,insur_amt\t\t\t\t\\n\")\t/* 보험료 \t*/\n\t\t\t\t .append(\"\t\t ,insur_comp_cd\t\t\t\\n\")\t/* 보증보험회사:CU010 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,u_date\t\t\t\t\\n\")\t/* 최종수정일자 \t*/\n\t\t\t\t .append(\"\t\t ,u_empno \t\t\t\t\\n\") \t/* 최종수정자사번 \t*/\n\t\t\t\t .append(\"\t\t ,u_ip\t\t\t\t\t\\n\")\t/* 최종수정IP \t*/\n\t\t\t\t .append(\"\t\t)\t\t\t\t\t\t\\n\")\n\t\t\t\t \n\t\t\t\t .append(\"VALUES\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t(\t \t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\t\n\t\t\t\t .append(\"\t\t\t\tSYSTIMESTAMP,?,?\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t)\");\n\t\t\t\t\t\n\t\t/*\n\t\t * 지점정보 등록\n\t\t */\n\t\t\n\t\tarr_sql[6].append(\"INSERT INTO SALES.TCU032 ( \t\\n\")\n\t\t\t\t .append(\"\t\t client_SID\t\t\t\\n\") \t/* 매출처SID \t\t*/\n\t\t\t\t .append(\"\t\t ,branch_cd\t\t\t\t\\n\")\t/* 지점코드 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,branch_nm \t\t\t\\n\") \t/* 지점명 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,area_cd\t\t\t\t\\n\") \t/* 지역코드:SY006 \t\t*/\n\t\t\t\t .append(\"\t\t ,client_down_yn \t\t\\n\")\t/* 하위대리점여부:CU011 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,empno \t\t\t\t\\n\")\t/* 담당자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,tel_no \t\t\t\t\\n\")\t/* 전화번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,mobile_no \t\t\t\\n\")\t/* 휴대폰 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,fax_no \t\t\t\t\\n\")\t/* 팩스번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,branch_url \t\t\t\\n\")\t/* 지점홈페이지 \t\t\t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,u_date \t\t\t\t\\n\")\t/* 최종수정일자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,u_empno \t\t\t\t\\n\")\t/* 최종수정자사번 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,u_ip \t\t\t\t\\n\")\t/* 최종수정IP \t\t*/\n\t\t\t\t .append(\"\t)\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"VALUES\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t(\t \t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\t\n\t\t\t\t .append(\"\t\t\t\t?,?,?,?,?,\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t\tSYSTIMESTAMP,?,?\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t\t)\");\n\t\t\n\t\t/*\n\t\t * 대리점 수정\n\t\t */\n\n\t\tarr_sql[7].append(\"UPDATE SALES.TCU030 SET \t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t vend_cd\t\t= ? \t\t\t\t\\n\")\t/* [회계]거래처 코드 \t*/\n\t\t\t\t .append(\"\t\t,client_nm\t\t= ? \t\t\t\t\\n\")\t/* 매출처 명 \t*/\n\t\t\t\t .append(\"\t\t,agen_gu\t\t= ? \t\t\t\t \t\\n\")\t/* 대리점구분 :CU006 \t*/\n\t\t\t\t .append(\"\t\t,dir_yn\t\t\t= ? \t\t\t\t\\n\")\t/* 직판여부 :CU012 \t*/\n\t\t\t\t .append(\"\t\t,area_cd \t= ? \t\t\t\t\t\\n\")\t/* 지역코드 :SY006 \t*/\n\n\t\t\t\t .append(\"\t\t,sal_dam_sid\t= ? \t\t\t\t\t\\n\")\t/* 영업담당자코드[TSY410] */\n\t\t\t\t .append(\"\t\t,client_dam_nm\t= ? \t\t\t\t\t\\n\")\t/* 매출처담당자 \t*/\n\t\t\t\t .append(\"\t\t,tel_no = ?\t\t\t\t\t\t\\n\")\t/* 전화번호 \t*/\n\t\t\t\t .append(\"\t\t,mobile_no = ?\t\t\t\t\t\t\\n\")\t/* 핸드폰 \t*/\n\t\t\t\t .append(\"\t\t,fax_no = ?\t\t\t\t\t\t\\n\")\t/* FAX번호 \t*/\n\n\t\t\t\t .append(\"\t\t,e_mail = ?\t\t\t\t\t\t\\n\")\t/* 이메일 \t*/\n\t\t\t\t .append(\"\t\t,zip_cd = ?\t\t\t\t\t\t\\n\")\t/* 소재지우편번호[TSY110] \t*/\n\t\t\t\t .append(\"\t\t,address1 = ?\t\t\t\t\t\t\\n\")\t/* 소재지주소1 \t*/\n\t\t\t\t .append(\"\t\t,address2 = ?\t\t\t\t\t\t\\n\")\t/* 소재지주소2 \t*/\n\t\t\t\t .append(\"\t\t,commi_rate \t= ?\t\t\t\t\t\t\\n\") \t/* 수수료율 \t*/\n\n\t\t\t\t .append(\"\t\t,cunt_status = ?\t\t\t\t\t\t\\n\")\t/* 계약상태 :CU013 \t*/\n\t\t\t\t .append(\"\t\t,bancod\t\t\t= ?\t\t\t\t\t\t\\n\") \t/* 은행코드\t \t\t\t\t*/\n\t\t\t\t .append(\"\t\t,bank_acc_no = ?\t\t\t\t\t\t\\n\")\t/* 은행계좌번호[BANKCODE]\t\t*/\n\t\t\t\t .append(\"\t\t,bank_acct_nm\t= ?\t\t\t\t\t\t\\n\")\t/* 예금주 \t\t\t\t\t*/\n\t\t\t\t .append(\"\t\t,use_yn\t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 사용여부 \t\t\t\t\t*/\n\n\t\t\t\t .append(\"\t\t,u_date \t= SYSTIMESTAMP\t\t\\n\") \t/* 최종수정일자 \t*/\n\t \t\t .append(\"\t\t,u_empno \t= ?\t\t\t\t\t\t\\n\")\t/* 최종수정자사번 \t*/\n\t \t\t .append(\"\t\t,u_ip = ?\t\t\t\t\t\t\\n\")\t/* 최종수정IP */\n\t \t\t .append(\"\t,client_url = ?\t\t\t\t\t\t\\n\")\t/* 홈페이지 */\n\t\t\t\t .append (\"WHERE client_sid \t= ? \t\t\t\t\\n\");\n\t\t\t\t \n\t\t/*\n\t\t * 계약정보 수정\n\t\t */\n\t\tarr_sql[8].append(\"UPDATE SALES.TCU031 SET\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t cont_date\t\t\t= ?\t\t\t\t\t\\n\") \t/* 계약일자 \t*/\n\t\t\t\t .append(\"\t\t ,expire_date\t\t= ?\t\t\t\t\t\\n\")\t/* 만기일자 \t*/\n\t\t\t\t .append(\"\t\t ,insur_amt\t\t\t= ?\t\t\t\t\t\\n\")\t/* 보험료 \t*/\n\t\t\t\t .append(\"\t\t ,insur_comp_cd\t\t= ?\t\t\t\t\t\\n\")\t/* 보증보험회사:CU010 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,u_date\t\t\t= SYSTIMESTAMP\t\\n\")\t/* 최종수정일자 \t*/\n\t\t\t\t .append(\"\t\t ,u_empno \t\t\t= ?\t\t\t\t\t\\n\") \t/* 최종수정자사번 \t*/\n\t\t\t\t .append(\"\t\t ,u_ip\t\t\t\t= ?\t\t\t\t\t\\n\")\t/* 최종수정IP \t*/\n\t\t\t\t .append (\"WHERE client_sid \t\t= ? AND cont_date = ? \\n\");\n\t\t\t\t\n\t\t\t\t \n\t\t\t\t\t\n\t\t/*\n\t\t * 지점정보 수정\n\t\t */\n\t\t\n\t\tarr_sql[9].append(\"UPDATE SALES.TCU032 SET \t\t\t\t\t\t\t\\n\")\n\t\t\t\t .append(\"\t\t branch_nm \t\t= ?\t\t\t\t\t\t\\n\") \t/* 지점명 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,area_cd\t\t\t= ?\t\t\t\t\t\t\\n\") \t/* 지역코드:SY006 \t\t*/\n\t\t\t\t .append(\"\t\t ,client_down_yn \t= ?\t\t\t\t\t\t\\n\")\t/* 하위대리점여부:CU011 \t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,empno \t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 담당자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,tel_no \t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 전화번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,mobile_no \t\t= ?\t\t\t\t\t\t\\n\")\t/* 휴대폰 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,fax_no \t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 팩스번호 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,branch_url \t\t= ?\t\t\t\t\t\t\\n\")\t/* 지점홈페이지 \t\t\t*/\n\t\t\t\t \n\t\t\t\t .append(\"\t\t ,u_date \t\t\t= SYSTIMESTAMP\t\t\t\t\t\t\\n\")\t/* 최종수정일자 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,u_empno \t\t\t= ?\t\t\\n\")\t/* 최종수정자사번 \t\t\t*/\n\t\t\t\t .append(\"\t\t ,u_ip \t\t\t= ?\t\t\t\t\t\t\\n\")\t/* 최종수정IP \t\t*/\n\t\t\t\t .append (\"WHERE client_sid = ? AND branch_cd \t= ?\t\t\\n\");\n\t\t\n\t\t arr_sql[10].append(\"DELETE FROM SALES.TCU030 WHERE client_sid = ?\");\t\n\t\t arr_sql[11].append(\"DELETE FROM SALES.TCU031 WHERE client_sid = ? AND cont_date = ?\");\n\t\t arr_sql[12].append(\"DELETE FROM SALES.TCU032 WHERE client_sid = ? AND branch_cd = ?\");\n\t\t \n\t\t \n\t\t /*\n\t\t * Client SID 얻어오기\n\t\t */\n\t\t\t\n\t\t\tarr_sql[13].append(\"SELECT client_sid FROM SALES.TCU030 WHERE client_cd = ?\\n\");\n\t\t\t\n\t\t/*\n\t\t * 수수료율 조회\n\t\t */\n\t\t\tarr_sql[14].append(\"SELECT\t\t\t\t\t\t\t\t\\n\")\n\t\t\t\t\t\t.append(\" T1.CLIENT_SID AS CLIENT_SID\t\\n\") /* 매출처SID */\n\t\t\t\t\t\t.append(\" ,T1.FR_DATE AS FR_DATE \t\\n\") /* 시작일자 */\n\t\t\t\t\t\t.append(\" ,T1.TO_DATE AS TO_DATE \t\\n\") /* 종료일자 */\n\t\t\t\t\t\t.append(\" ,T1.WEEKEND_YN AS WEEKEND_YN \t\\n\") /* 주말여부 */\n\t\t\t\t\t\t.append(\" ,T1.COMMI_RATE AS COMMI_RATE\t\\n\") /* 수수료율 */\n\t\t\t\t\t\t.append(\"FROM SALES.TCU033 T1 \t\\n\")\n\t\t\t\t\t\t.append(\"WHERE 1=1 \t\t\t\t\t\t\t\\n\");\n\t\t\t\t\t\t\n\t\t/*\n\t\t * 수수료율 등록\n\t\t */\n\t\t\t\n\t\t\tarr_sql[15].append(\"INSERT INTO SALES.TCU033 ( \t\\n\")\n\t\t\t\t\t\t .append(\" \t CLIENT_SID\t\t\t\\n\")\t/* 매출처SID \t*/\n\t\t\t\t\t\t .append(\"\t\t ,FR_DATE\t\t\t\t\\n\") \t/* 시작일자 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,TO_DATE\t\t\t\\n\")\t/* 종료일자 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,COMMI_RATE\t\t\t\t\\n\")\t/* 수수료율 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,WEEKEND_YN\t\t\t\\n\")\t/* 주말여부 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,I_DATE\t\t\t\t\\n\")\t/* 최종입력일자 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,I_EMPNO \t\t\t\t\\n\") \t/* 최종입력자사번 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,I_IP\t\t\t\t\t\\n\")\t/* 최종입력IP \t*/\t\t\t\t\t\t \n\t\t\t\t\t\t .append(\"\t\t ,u_date\t\t\t\t\\n\")\t/* 최종수정일자 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,u_empno \t\t\t\t\\n\") \t/* 최종수정자사번 \t*/\n\t\t\t\t\t\t .append(\"\t\t ,u_ip\t\t\t\t\t\\n\")\t/* 최종수정IP \t*/\n\t\t\t\t\t\t .append(\"\t\t)\t\t\t\t\t\t\\n\")\n\t\t\t\t\t\t \n\t\t\t\t\t\t .append(\"VALUES\t\t\t\t\t\t\\n\")\n\t\t\t\t\t\t .append(\"\t\t\t(\t \t\t\t\\n\")\n\t\t\t\t\t\t .append(\"\t\t\t\t?,?,?,?, ?,\t\t\\n\")\t\n\t\t\t\t\t\t .append(\"\t\t\t\tSYSTIMESTAMP,?,?, SYSTIMESTAMP,?,?\t\\n\")\n\t\t\t\t\t\t .append(\"\t\t\t)\");\n\t\t/*\n\t\t * 수수료율 수정\n\t\t */\n\t\t\tarr_sql[16].append(\"UPDATE SALES.TCU033 SET\t\t\t\t\t\t\\n\") \n\t\t\t\t\t .append(\"\t\t TO_DATE\t\t\t= ?\t\t\t\t\t\\n\")\t/* 종료일자 \t*/\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append(\"\t\t ,COMMI_RATE\t\t= ?\t\t\t\t\t\\n\")\t/* 수수료율 \t*/\n\t\t\t\t\t .append(\"\t\t ,WEEKEND_YN\t\t= ?\t\t\t\t\t\\n\")\t/* 주말여부 \t*/\n\t\t\t\t\t \n\t\t\t\t\t \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append(\"\t\t ,u_date\t\t\t= SYSTIMESTAMP\t\\n\")\t/* 최종수정일자 \t*/\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append(\"\t\t ,u_empno \t\t\t= ?\t\t\t\t\t\\n\") \t/* 최종수정자사번 \t*/\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append(\"\t\t ,u_ip\t\t\t\t= ?\t\t\t\t\t\\n\")\t/* 최종수정IP \t*/\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t .append (\"WHERE client_sid \t\t= ? AND FR_DATE = ? AND WEEKEND_YN=? \\n\"); \n\t\t/*\n\t\t * 수수료율 삭제\n\t\t */\n\t\tarr_sql[17].append(\"DELETE FROM SALES.TCU033 WHERE client_sid = ? AND fr_date = ? AND WEEKEND_YN=? \");\t \n\t\t\t \n\n\t}", "protected String preprocessSQL(String sql, QueryParameters parameters, Dialect dialect)\n \t\t\tthrows HibernateException {\n \n \t\tsql = applyLocks( sql, parameters.getLockOptions(), dialect );\n \n \t\treturn getFactory().getSettings().isCommentsEnabled() ?\n \t\t\t\tprependComment( sql, parameters ) : sql;\n \t}", "protected String processGeneratedSql( String sql ) {\n return sql;\n }", "public String prepareStatementString() throws SQLException {\n\t\tList<Object> argList = new ArrayList<Object>();\n\t\treturn buildStatementString(argList);\n\t}", "public String prepareStringToSQL(String input_string) {\n\t\tif (isEmpty(input_string) || \"null\".equalsIgnoreCase(input_string)) {\r\n\t\t\treturn \"\";\r\n\t\t} else {\r\n\t\t\tinput_string = input_string.replaceAll(\"_NR_\", \"\\\\\\n\");\r\n\t\t\tinput_string = input_string.replaceAll(\"'\", \"''\");\r\n\t\t\treturn input_string;\r\n\t\t}\r\n\t}", "String toSql();", "private static String processall(String sql2) {\n\t\tString sql = sql2.replace(\"and txnChannel='ALL'\", \"\").replace(\"and txntype='ALL'\", \"\")\r\n\t\t\t\t.replace(\"and txncode='ALL'\", \"\");\r\n\t\treturn sql;\r\n\t}", "private void traceSqlRequest(String sql) {\n\t\tDatabaseInfo databaseInfo = oneAgentSdk.createDatabaseInfo(\"myCoolDatabase\", \"UnsupportedDatabaseVendor\", ChannelType.TCP_IP, \"theDbHost.localdomain:3434\");\n\t\tDatabaseRequestTracer databaseRequestTracer = oneAgentSdk.traceSqlDatabaseRequest(databaseInfo, sql);\n\t\tdatabaseRequestTracer.start();\n\t\ttry {\n\t\t\texecuteRequest(sql);\n\t\t} catch(Exception e) {\n\t\t\tdatabaseRequestTracer.error(e);\n\t\t\t// handle or re-throw exception!\n\t\t} finally {\n\t\t\tdatabaseRequestTracer.end();\n\t\t}\n\t}", "public String getSql() {\r\n String[] splitSql = this.origSql.split(\"\\\\Q\" + IN_PARAM_ESC + \"\\\\E\");\r\n StringBuffer compSql = new StringBuffer(splitSql[0]);\r\n Integer key = null;\r\n String value = IN_PARAM_ESC;\r\n for (int i = 1; i < splitSql.length && this.inMaxSqlLength(compSql.length()); i++) {\r\n key = new Integer(i);\r\n value = IN_PARAM_ESC;\r\n if (this.paramMap.containsKey(key)) {\r\n Object x = this.paramMap.get(key);\r\n value = getSqlString(x);\r\n }\r\n compSql.append(value);\r\n compSql.append(splitSql[i]);\r\n }\r\n key = new Integer(splitSql.length);\r\n value = this.origSql.lastIndexOf(IN_PARAM_ESC) == (this.origSql.length() - 1) ?\r\n IN_PARAM_ESC : \"\";\r\n if (this.paramMap.containsKey(key) && this.inMaxSqlLength(compSql.length())) {\r\n Object x = this.paramMap.get(key);\r\n value = getSqlString(x);\r\n }\r\n compSql.append(value);\r\n \r\n if (!this.inMaxSqlLength(compSql.length())) {\r\n compSql.delete(this.maxSqlLength, compSql.length());\r\n compSql.append(INCOMPLETE);\r\n }\r\n \r\n return compSql.toString();\r\n }", "public static void main(String args[]){\n String sql = \"select * from TBLS limit 2\";\n String sqlComplex = \"select testpartition.filename,format_.o,title.s,identifier.o,id.o,date_.o \" +\n \"from testpartition join format_ on (testpartition.filename=format_.s) \" +\n \"join title on (testpartition.filename=title.s) \" +\n \"join identifier on (testpartition.filename=identifier.s) \" +\n \"join id on (testpartition.filename=id.s) \" +\n \"join date_ on (testpartition.filename=date_.s) \" +\n \"where testpartition.gid0=1 and testpartition.sid=2 and testpartition.fid<100000 and testpartition.pfid=0\";\n String sqlOriginal = \"select idTable.filename,format_.o,title.s,identifier.o,id.o,date_.o \" +\n \"from idTable join format_ on (idTable.filename=format_.s) \" +\n \"join title on (idTable.filename=title.s) \" +\n \"join identifier on (idTable.filename=identifier.s) \" +\n \"join id on (idTable.filename=id.s) \" +\n \"join date_ on (idTable.filename=date_.s) \" +\n \"where idTable.gid0=1 and idTable.sid=2 and idTable.fid<100000\";\n\n QueryRewrite my = new QueryRewrite(sqlOriginal);\n String sqlRewrite = my.rewrite();\n System.out.println(sqlRewrite);\n\n\n }", "public abstract void toSQL(StringBuilder ret);", "public PreparedSql generatePreparedSql(BoundString prefix);", "protected String generateSQL() {\n String fields = generateFieldsJSON();\n return String.format(QUERY_PATTERN, fields, esQuery.generateQuerySQL(), from, size);\n }", "private String constructSQL() {\n\t\tString sql = \"\";\n\t\tif (!minAgeSet) {\n\t\t\tsql = \"SELECT E.EMP_ID, E.EMP_FULLNAME\" + \" FROM \" + empTable\n\t\t\t+ \" E\";\n\t\t} else {\n\t\t\tsql = \"SELECT E.EMP_ID, E.EMP_FULLNAME\" + \" FROM \" + empTable\n\t\t\t+ \" E WHERE E.EMP_BIRTH_DATE <= ? \";\n\t\t}\n\n\t\toriSqlLength = sql.length();\n\n\t\tStringTokenizer empTok = new StringTokenizer(employee, \",\");\n\t\tStringTokenizer calcTok = new StringTokenizer(calcGroup, \",\");\n\t\tStringTokenizer payTok = new StringTokenizer(payGroup, \",\");\n\t\tStringTokenizer teamTok = new StringTokenizer(team, \",\");\n\n\t\t// check if any of the selects have been used.\n\n\t\tif (empTok.hasMoreTokens() && !empTok.nextToken().equalsIgnoreCase(all))\n\t\t\tsql = groupSelect(\"employee\", sql);\n\t\tif (calcTok.hasMoreTokens()\n\t\t\t\t&& !calcTok.nextToken().equalsIgnoreCase(all))\n\t\t\tsql = groupSelect(\"calcGroup\", sql);\n\t\tif (payTok.hasMoreTokens() && !payTok.nextToken().equalsIgnoreCase(all))\n\t\t\tsql = groupSelect(\"payGroup\", sql);\n\t\tif (teamTok.hasMoreTokens()\n\t\t\t\t&& !teamTok.nextToken().equalsIgnoreCase(all))\n\t\t\tsql = groupSelect(\"team\", sql);\n\t\t\n\t\treturn sql;\n\t}", "private void constructExecuteSql() {\n getMetaData();\n // Validate that the primary keys are present in the underlying SQL\n StringBuilder orderBySql = new StringBuilder(super.getExecuteSql()).append(\"\\n order by \");\n switch (metaData.getDbType()) {\n case ORACLE:\n orderBySql.append(createOracleOrderedByClause ());\n break;\n case SQL_SERVER:\n orderBySql.append(createSqlServerOrderedByClause());\n break;\n case UNKNOWN:\n default:\n orderBySql.append(createUnknownDBOrderedByClause());\n }\n this.executeSql = orderBySql.toString();\n }", "public abstract String toSQL();", "public PreparedSql generatePreparedSql(String prefix);", "String replaceOnException(String sql);", "protected String buildDataQuery() {\n StringBuilder sql = new StringBuilder(\"select\");\n String delim = \" \";\n for (String vname : getColumnNames()) {\n sql.append(delim).append(vname);\n delim = \", \";\n }\n \n Element ncElement = getNetcdfElement();\n \n String table = ncElement.getAttributeValue(\"dbTable\");\n if (table == null) {\n String msg = \"No database table defined. Must set 'dbTable' attribute.\";\n _logger.error(msg);\n throw new TSSException(msg);\n }\n sql.append(\" from \" + table);\n \n String predicate = ncElement.getAttributeValue(\"predicate\");\n if (predicate != null) sql.append(\" where \" + predicate);\n \n //Order by time.\n String tname = getTimeVarName();\n sql.append(\" order by \"+tname+\" ASC\");\n \n return sql.toString();\n }", "public static void parseQueryString(String queryString) {\n\n System.out.println(\"STUB: Calling parseQueryString(String s) to process queries\");\n System.out.println(\"Parsing the string:\\\"\" + queryString + \"\\\"\");\n queryString = queryString.toLowerCase();\n String colName = queryString.substring(0,queryString.indexOf(\"from\")+5).trim();\n String colNames[] = removeWhiteSpacesInArray(colName.split(\" \"));\n ArrayList<String> queryStringList = new ArrayList<String>(Arrays.asList(colNames));\n queryStringList.remove(\"select\");\n queryStringList.remove(\"from\");\n String condition = \"\";\n String keyValueCond[] = new String[]{};\n String tableName = \"\";\n if(queryString.contains(\"where\")) {\n tableName = queryString.substring(queryString.indexOf(\"from\") + 5, queryString.indexOf(\"where\")).trim();\n condition = queryString.substring(queryString.indexOf(\"where\")+6, queryString.length()).trim();\n keyValueCond = removeWhiteSpacesInArray(condition.split(\" \"));\n }else\n tableName = queryString.substring(queryString.indexOf(\"from\")+5).trim();\n try {\n Table table = new Table(tableName.concat(\".tbl\"));\n int noOfRecords = table.page.getNoOfRecords();\n long pos = table.page.getStartofContent();\n TreeMap<String, String> colOrder = columnOrdinalHelper.getColumnsInOrdinalPositionOrder(tableName);\n int recordLength = Integer.parseInt(recordLengthHelper.getProperties(tableName.concat(\".\").concat(Constant.recordLength)));\n if(keyValueCond.length>0){\n\n }else{\n Iterator it = colOrder.entrySet().iterator();\n while (it.hasNext()){\n Map.Entry<String, String> entryPair = (Map.Entry<String, String>) it.next();\n// ReadResult<Object> readResult = table.page.readIntasByte(pos);\n// System.out.println(readResult.getT());\n ReadResult<Object> readResult = RecordFormat.readRecordFormat(columnTypeHelper.getProperties(entryPair.getValue()),table,pos);\n System.out.println(\"RESULT COLUMN NAME : \"+entryPair.getValue()+\" Value : \"+readResult.getT());\n\n }\n\n }\n\n\n\n } catch (FileNotFoundException e) {\n e.printStackTrace();\n } catch (IOException e) {\n e.printStackTrace();\n }\n\n }", "protected String getSQLString() {\n \t\treturn queryTranslator.getSQLString();\n \t}", "public String getPreparedSql() {\r\n return this.origSql;\r\n }", "public List sqlQuery(String sql,Object... params);", "private String buildSelect() {\r\n\t\tString select = \"select all_source.line, ' '||replace(all_source.TEXT,chr(9),' ')|| ' ' line from all_source where 2=2 \";\r\n\t\tString ownerCondition = \"\";\r\n\t\tString ownerInnerCondition = \"\";\r\n\t\tString beginProcedureCondition = \"\";\r\n\r\n\t\tif (!oraJdbcDTO.dbSchema.equals(\"\")) {\r\n\t\t\townerCondition = \" and all_source.OWNER = ? \";\r\n\t\t\townerInnerCondition = \" and all_source1.OWNER = ? \";\r\n\t\t}\r\n\t\tif (!oraJdbcDTO.packageName.equals(\"\")) {\r\n\t\t\t// Procedure in package\r\n\t\t\tbeginProcedureCondition = \"and all_source.name = ?\\n\"\r\n\t\t\t\t\t+ \"and all_source.TYPE = 'PACKAGE'\\n\"\r\n\t\t\t\t\t+ \"and all_source.line >=\\n\"\r\n\t\t\t\t\t+ \" (select min(all_source1.line)\\n\"\r\n\t\t\t\t\t+ \" from all_source all_source1 where 2=2 \"\r\n\t\t\t\t\t+ ownerInnerCondition\r\n\t\t\t\t\t+ \" and all_source1.name = ?\\n\"\r\n\t\t\t\t\t+ \" and all_source1.TYPE = 'PACKAGE'\\n\"\r\n\t\t\t\t\t+ \" and instr(upper(all_source1.TEXT), ?) > 0)\";\r\n\t\t\t;\r\n\t\t} else {\r\n\t\t\t// Single procedure or function\r\n\t\t\tbeginProcedureCondition = \"and all_source.name = ?\\n\"\r\n\t\t\t\t\t+ \"and all_source.TYPE in ('PROCEDURE','FUNCTION')\";\r\n\t\t}\r\n\t\tselect = select + beginProcedureCondition + \" and all_source.line >= ?\"\r\n\t\t\t\t+ ownerCondition + \" order by all_source.line\";\r\n\r\n\t\treturn select;\r\n\t}", "public void prepStmt(String sql) {\n\t\ttry {\n\t\t\tpstmt = conn.prepareStatement(sql);\n\t\t} catch(SQLException se) {\n\t\t\tse.printStackTrace();\n\t\t}\n\t}", "RewrittenStatement rewrite(String sql, Binding params);", "private String preprocessSql(String text) {\n\t\ttext = text.replace(\"(\\t\", \"(\\r\\n\\t\");\r\n\t\t// MsSql: combine primary key and foreign key clauses into a single line\r\n\t\tPattern pPrimaryKey = Pattern.compile(PRIMARY_KEY_BASE_PATTERN, Pattern.CASE_INSENSITIVE | Pattern.DOTALL);\r\n\t\tMatcher mPrimaryKey = pPrimaryKey.matcher(text);\r\n\t\twhile (mPrimaryKey.find()) {\r\n\t\t\tString originalText = mPrimaryKey.group();\r\n\t\t\tString replacedText = removeNewlines(originalText);\r\n\t\t\ttext = text.replace(originalText, replacedText);\r\n\t\t}\r\n\t\tPattern pForeignKey = Pattern.compile(FOREIGN_KEY_BASE_PATTERN, Pattern.CASE_INSENSITIVE | Pattern.DOTALL);\r\n\t\tMatcher mForeignKey = pForeignKey.matcher(text);\r\n\t\twhile (mForeignKey.find()) {\r\n\t\t\tString originalText = mForeignKey.group();\r\n\t\t\tString replacedText = removeNewlines(originalText);\r\n\t\t\ttext = text.replace(originalText, replacedText);\r\n\t\t}\r\n\t\treturn removeNewlines(text, REPLACE_NEWLINES);\r\n\t}", "SQLRequest(String req, Object[] options) {\n try{\n Connection con = Connector.getCon();\n stmt = con.prepareStatement(req, res.TYPE_SCROLL_INSENSITIVE, res.CONCUR_UPDATABLE);\n for (int i=1; i<=options.length; i++) {\n stmt.setObject(i, options[i - 1]);\n }\n executeRequest();\n } catch (SQLException e){\n e.printStackTrace();\n }\n }", "public String getQueryString() {\n if (CoreUtil.isEmpty(sql)) {\n return \"\";\n }\n if(bind == null) {\n return sql;\n }\n StringBuilder buf = new StringBuilder();\n StringTokenizer tok = new StringTokenizer(sql + \" \", \"?\");\n int x = 0;\n while (tok.hasMoreTokens()) {\n String oneChunk = tok.nextToken();\n buf.append(oneChunk);\n Object value = null;\n if(x < bind.length) {\n value = bind[x];\n if(value instanceof java.util.Date) {\n value = \"'\"+CoreUtil.formatDateTime(\"yyyy.MM.dd\", (java.util.Date)value)+\"'\";\n }else if(value instanceof java.sql.Date) {\n value = \"'\"+CoreUtil.formatDateTime(\"yyyy.MM.dd\", (java.sql.Date)value)+\"'\";\n }else if(value instanceof String) {\n value = \"'\"+value+\"'\";\n }\n buf.append(value);\n }\n x++;\n }\n return buf.toString().trim();\n }", "private String produceSQL(String[] cols) {\n StringBuffer buffer = new StringBuffer();\n buffer.append('(');\n buffer.append(cols[0]);\n\n for (int i = 1; i < cols.length; i++){\n buffer.append(',');\n buffer.append(cols[i]);\n }\n buffer.append(')');\n return buffer.toString();\n }", "private String encodeSQL(String text) {\r\n text = text.replaceAll(\"'\", \"''\");\r\n return \"'\" + text + \"'\";\r\n }", "public void setSql (String sql)\n\t{\n\t\tif (sql == null)\n\t\t\tthrow new IllegalArgumentException(\"No SQL\");\n\t\tm_sqlOriginal = sql;\n\t\tint index = m_sqlOriginal.indexOf(\"\\nFROM \");\n\t\tif (index != -1)\n\t\t\tm_sqlOriginal = m_sqlOriginal.replace(\"\\nFROM \", FROM);\n\t\tindex = m_sqlOriginal.indexOf(\"\\nWHERE \");\n\t\tif (index != -1)\n\t\t\tm_sqlOriginal = m_sqlOriginal.replace(\"\\nWHERE \", WHERE);\n\t\t//\n\t\tparse();\n\t}", "@Override\n\tpublic String onPrepareStatement(String sql) {\n\t\tif(!sql.contains(INSERT)){\n\t\t\t// We have to handle criteria query bit differently since\n\t\t\t// Hibernate framework is adding extra comment (/* criteria query */) to the query.\n\t\t\tif(sql.contains(\"/* criteria query */\")){\n\t\t\t\tsql = sql.replace(\"/* criteria query */\", \"\");\n\t\t\t}\n\t\t\treturn sql;\n\t\t}\n\t\tif(sql.contains(SEPARATOR+INSERT)){\n\t\t\treturn sql;\n\t\t}\n\t\tString modelClass=\"\";\n\t\tString calComment = \"\";\n\t\t\n\t\tStringBuilder fullQuery = new StringBuilder(sql);\n\t\t// Manipulating the existing comment \n\t\ttry{\n\t\t\tif (sql.indexOf(\"/* \") != -1){\n\t\t\t\tString str = sql.substring(sql.indexOf(\"/*\")+2, sql.indexOf(\"*/\")-1);\n\t\t\t\tmodelClass = str.substring(str.lastIndexOf('.')+1,str.length());\n\t\t\t}\n\t\t\t\n\t\t\tcalComment = modelClass+SEPARATOR+INSERT ;\n\t\t\tsql = sql.substring(sql.indexOf(\"*/\")+2).trim();\n\t\t\tfullQuery = new StringBuilder(sql.length());\n\t\t\t\n\t\t\tfullQuery.append(\"/* \").append(calComment).append(\n\t\t\t\t\t\" */ \").append(sql);\n\t\t}catch (Exception e) {\n\t\t\t// No Operation -- Stick to original query and comment\n\t\t}\n\t\t\n\t\treturn fullQuery.toString();\n\t}", "Object executeSelectQuery(String sql) { return null;}", "SQLCall createSQLCall();", "public String prepareSql(ProductDTO product){\n String SQL_SELECT = \"SELECT * FROM products \";\n String SQL_WHERE = \" WHERE quantity>0 \";\n String SQL_NAME = \"\";\n String SQL_PRICE = \"\";\n String SQL_CATEGORY = \"\";\n StringBuilder SQL_PRODUCT_DETAILS =new StringBuilder();\n List<String> product_details = new ArrayList<>();\n if (product.getName() != null) {\n SQL_NAME = \" AND name LIKE '%\" + product.getName() + \"%'\";\n }\n if (product.getMinPrice() != 0 || product.getMaxPrice() != 0) {\n if (product.getMaxPrice() == 0 && product.getMinPrice() != 0) {\n SQL_PRICE = \" AND price > \" + product.getMinPrice();\n } else if (product.getMinPrice() == 0 && product.getMaxPrice() != 0) {\n SQL_PRICE = \" AND price < \" + product.getMaxPrice();\n } else {\n SQL_PRICE = \" AND price BETWEEN \" + product.getMinPrice() + \" AND \" + product.getMaxPrice() + \" \";\n }\n }\n\n if (product.getCategory() != null) {\n SQL_CATEGORY = \" AND id_category=\" + product.getCategory().getId() + \" \";\n }\n if (!product.getProductDetailsList().isEmpty()) {\n int count=1;\n for (ProductDetails pd : product.getProductDetailsList()) {\n product_details.add(\" SELECT id_product FROM product_details WHERE id_parameter=\"\n + pd.getParameter().getId() + \" AND value='\" + pd.getValue() + \"'\");\n }\n SQL_PRODUCT_DETAILS.append(\" AND id IN (SELECT T1.id_product FROM (\"+product_details.get(0)+\") AS T1 \");\n product_details.remove(0);\n Iterator iterator = product_details.iterator();\n while (iterator.hasNext()) {\n count++;\n SQL_PRODUCT_DETAILS.append(\" JOIN ( \"+iterator.next()+\") AS T\"+count+\" ON T\"+(count-1)+\".id_product=T\"+count+\".id_product \");\n }\n SQL_PRODUCT_DETAILS.append(\" )\");\n }\n return SQL_SELECT + SQL_WHERE+SQL_NAME + SQL_PRICE + SQL_CATEGORY + SQL_PRODUCT_DETAILS;\n }", "public static String selectDef60CA42CC2D6246D6AF02CFED573960F1_4(ConnectionProvider connectionProvider, String FIN_Payment_IDR) throws ServletException {\n String strSql = \"\";\n strSql = strSql + \n \" SELECT ( COALESCE(TO_CHAR(TO_CHAR(COALESCE(TO_CHAR(table2.DocumentNo), ''))), '') || ' - ' || COALESCE(TO_CHAR(TO_CHAR(table2.Paymentdate, 'DD-MM-YYYY')), '') || ' - ' || COALESCE(TO_CHAR(TO_CHAR(COALESCE(TO_CHAR(table3.Name), ''))), '') || ' - ' || COALESCE(TO_CHAR(TO_CHAR(COALESCE(TO_CHAR(table2.Amount), ''))), '') ) as FIN_Payment_ID FROM FIN_Payment left join (select FIN_Payment_ID, DocumentNo, Paymentdate, C_Bpartner_ID, Amount from FIN_Payment) table2 on (FIN_Payment.FIN_Payment_ID = table2.FIN_Payment_ID)left join (select C_BPartner_ID, Name from C_BPartner) table3 on (table2.C_Bpartner_ID = table3.C_BPartner_ID) WHERE FIN_Payment.isActive='Y' AND FIN_Payment.FIN_Payment_ID = ? \";\n\n ResultSet result;\n String strReturn = \"\";\n PreparedStatement st = null;\n\n int iParameter = 0;\n try {\n st = connectionProvider.getPreparedStatement(strSql);\n QueryTimeOutUtil.getInstance().setQueryTimeOut(st, SessionInfo.getQueryProfile());\n iParameter++; UtilSql.setValue(st, iParameter, 12, null, FIN_Payment_IDR);\n\n result = st.executeQuery();\n if(result.next()) {\n strReturn = UtilSql.getValue(result, \"fin_payment_id\");\n }\n result.close();\n } catch(SQLException e){\n log4j.error(\"SQL error in query: \" + strSql + \"Exception:\"+ e);\n throw new ServletException(\"@CODE=\" + Integer.toString(e.getErrorCode()) + \"@\" + e.getMessage());\n } catch(Exception ex){\n log4j.error(\"Exception in query: \" + strSql + \"Exception:\"+ ex);\n throw new ServletException(\"@CODE=@\" + ex.getMessage());\n } finally {\n try {\n connectionProvider.releasePreparedStatement(st);\n } catch(Exception ignore){\n ignore.printStackTrace();\n }\n }\n return(strReturn);\n }", "String getPostDeclareSql();", "public PreparedStatement prepare(String str, Connection connection) throws SQLException {\n if (this.generatedResultReader == null) {\n return connection.prepareStatement(str, 2);\n }\n if (this.configuration.getPlatform().supportsGeneratedColumnsInPrepareStatement()) {\n return connection.prepareStatement(str, this.generatedResultReader.generatedColumns());\n }\n return connection.prepareStatement(str, 1);\n }", "public static String sqlCommandFilter(String sqlCommand){\n\t\treturn sqlCommand;\n\t\t}", "public void prepareSelectOneRow() {\n setCallFromStatement();\n // The statement is no longer require so can be released.\n clearStatement();\n\n super.prepareSelectOneRow();\n }", "@Override\n public String getPreparedStatementQuery() throws SQLException {\n StringBuilder sb = new StringBuilder();\n\n String statementQuery = getStatementQuery();\n\n // iterate over the characters in the query replacing the parameter placeholders\n // with the actual values\n int currentParameter = 0;\n for( int pos = 0; pos < statementQuery.length(); pos ++) {\n char character = statementQuery.charAt(pos);\n if( statementQuery.charAt(pos) == '?' && currentParameter < getParameterCount()) {\n // replace with parameter value\n boolean shouldQuote = true;\n switch( parameterMetaData.getParameterType(currentParameter+1)) {\n case Types.BIT:\n case Types.TINYINT:\n case Types.SMALLINT:\n case Types.INTEGER:\n case Types.BIGINT:\n case Types.FLOAT:\n case Types.REAL:\n case Types.DOUBLE:\n case Types.NUMERIC:\n case Types.DECIMAL:\n case Types.BOOLEAN:\n shouldQuote = false;\n }\n if( parameterValues.get(currentParameter) == null) {\n sb.append(\"NULL\");\n } else {\n if( shouldQuote ) {\n sb.append(\"'\");\n }\n sb.append(parameterValues.get(currentParameter));\n if( shouldQuote ) {\n sb.append(\"'\");\n }\n }\n currentParameter++;\n } else {\n sb.append(character);\n }\n }\n\n return sb.toString();\n }", "protected void createSelectStatement() throws Exception\n {\n selectStatement = new SQLStatementWithParams();\n\n // Generate the SQL and collect all host variables needed to execute it later\n generateSelectClause( wrqInfo, selectStatement );\n generateFromClause( wrqInfo, selectStatement );\n generateWhereClause( wrqInfo, selectStatement );\n generateGroupingClause( wrqInfo, selectStatement );\n generateHavingClause( wrqInfo, selectStatement );\n generateOrderClause( wrqInfo, selectStatement );\n }", "private void getSelectStatements()\n\t{\n\t\tString[] sqlIn = new String[] {m_sqlOriginal};\n\t\tString[] sqlOut = null;\n\t\ttry\n\t\t{\n\t\t\tsqlOut = getSubSQL (sqlIn);\n\t\t}\n\t\tcatch (Exception e)\n\t\t{\n\t\t\tlog.log(Level.SEVERE, m_sqlOriginal, e);\n\t\t\tthrow new IllegalArgumentException(m_sqlOriginal);\n\t\t}\n\t\t//\ta sub-query was found\n\t\twhile (sqlIn.length != sqlOut.length)\n\t\t{\n\t\t\tsqlIn = sqlOut;\n\t\t\ttry\n\t\t\t{\n\t\t\t\tsqlOut = getSubSQL (sqlIn);\n\t\t\t}\n\t\t\tcatch (Exception e)\n\t\t\t{\n\t\t\t\tlog.log(Level.SEVERE, m_sqlOriginal, e);\n\t\t\t\tthrow new IllegalArgumentException(sqlOut.length + \": \"+ m_sqlOriginal);\n\t\t\t}\n\t\t}\n\t\tm_sql = sqlOut;\n\t\t/** List & check **\n\t\tfor (int i = 0; i < m_sql.length; i++)\n\t\t{\n\t\t\tif (m_sql[i].indexOf(\"SELECT \",2) != -1)\n\t\t\t\tlog.log(Level.SEVERE, \"#\" + i + \" Has embedded SQL - \" + m_sql[i]);\n\t\t\telse\n\t\t\t\tlog.fine(\"#\" + i + \" - \" + m_sql[i]);\n\t\t}\n\t\t/** **/\n\t}", "String buildInsertQuery(String... args);", "String processQuery(String query);", "public static String formatQuery( String sqlString ) {\n StringTokenizer st= new StringTokenizer( sqlString, \"'\" );\n StringWriter sw = new StringWriter();\n \n while (st.hasMoreTokens()) {\n sw.write( st.nextToken() );\n if (st.hasMoreTokens())\n sw.write( \"''\" );\n }\n \n return sw.toString();\n }", "@Test\n public void testToStringWithSQL() throws SQLException {\n try (PreparedStatement stmt = this.proxy\n .prepareStatement(\"SELECT * FROM country WHERE lang = ? OR callingcode = ?\")) {\n stmt.setString(1, \"de\");\n stmt.setInt(2, 42);\n String sql = stmt.toString();\n assertEquals(\"SELECT * FROM country WHERE lang = 'de' OR callingcode = 42\", sql);\n LOG.info(\"sql = \\\"{}\\\"\", sql);\n }\n }", "String getBarcharDataQuery();", "public void parse_sql(String sql, Boolean as_is) throws ConnectorConfigException{\n\t\tif (as_is){\n\t\t\tfieldset = sql;\n\t\t\treturn;\n\t\t}\n\t\tPattern limit_regex = Pattern.compile(\"[ \\n]+limit[\\n ,0-9]\", Pattern.CASE_INSENSITIVE);\n\t\tPattern where_regex = Pattern.compile(\"[ \\n]+where\", Pattern.CASE_INSENSITIVE);\n\t\tPattern from_regex = Pattern.compile(\"[ \\n]+from\", Pattern.CASE_INSENSITIVE);\n\t\tPattern select_regex = Pattern.compile(\"select\", Pattern.CASE_INSENSITIVE);\n\t\tPattern order_regex = Pattern.compile(\"[ \\n]+order[ ]+by\", Pattern.CASE_INSENSITIVE);\n\t\tPattern empty_regex = Pattern.compile(\"[ ]+\", Pattern.CASE_INSENSITIVE);\n\t\tPattern groupby_regex = Pattern.compile(\"[ \\n]+group[ \\n]+by[ \\n]+\", Pattern.CASE_INSENSITIVE);\n\n\t\tsql = limit_regex.split(sql)[0]; //drop limit part;\n\n\t\tif (groupby_regex.split(sql).length > 1){ //workaround for GROUP BY in sql\n\t\t\tset_source(\"(\"+sql+\") dhx_group_table\");\n\t\t\treturn;\n\t\t}\n\t\t\t\n\t\t//locate select part\n\t\tString[] data = from_regex.split(sql,2);\n\t\tset_fieldset(select_regex.split(data[0],2)[1]);\n\t\t\n\t\tString [] table_data = where_regex.split(data[1],2);\n\t\tif (table_data.length>1){ //where construction exists\n\t\t\tset_source(table_data[0]);\n\t\t\tString [] where_data = order_regex.split(table_data[1]);\n\t\t\tset_filter(where_data[0]);\n\t\t\tif (where_data.length==1) return; //all parsed\n\t\t\tsql = where_data[1].trim();\n\t\t} else { //check order \n\t\t\tString [] order_data = order_regex.split(table_data[0],2);\n\t\t\tset_source(order_data[0]);\n\t\t\tif (order_data.length==1) return; //all parsed\n\t\t\tsql = order_data[1].trim();\n\t\t}\n\t\t\n\t\tif (!sql.equals(\"\")){\n\t\t\tString [] order_details = empty_regex.split(sql);\n\t\t\tset_sort(order_details[0],order_details[1]);\n\t\t}\n\t}", "boolean moznoSpustit(SqlHelper helper, String sql, Object... parametry);", "void rewrite(MySqlSelectQueryBlock query);", "public String convertStatement (String oraStatement);", "public String convertStatement (String oraStatement);", "public abstract String doTableConvert(String sql);", "public Vector executeCmd_v2_khusus1(String sql_stmt) {\n \tVector v = null;\n \tListIterator li = null;\n \ttry {\n \t//String ipAddr = request.getRemoteAddr();\n \tContext initContext = new InitialContext();\n \tContext envContext = (Context)initContext.lookup(\"java:/comp/env\");\n \tds = (DataSource)envContext.lookup(\"jdbc\"+beans.setting.Constants.getDbschema());\n \tcon = ds.getConnection();\n \t//update civitas\n \tstmt = con.prepareStatement(sql_stmt);\n \tif(sql_stmt.startsWith(\"select\")||sql_stmt.startsWith(\"SELECT\")||sql_stmt.startsWith(\"Select\")) {\n \t\trs = stmt.executeQuery();\n \t\tResultSetMetaData rsmd = rs.getMetaData();\n \t\tint columnsNumber = rsmd.getColumnCount();\n \t\tString col_label = null;\n \t\tString col_type = null;\n \t\tfor(int i=1;i<=columnsNumber;i++) {\n \t\t\t//getColumnName\n \t\t\t\tString col_name = rsmd.getColumnLabel(i);\n \t\t\t\tif(col_label==null) {\n \t\t\t\t\tcol_label = new String(col_name);\n \t\t\t\t\tcol_type = new String(\"`\");\n \t\t\t\t}\n \t\t\t\telse {\n \t\t\t\t\tcol_label = col_label+\"`\"+col_name;\n \t\t\t\t}\n \t\t\t\t//get col type\n \t\t\t\tint type = rsmd.getColumnType(i);\n \t\t\t\tif(type == java.sql.Types.DATE) {\n \t\t\t\t\tcol_type = col_type+\"date`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.DECIMAL || type == java.sql.Types.DOUBLE || type == java.sql.Types.FLOAT ) {\n \t\t\t\t\tcol_type = col_type+\"double`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.INTEGER || type == java.sql.Types.BIGINT || type == java.sql.Types.NUMERIC || type == java.sql.Types.SMALLINT) {\n \t\t\t\t\tcol_type = col_type+\"long`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.VARCHAR || type == java.sql.Types.LONGNVARCHAR || type == java.sql.Types.LONGVARCHAR || type == java.sql.Types.CHAR || type == java.sql.Types.NCHAR) {\n \t\t\t\t\tcol_type = col_type+\"string`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.TIME) {\n \t\t\t\t\tcol_type = col_type+\"time`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.BOOLEAN || type == java.sql.Types.TINYINT) {\n \t\t\t\t\tcol_type = col_type+\"boolean`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.TIMESTAMP) {\n \t\t\t\t\tcol_type = col_type+\"timestamp`\";\n \t\t\t\t}\n \t\t\t}\n \t\tif(v==null) {\n \t\t\t\tv = new Vector();\n \t\t\t\tli=v.listIterator();\n \t\t\t\tli.add(col_type);\n \t\t\t\tli.add(col_label);\n \t\t\t}\n \t\t\t\n \t\t//System.out.println(\"columnsNumber=\"+columnsNumber);\n \t\tString brs = null;\n \t\twhile(rs.next()) {\n \t\t\tfor(int i=1;i<=columnsNumber;i++) {\n \t\t\t\tString tmp = \"\";\n \t\t\t\t/*\n \t\t\t\t * ADA 2 metode cek column type, karena diupdate yg baruan adalah cara yg diatas, belum tau mana yg lebih efektif\n \t\t\t\t */\n \t\t\t\tcol_type = rsmd.getColumnTypeName(i);\n \t\t\t\t\n \t\t\t\tif(col_type.equalsIgnoreCase(\"VARCHAR\")||col_type.equalsIgnoreCase(\"TEXT\")||col_type.startsWith(\"CHAR\")) {\n \t\t\t\t\ttmp = \"\"+rs.getString(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"TINYINT\")) {\n \t\t\t\t\ttmp = \"\"+rs.getBoolean(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.contains(\"INT\")||col_type.contains(\"LONG\")) {\n \t\t\t\t\ttmp = \"\"+rs.getLong(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"DATE\")) {\n \t\t\t\t\ttmp = \"\"+rs.getDate(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"DECIMAL\")||col_type.equalsIgnoreCase(\"DOUBLE\")||col_type.equalsIgnoreCase(\"FLOAT\")) {\n \t\t\t\t\ttmp = \"\"+rs.getDouble(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"TIMESTAMP\")||col_type.equalsIgnoreCase(\"DATETIME\")) {\n \t\t\t\t\ttmp = \"\"+rs.getTimestamp(i);\n \t\t\t\t}\n \t\t\t\t\n \t\t\t\tif(brs==null) {\n \t\t\t\t\tif(Checker.isStringNullOrEmpty(tmp)) {\n \t\t\t\t\t\tbrs = new String(\"null\");\n \t\t\t\t\t}\n \t\t\t\t\telse {\n \t\t\t\t\t\tbrs = new String(tmp);\n \t\t\t\t\t}\n \t\t\t\t}\n \t\t\t\telse {\n \t\t\t\t\tif(Checker.isStringNullOrEmpty(tmp)) {\n \t\t\t\t\t\tbrs = brs +\"`null\";\n \t\t\t\t\t}\n \t\t\t\t\telse {\n \t\t\t\t\t\tbrs = brs+\"`\"+tmp;\n \t\t\t\t\t}\n \t\t\t\t}\t\n \t\t\t}\n \t\t\tbrs = brs.replace(\"`K`\", \"`KELUAR`\");\n \t\t\tli.add(brs);\n \t\t\tbrs = null;\n \t\t}\n \t}\n \telse {\n \t\t//non select\n \t\tint i = stmt.executeUpdate();\n \t\tif(v==null) {\n \t\t\t\tv = new Vector();\n \t\t\t\tli=v.listIterator();\n \t\t\t\tli.add(\"string`string\");\n \t\t\t\tli.add(\"COMMAND`EXE\");\n \t\t\t}\n \t\t\n \t\tli.add(sql_stmt+\"`\"+i);\n \t}\n \t}\n \tcatch (NamingException e) {\n \t\te.printStackTrace();\n \t\tif(v==null) {\n\t\t\t\tv = new Vector();\n\t\t\t\tli=v.listIterator();\n\t\t\t\tli.add(\"ERROR\");\n\t\t\t}\n \t\tli.add(e.toString());\n \t}\n \tcatch (SQLException ex) {\n \t\tex.printStackTrace();\n \t\tif(v==null) {\n\t\t\t\tv = new Vector();\n\t\t\t\tli=v.listIterator();\n\t\t\t\tli.add(\"ERROR\");\n\t\t\t}\n \t\tli.add(ex.toString());\n \t} \n \tfinally {\n \t\tif (rs!=null) try { rs.close(); } catch (Exception ignore){}\n \t if (stmt!=null) try { stmt.close(); } catch (Exception ignore){}\n \t if (con!=null) try { con.close();} catch (Exception ignore){}\n \t}\n \ttry {\n \t\tv = Tool.removeDuplicateFromVector(v);\n \t}\n \tcatch(Exception e) {}\n \treturn v;\n }", "protected String getSelectSQLWithKey(String key) {\n\t\treturn queryData.getString(\"SelectSQLWithKeySQL\").replace(\"key!\", key);\n\t}", "public void prepareStatements() throws SQLException {\n\t\tpstmt_updateTicket = connection.prepareStatement(\r\n\t\t \"UPDATE ticket \" +\r\n \"SET kunde = ? \" +\r\n \"WHERE tid IN (\" +\r\n \"SELECT tid FROM ticket WHERE kunde IS NULL AND auffuehrung = ? LIMIT ?)\" +\r\n \"RETURNING preis\");\r\n\t}", "public abstract String createQuery();", "@SuppressWarnings(\"null\")\n\tpublic QueryParameter parseQuery(String queryString) {\n\t\t\n/*\n\t\t * extract the name of the file from the query. File name can be found after the\n\t\t * \"from\" clause.\n\t\t */\n\n\t\t/*\n\t\t * extract the order by fields from the query string. Please note that we will\n\t\t * need to extract the field(s) after \"order by\" clause in the query, if at all\n\t\t * the order by clause exists. For eg: select city,winner,team1,team2 from\n\t\t * data/ipl.csv order by city from the query mentioned above, we need to extract\n\t\t * \"city\". Please note that we can have more than one order by fields.\n\t\t */\n\n\t\t/*\n\t\t * extract the group by fields from the query string. Please note that we will\n\t\t * need to extract the field(s) after \"group by\" clause in the query, if at all\n\t\t * the group by clause exists. For eg: select city,max(win_by_runs) from\n\t\t * data/ipl.csv group by city from the query mentioned above, we need to extract\n\t\t * \"city\". Please note that we can have more than one group by fields.\n\t\t */\n\n\t\t /*\n\t\t * extract the selected fields from the query string. Please note that we will\n\t\t * need to extract the field(s) after \"select\" clause followed by a space from\n\t\t * the query string. For eg: select city,win_by_runs from data/ipl.csv from the\n\t\t * query mentioned above, we need to extract \"city\" and \"win_by_runs\". Please\n\t\t * note that we might have a field containing name \"from_date\" or \"from_hrs\".\n\t\t * Hence, consider this while parsing.\n\t\t */\n\n\t\t/*\n\t\t * extract the conditions from the query string(if exists). for each condition,\n\t\t * we need to capture the following: 1. Name of field 2. condition 3. value\n\t\t * \n\t\t * For eg: select city,winner,team1,team2,player_of_match from data/ipl.csv\n\t\t * where season >= 2008 or toss_decision != bat\n\t\t * \n\t\t * here, for the first condition, \"season>=2008\" we need to capture: 1. Name of\n\t\t * field: season 2. condition: >= 3. value: 2008\n\t\t * \n\t\t * the query might contain multiple conditions separated by OR/AND operators.\n\t\t * Please consider this while parsing the conditions.\n\t\t * \n\t\t */\n\n\t\t /*\n\t\t * extract the logical operators(AND/OR) from the query, if at all it is\n\t\t * present. For eg: select city,winner,team1,team2,player_of_match from\n\t\t * data/ipl.csv where season >= 2008 or toss_decision != bat and city =\n\t\t * bangalore\n\t\t * \n\t\t * the query mentioned above in the example should return a List of Strings\n\t\t * containing [or,and]\n\t\t */\n\n\t\t/*\n\t\t * extract the aggregate functions from the query. The presence of the aggregate\n\t\t * functions can determined if we have either \"min\" or \"max\" or \"sum\" or \"count\"\n\t\t * or \"avg\" followed by opening braces\"(\" after \"select\" clause in the query\n\t\t * string. in case it is present, then we will have to extract the same. For\n\t\t * each aggregate functions, we need to know the following: 1. type of aggregate\n\t\t * function(min/max/count/sum/avg) 2. field on which the aggregate function is\n\t\t * being applied\n\t\t * \n\t\t * Please note that more than one aggregate function can be present in a query\n\t\t * \n\t\t * \n\t\t */\n\n\t\tString file = null;\n\t\tList<Restriction> restrictions = new ArrayList<Restriction>();\n\t\tList<String> logicalOperators = new ArrayList<String>();\n\t\tList<String> fields = new ArrayList<String>();;\n\t\tList<AggregateFunction> aggregateFunction = new ArrayList<AggregateFunction>();\n\t\tList<String> groupByFields = new ArrayList<String>();;\n\t\tList<String> orderByFields = new ArrayList<String>();;\n\t\tString baseQuery=null;\n\t\n\t\tfile = getFile(queryString);\n\n\t\t\n\t\tString[] conditions = getConditions(queryString);\n\t\tif(conditions!=null) {\n\t\tRestriction[] restriction = new Restriction[conditions.length];\n\t\t\n\t\tfor (int i = 0; i < conditions.length; i++) {\n\t\t\trestriction[i] = new Restriction();\n\t\t\t\n\t\t\tString operator=null;\n\t\t\tString value=null;\n\t\t\tString property=null;\n\t\t\t if(conditions[i].contains(\"<=\")) {\n\t\t\t\tString[] split = conditions[i].split(\"<=\");\n\t\t\t\toperator=\"<=\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t\t\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\">=\")) {\n\t\t\t\tString[] split = conditions[i].split(\">=\");\n\t\t\t\toperator=\">=\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t\t\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\">\")) {\n\t\t\t\tString[] split = conditions[i].split(\">\");\n\t\t\t\toperator=\">\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\"!=\")) {\n\t\t\t\tString[] split = conditions[i].split(\"!=\");\n\t\t\t\toperator=\"!=\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\"=\")) {\n\t\t\t\tString[] split = conditions[i].split(\"=\");\n\t\t\t\toperator=\"=\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t\t if(value.contains(\"'\")) {\n\t\t\t\t\t value= value.replaceAll(\"'\",\"\").trim();\n\t\t\t\t }\n\t\t\t\t\n\t\t\t}\n\t\t\telse if(conditions[i].contains(\"<\")) {\n\t\t\t\tString[] split = conditions[i].split(\"<\");\n\t\t\t\toperator=\"<\";\n\t\t\t\t value=split[1].trim();\n\t\t\t\t property=split[0].trim();\n\t\t\t}\n\t\t\t \n\t\t\t\n\t\t\trestriction[i].setCondition(operator);\n\t\t\trestriction[i].setPropertyName(property);\n\t\t\trestriction[i].setPropertyValue(value);\n\t\t\trestrictions.add(restriction[i]);\n\n\t\t}\n\t\t}\n\t\n\t\tString[] operators = getLogicalOperators(queryString);\n\t\tif(operators!=null) {\n\t\tfor (String op : operators) {\n\t\t\tlogicalOperators.add(op);\n\t\t}\n\t\t}\n\t\t\n\t\tString[] filds = getFields(queryString);\n\t\tif(filds!=null) {\n\t\tfor (String field : filds) {\n\t\t\tfields.add(field);\n\t\t}\n\t\t}\n\t\t\n\t\tString[] aggregationVal = getAggregateFunctions(queryString);\n\t\tif(aggregationVal!=null) {\n\t\tAggregateFunction[] aggregation = new AggregateFunction[aggregationVal.length];\n\t\tfor (int i = 0; i < aggregationVal.length; i++) {\n\t\t\taggregation[i] = new AggregateFunction();\n\t\t\tString[] split = (aggregationVal[i].replace(\"(\", \" \")).split(\" \");\n\t\t\tSystem.out.println(split[0]);\n\t\t\tSystem.out.println(split[1].replace(\")\", \"\").trim());\n\t\t\t\n\t\t\taggregation[i].setFunction(split[0]);\n\t\t\taggregation[i].setField(split[1].replace(\")\", \"\").trim());\n\t\t\taggregateFunction.add(aggregation[i]);\n\n\t\t}\n\t\t}\n\t\t\n\t\t\t\n\t\t\n\t\tString[] groupBy = getGroupByFields(queryString);\n\t\tif(groupBy!=null) {\n\t\tfor (String group : groupBy) {\n\t\t\tgroupByFields.add(group);\n\t\t}\n\t\t}\n\t\n\t\tString[] orderBy = getOrderByFields(queryString);\n\t\tif(orderBy!=null) {\n\t\tfor (String order : orderBy) {\n\t\t\torderByFields.add(order);\n\t\t}\n\t\t}\n\t\tqueryParameter.setFile(file);\n\t\tif(restrictions.size()!=0) {\n\t\t\tqueryParameter.setRestrictions(restrictions);\n\t\t}\n\t\telse {\n\t\t\tqueryParameter.setRestrictions(null);\n\t\t}\n\t\tif(logicalOperators.size()!=0) {\n\t\tqueryParameter.setLogicalOperators(logicalOperators);\n\t\t}\n\t\telse {\n\t\t\tqueryParameter.setLogicalOperators(null);\n\t\t}\n\t\tbaseQuery=getBaseQuery(queryString);\n\t\t\n\t\tqueryParameter.setFields(fields);\n\t\tqueryParameter.setAggregateFunctions(aggregateFunction);\n\t\tqueryParameter.setGroupByFields(groupByFields);\n\t\tqueryParameter.setOrderByFields(orderByFields);\n\t\tqueryParameter.setBaseQuery(baseQuery.trim());\n\t\treturn queryParameter;\n\n\t}", "public String generateSQL(HttpServletRequest request)throws Exception \n\t{\n\t\t//boolean getLog=getQueryParameter(request.getQueryString(),\"searchMode\").contains(\"Log\");\n String SQLString=\"\";\n //String selectStr=\"\";\n\t\ttry {\n\t\t\tJSONObject searchCon=dealQS.condition2Json(request);\n\t\t\tdealQS.validateSearchConditon(searchCon);\n\t\t\t//String select=selectStr;\n\t\t\tList<String> tables=dealQS.getTables(searchCon);\n\t\t\tString condition=dealQS.getWhereCondition(searchCon);\n\t\t\tif(tables.size()==1) \n\t\t\t{\n\t\t\t\tSQLString=\"SELECT COUNT(*) FROM \"+tables.get(0);\n\t\t\t\tif(!condition.isEmpty()) {\n\t\t\t\t\tSQLString+=\" WHERE \"+condition;\n\t\t\t\t}\n\t\t\t}else {\n\t\t\t\t//for(String table:tables) \n\t\t\t\tfor(int i=0;i<tables.size();i++)\n\t\t\t\t{\n\t\t\t\t\t//selectStr=\"SELECT sql_calc_found_rows Slot,Record_Time,PC_Name\";\n\t\t\t\t\tif(!condition.isEmpty()) {\n\t\t\t\t\t\tSQLString+=\"(SELECT COUNT(*) FROM \"+tables.get(i)+\" WHERE \"+condition+\")\";\n\t\t\t\t\t}else {\n\t\t\t\t\t\tSQLString+=\"(SELECT COUNT(*) FROM \"+tables.get(i)+\")\";\n\t\t\t\t\t}\n\t\t\t\t\tif (i!=tables.size()-1) {\n\t\t\t\t\t\tSQLString+=\"+\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tSQLString=\"SELECT(\"+SQLString+\") AS sum_count\";\n\t\t\t}\n\t\t}catch(Exception e) {\n\t\t\tthrow e;\n\t\t}\n\t\treturn SQLString;\n\t}", "public List<String> queryForStrings(String sql, Object[] params);", "SQLQuery createSQLQuery(final String query);", "protected abstract PreparedResult implement( RelRoot root );", "public Vector executeCmd_v2(String sql_stmt) {\n \tVector v = null;\n \tListIterator li = null;\n \ttry {\n \t//String ipAddr = request.getRemoteAddr();\n \tContext initContext = new InitialContext();\n \tContext envContext = (Context)initContext.lookup(\"java:/comp/env\");\n \tds = (DataSource)envContext.lookup(\"jdbc\"+beans.setting.Constants.getDbschema());\n \tcon = ds.getConnection();\n \t//update civitas\n \tstmt = con.prepareStatement(sql_stmt);\n \tif(sql_stmt.startsWith(\"select\")||sql_stmt.startsWith(\"SELECT\")||sql_stmt.startsWith(\"Select\")) {\n \t\trs = stmt.executeQuery();\n \t\tResultSetMetaData rsmd = rs.getMetaData();\n \t\tint columnsNumber = rsmd.getColumnCount();\n \t\tString col_label = null;\n \t\tString col_type = null;\n \t\tfor(int i=1;i<=columnsNumber;i++) {\n \t\t\t//getColumnName\n \t\t\t\tString col_name = rsmd.getColumnLabel(i);\n \t\t\t\tif(col_label==null) {\n \t\t\t\t\tcol_label = new String(col_name);\n \t\t\t\t\tcol_type = new String(\"`\");\n \t\t\t\t}\n \t\t\t\telse {\n \t\t\t\t\tcol_label = col_label+\"`\"+col_name;\n \t\t\t\t}\n \t\t\t\t//get col type\n \t\t\t\tint type = rsmd.getColumnType(i);\n \t\t\t\tif(type == java.sql.Types.DATE) {\n \t\t\t\t\tcol_type = col_type+\"date`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.DECIMAL || type == java.sql.Types.DOUBLE || type == java.sql.Types.FLOAT ) {\n \t\t\t\t\tcol_type = col_type+\"double`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.INTEGER || type == java.sql.Types.BIGINT || type == java.sql.Types.NUMERIC || type == java.sql.Types.SMALLINT) {\n \t\t\t\t\tcol_type = col_type+\"long`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.VARCHAR || type == java.sql.Types.LONGNVARCHAR || type == java.sql.Types.LONGVARCHAR || type == java.sql.Types.CHAR || type == java.sql.Types.NCHAR) {\n \t\t\t\t\tcol_type = col_type+\"string`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.TIME) {\n \t\t\t\t\tcol_type = col_type+\"time`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.BOOLEAN || type == java.sql.Types.TINYINT) {\n \t\t\t\t\tcol_type = col_type+\"boolean`\";\n \t\t\t\t}\n \t\t\t\telse if(type == java.sql.Types.TIMESTAMP) {\n \t\t\t\t\tcol_type = col_type+\"timestamp`\";\n \t\t\t\t}\n \t\t\t}\n \t\tif(v==null) {\n \t\t\t\tv = new Vector();\n \t\t\t\tli=v.listIterator();\n \t\t\t\tli.add(col_type);\n \t\t\t\tli.add(col_label);\n \t\t\t}\n \t\t\t\n \t\t//System.out.println(\"columnsNumber=\"+columnsNumber);\n \t\tString brs = null;\n \t\twhile(rs.next()) {\n \t\t\tfor(int i=1;i<=columnsNumber;i++) {\n \t\t\t\tString tmp = \"\";\n \t\t\t\t/*\n \t\t\t\t * ADA 2 metode cek column type, karena diupdate yg baruan adalah cara yg diatas, belum tau mana yg lebih efektif\n \t\t\t\t */\n \t\t\t\tcol_type = rsmd.getColumnTypeName(i);\n \t\t\t\t\n \t\t\t\tif(col_type.equalsIgnoreCase(\"VARCHAR\")||col_type.equalsIgnoreCase(\"TEXT\")||col_type.startsWith(\"CHAR\")) {\n \t\t\t\t\ttmp = \"\"+rs.getString(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"TINYINT\")) {\n \t\t\t\t\ttmp = \"\"+rs.getBoolean(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.contains(\"INT\")||col_type.contains(\"LONG\")) {\n \t\t\t\t\ttmp = \"\"+rs.getLong(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"DATE\")) {\n \t\t\t\t\ttmp = \"\"+rs.getDate(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"DECIMAL\")||col_type.equalsIgnoreCase(\"DOUBLE\")||col_type.equalsIgnoreCase(\"FLOAT\")) {\n \t\t\t\t\ttmp = \"\"+rs.getDouble(i);\n \t\t\t\t}\n \t\t\t\telse if(col_type.equalsIgnoreCase(\"TIMESTAMP\")||col_type.equalsIgnoreCase(\"DATETIME\")) {\n \t\t\t\t\ttmp = \"\"+rs.getTimestamp(i);\n \t\t\t\t}\n \t\t\t\t\n \t\t\t\tif(brs==null) {\n \t\t\t\t\tif(Checker.isStringNullOrEmpty(tmp)) {\n \t\t\t\t\t\tbrs = new String(\"null\");\n \t\t\t\t\t}\n \t\t\t\t\telse {\n \t\t\t\t\t\tbrs = new String(tmp);\n \t\t\t\t\t}\n \t\t\t\t}\n \t\t\t\telse {\n \t\t\t\t\tif(Checker.isStringNullOrEmpty(tmp)) {\n \t\t\t\t\t\tbrs = brs +\"`null\";\n \t\t\t\t\t}\n \t\t\t\t\telse {\n \t\t\t\t\t\tbrs = brs+\"`\"+tmp;\n \t\t\t\t\t}\n \t\t\t\t}\t\n \t\t\t}\n \t\t\t\t\n \t\t\tli.add(brs);\n \t\t\tbrs = null;\n \t\t}\n \t}\n \telse {\n \t\t//non select\n \t\tint i = stmt.executeUpdate();\n \t\tif(v==null) {\n \t\t\t\tv = new Vector();\n \t\t\t\tli=v.listIterator();\n \t\t\t\tli.add(\"string`string\");\n \t\t\t\tli.add(\"COMMAND`EXE\");\n \t\t\t}\n \t\t\n \t\tli.add(sql_stmt+\"`\"+i);\n \t}\n \t}\n \tcatch (NamingException e) {\n \t\te.printStackTrace();\n \t\tif(v==null) {\n\t\t\t\tv = new Vector();\n\t\t\t\tli=v.listIterator();\n\t\t\t\tli.add(\"ERROR\");\n\t\t\t}\n \t\tli.add(e.toString());\n \t}\n \tcatch (SQLException ex) {\n \t\tex.printStackTrace();\n \t\tif(v==null) {\n\t\t\t\tv = new Vector();\n\t\t\t\tli=v.listIterator();\n\t\t\t\tli.add(\"ERROR\");\n\t\t\t}\n \t\tli.add(ex.toString());\n \t} \n \tfinally {\n \t\tif (rs!=null) try { rs.close(); } catch (Exception ignore){}\n \t if (stmt!=null) try { stmt.close(); } catch (Exception ignore){}\n \t if (con!=null) try { con.close();} catch (Exception ignore){}\n \t}\n \ttry {\n \t\tv = Tool.removeDuplicateFromVector(v);\n \t}\n \tcatch(Exception e) {}\n \treturn v;\n }", "@Override\r\n\t\tpublic PreparedStatement prepareStatement(String sql)\r\n\t\t\t\tthrows SQLException {\n\t\t\treturn this.conn.prepareStatement(sql);\r\n\t\t}", "String getSafeSql(String name);", "private void appendSelectStatement() {\n builder.append(SELECT).append(getSelectedFields()).append(FROM);\n }", "@Override\n\tprotected void runData(Query query) throws SQLException {\n\t\tStringBuilder q = new StringBuilder();\n\t\tArrayList<Integer> destinationList = new ArrayList<Integer>();\n\t\tquery.inc(2);\n\t\twhile (!isData(query.part()) || !isComment(query.part()) || !isCode(query.part())) {\n\t\t\tq.append(query.part());\n\t\t\tq.append(\" \");\n\t\t\tquery.inc();\n\t\t}\n\t\tArrayList<Integer> originList = getLinesFromData(q.toString());\n\t\tparseSecondCondition(query, originList, destinationList);\n\t}", "@Override\r\n public StringBuilder getWhereStatement(BuildingContext context, StringBuilder targetAlias, List<Object> params) {\n AbstractMsSQLDatabaseDialect dialect = (AbstractMsSQLDatabaseDialect)context.getDialect(); \r\n String schemaName;\r\n try{\r\n schemaName = dialect.getSchemaName();\r\n }catch(Exception e){\r\n throw new RuntimeException(\"Failed to get schema name from MSSQL Dialect\", e);\r\n }\r\n \r\n StringBuilder statement = new StringBuilder((schemaName.length() != 0 ? schemaName+\".\" : \"\"))\r\n .append(\"PREAD\")\r\n .append(\"(\")\r\n .append(QueryUtils.asPrefix(targetAlias)).append(dialect.convertColumnName(Constants.FIELD_ID))\r\n .append(\",\")\r\n .append(QueryUtils.asPrefix(targetAlias)).append(dialect.convertColumnName(Constants.TABLE_NODE__SECURITY_ID))\r\n .append(\",?,?,?,?)>0\");\r\n\r\n \r\n Collection<String> groups = context.getSession().getGroupIDs();\r\n Collection<String> contexts = context.getSession().getContextIDs();\r\n StringBuffer groupNames = new StringBuffer();\r\n int i = 0;\r\n for(String group:groups){\r\n if(i++>0) {\r\n groupNames.append(',');\r\n }\r\n \r\n groupNames.append(dialect.convertStringToSQL(group));\r\n }\r\n \r\n StringBuffer contextNames = new StringBuffer();\r\n i = 0;\r\n for(String c:contexts){\r\n if(i++>0)\r\n contextNames.append(',');\r\n \r\n contextNames.append(dialect.convertStringToSQL(c));\r\n }\r\n \r\n \r\n params.add(dialect.convertStringToSQL(context.getSession().getUserID()));\r\n params.add(groupNames.toString());\r\n params.add(contextNames.toString());\r\n params.add(context.isAllowBrowse());\r\n \r\n return statement;\r\n }", "public String getFindByIdSql() {\r\n\t\treturn getSelectPrefix() + \" and XH=? \";\r\n\t}", "public List<Object[]> getRetencionesAnuladas(int mes, int anio, int idOrganizacion, Sucursal sucursalFP, Sucursal sucursalRetencion, PuntoDeVenta puntoVentaRetencion, String orden, TipoComprobanteSRI tipoComprobante)\r\n/* 125: */ {\r\n/* 126:175 */ StringBuilder sql = new StringBuilder();\r\n/* 127: */ \r\n/* 128:177 */ sql.append(\" SELECT a.fechaEmisionDocumento, f.fechaRegistro, f.fechaEmision, CONCAT(f.establecimiento,'-',f.puntoEmision,'-',f.numero), f.identificacionProveedor, \");\r\n/* 129: */ \r\n/* 130:179 */ sql.append(\" \\t'', f.montoIva*0, f.montoIva*0, f.montoIva*0, '', '', \");\r\n/* 131: */ \r\n/* 132:181 */ sql.append(\" \\tCONCAT(a.establecimiento,'-',a.puntoEmision,'-',a.numeroDesde), f.montoIva*0, f.montoIva*0, f.montoIva*0, f.nombreProveedor, \");\r\n/* 133: */ \r\n/* 134:183 */ sql.append(\"\\tf.montoIva*0, f.montoIva*0, '', a.autorizacion, f.fechaRegistro, f.autorizacion, '', 'ANULADO', f.idFacturaProveedorSRI,'' \");\r\n/* 135:184 */ sql.append(\" FROM AnuladoSRI a, FacturaProveedorSRI f \");\r\n/* 136:185 */ sql.append(\" WHERE a.documentoRelacionado = f.idFacturaProveedorSRI \");\r\n/* 137:186 */ sql.append(\" AND a.tipoComprobanteSRI = :tipoComprobante \");\r\n/* 138:187 */ sql.append(\" AND a.anio = :anio AND a.mes = :mes \");\r\n/* 139:188 */ sql.append(\" AND a.idOrganizacion = :idOrganizacion \");\r\n/* 140:189 */ if (sucursalFP != null) {\r\n/* 141:190 */ sql.append(\" AND f.idSucursal = :idSucursal \");\r\n/* 142: */ }\r\n/* 143:192 */ if (sucursalRetencion != null) {\r\n/* 144:193 */ sql.append(\" AND a.establecimiento = :sucursalRetencion \");\r\n/* 145: */ }\r\n/* 146:195 */ if (puntoVentaRetencion != null) {\r\n/* 147:196 */ sql.append(\" AND a.puntoEmision = :puntoVentaRetencion \");\r\n/* 148: */ }\r\n/* 149:198 */ Query query = this.em.createQuery(sql.toString());\r\n/* 150:199 */ query.setParameter(\"mes\", Integer.valueOf(mes));\r\n/* 151:200 */ query.setParameter(\"anio\", Integer.valueOf(anio));\r\n/* 152:201 */ query.setParameter(\"idOrganizacion\", Integer.valueOf(idOrganizacion));\r\n/* 153:202 */ query.setParameter(\"tipoComprobante\", tipoComprobante);\r\n/* 154:203 */ if (sucursalFP != null) {\r\n/* 155:204 */ query.setParameter(\"idSucursal\", Integer.valueOf(sucursalFP.getId()));\r\n/* 156: */ }\r\n/* 157:206 */ if (sucursalRetencion != null) {\r\n/* 158:207 */ query.setParameter(\"sucursalRetencion\", sucursalRetencion.getCodigo());\r\n/* 159: */ }\r\n/* 160:209 */ if (puntoVentaRetencion != null) {\r\n/* 161:210 */ query.setParameter(\"puntoVentaRetencion\", puntoVentaRetencion.getCodigo());\r\n/* 162: */ }\r\n/* 163:213 */ return query.getResultList();\r\n/* 164: */ }", "private String createSelectWithNameAndAddress() {\n StringBuilder sb = new StringBuilder();\n sb.append(\"SELECT * FROM client\");\n sb.append(\" WHERE name =?\");\n sb.append(\" AND address =?\");\n\n return sb.toString();\n }", "@Override\n\tprotected String getParameters()\n\t{\n\t\tString fields = \" ?, ?, ?, ?, ? \";\n\t\treturn fields;\n\t}", "private String formatSql(String sql) {\n\t\tString sqlStr = formator.format(sql + \";\");\n\t\tif (sqlStr == null) {\n\t\t\tLOGGER.error(\"The formator.format(sql) is a null.\");\n\t\t\treturn null;\n\t\t}\n\n\t\tString trimmedSql = sqlStr.trim();\n\t\tif (!trimmedSql.endsWith(\";\")) {\n\t\t\treturn \"\";\n\t\t}\n\n\t\tString formattedSql = trimmedSql.substring(0, trimmedSql.length() - 1);\n\t\treturn formattedSql;\n\t}", "private PreparedStatement prepareClientes(Connection conn, String data) throws ParseException, SQLException\n\t{\n\t\t\n\t\tPreparedStatement result = null;\n\t\t\n\t\t//Parametros 1 e 6: Data de execucao atual\n\t\tSimpleDateFormat conversorData = new SimpleDateFormat(\"dd/MM/yyyy\");\n\t\tDate dataExecucao = conversorData.parse(data);\n\t\t//Parametro 2: Ano e mes da execucao\n\t\tSimpleDateFormat conversorDatMes = new SimpleDateFormat(\"yyMM\");\n\t\tString datMes = conversorDatMes.format(mesAnterior(dataExecucao));\n\t\t//Parametro 3: Tipo de transacao da promocao PulaPula\n\t\tString tipoTransacao = TIPO_TRANSACAO_PULA_PULA;\n\t\t//Parametros 4 e 7: Primeiro dia do mes da execucao\n\t\tDate dataInicioMesExecucao = getPrimeiroDiaMes(dataExecucao);\n\t\t//Parametro 5: Primeiro dia do mes posterior ao da execucao\n\t\tDate dataInicioProxMes = getPrimeiroDiaMes(proximoMes(dataExecucao));\n\t\t//Parametro 8: Ultimo dia do mes da execucao\n\t\tDate dataFimMesExecucao = getUltimoDiaMes(dataExecucao);\n\n\t\tString sqlClientes = getQuerySelecaoClientes();\n\t\tresult = conn.prepareStatement(sqlClientes);\n\t\tresult.setDate (1, new java.sql.Date(dataExecucao.getTime()));\n\t\tresult.setString(2, datMes);\n\t\tresult.setString(3, tipoTransacao);\n\t\tresult.setDate (4, new java.sql.Date(dataInicioMesExecucao.getTime()));\n\t\tresult.setDate (5, new java.sql.Date(dataInicioProxMes.getTime()));\n\t\tresult.setDate (6, new java.sql.Date(dataExecucao.getTime()));\n\t\tresult.setDate (7, new java.sql.Date(dataInicioMesExecucao.getTime()));\n\t\tresult.setDate (8, new java.sql.Date(dataFimMesExecucao.getTime()));\n\t\t\n\t\treturn result;\n\t}", "@Override\n\tprotected String getParameters()\n\t{\n\t\tString fields = \" ?, ?, ?, ?, ?, ? \";\n\t\treturn fields;\n\t}", "protected String getSQLWhere()\n \t{\n \t\tStringBuffer sql = new StringBuffer();\n \t\tif (fDocumentNo.getText().length() > 0)\n \t\t\tsql.append(\" AND UPPER(p.DocumentNo) LIKE ?\");\n if (fRoutingNo.getText().length() > 0)\n sql.append(\" AND UPPER(p.RoutingNo) LIKE ?\"); // Marcos Zúñiga\n if (fCheckNo.getText().length() > 0)\n sql.append(\" AND UPPER(p.CheckNo) LIKE ?\"); // Marcos Zúñiga\n if (fA_Name.getText().length() > 0)\n sql.append(\" AND UPPER(p.A_Name) LIKE ?\"); // Marcos Zúñiga\n \t\tif (fDateFrom.getValue() != null || fDateTo.getValue() != null)\n \t\t{\n \t\t\tTimestamp from = (Timestamp)fDateFrom.getValue();\n \t\t\tTimestamp to = (Timestamp)fDateTo.getValue();\n \t\t\tif (from == null && to != null)\n \t\t\t\tsql.append(\" AND TRUNC(p.DateTrx) <= ?\");\n \t\t\telse if (from != null && to == null)\n \t\t\t\tsql.append(\" AND TRUNC(p.DateTrx) >= ?\");\n \t\t\telse if (from != null && to != null)\n \t\t\t\tsql.append(\" AND TRUNC(p.DateTrx) BETWEEN ? AND ?\");\n \t\t}\n \t\t//\n \t\tif (fAmtFrom.getValue() != null || fAmtTo.getValue() != null)\n \t\t{\n \t\t\tBigDecimal from = (BigDecimal)fAmtFrom.getValue();\n \t\t\tBigDecimal to = (BigDecimal)fAmtTo.getValue();\n \t\t\tif (from == null && to != null)\n \t\t\t\tsql.append(\" AND p.PayAmt <= ?\");\n \t\t\telse if (from != null && to == null)\n \t\t\t\tsql.append(\" AND p.PayAmt >= ?\");\n \t\t\telse if (from != null && to != null)\n \t\t\t\tsql.append(\" AND p.PayAmt BETWEEN ? AND ?\");\n \t\t}\n \t\tsql.append(\" AND p.IsReceipt=?\");\n \n \t\t// sql.append(\" AND p.IsReconciled='N'\");\n \n \t\tlog.fine(sql.toString());\n \t\treturn sql.toString();\n \t}", "DataSet sql(SQLContext context, String sql);", "SELECT createSELECT();", "@Override\n\tprotected void prepare() {\n\t\tOrder_ID = getRecord_ID();\n\t\tEventType = getParameterAsString(\"EventType\");\n\t\t\n\t}", "public abstract ResultList executeSQL(RawQuery rawQuery);", "private Set parseSQL(String sqlin){\r\n \tSet columnProposals = new HashSet();\r\n \t//Find the end of \"SELECT\" and the start of \"FROM\"\r\n \t//if you dont find SELECT run away\r\n \tint selectStartPos = sqlin.toLowerCase().indexOf(\"select\", 0);\r\n \tint fromStartPos = sqlin.toLowerCase().indexOf(\"from\", 0);\r\n \tif(selectStartPos == -1){\r\n \t\treturn null;\r\n \t}\r\n \tif(fromStartPos == -1){\r\n \t\treturn null;\r\n \t}\r\n \t\r\n \t//Ok, so we found a SELECT and a FROM, lets get the middle bit!\r\n \tString allColumns = sqlin.substring(selectStartPos + (\"select\").length(), fromStartPos).trim();\r\n \tString[] columnArray = allColumns.split(\",\");\r\n \t\r\n \tfor(int i=0; i<columnArray.length; i++){\r\n \t\tString column = columnArray[i].trim();\r\n \t\t//We need to find if it has an AS\r\n \t\t\r\n \t\tint findAS = column.toLowerCase().indexOf(\" as \", 0);\r\n \t\t\r\n \t\tif(findAS != -1){\r\n \t\t\tcolumn = column.substring(findAS + 4, column.length()).trim();\r\n \t\t}\r\n \t\tcolumnProposals.add(column);\r\n \t}\r\n \treturn columnProposals;\r\n }", "String escapeReservedWords(String query);", "public String ejecutarSQLselect(String sql, int div){\n String line=\"\";\n try {\n iniciarConexion();\n ResultSet rs = this.statement.executeQuery(sql);\n if (rs.next()){ \n String paquete = rs.getString(\"dataInstrumento\");\n String token[]=paquete.split(\";\");\n double aux []=new double[token.length];\n for(int i=0;i<aux.length;i++){\n aux[i]+=Double.parseDouble(token[i]);\n }\n while (rs.next()) {\n paquete = rs.getString(\"dataInstrumento\");\n String token2[]=paquete.split(\";\");\n for(int i=0;i<aux.length;i++){\n aux[i]+=Double.parseDouble(token2[i]);\n }\n }\n for(int i=0;i<aux.length-1;i++){\n line+=aux[i]/div+\";\";// posible error entteros\n }\n line+=aux[aux.length-1]/div;\n } \n rs.close();\n cerrarConexion();\n } catch (SQLException ex) {\n System.out.println(ex);\n }\n return line;\n }", "public static String getCmd(String sql) {\r\n\t\tString ret = \"\";\r\n\r\n\t\tchar ch;\r\n\t\tString word = \"\";\r\n\r\n\t\tfor (int x = 0; x < sql.length(); x++) {\r\n\t\t\tch = sql.charAt(x);\r\n\t\t\t// word = word + ch;\r\n\r\n\t\t\tif (ch == ' ') {\r\n\t\t\t\tx = sql.length() + 1;\r\n\t\t\t} else {\r\n\t\t\t\tword = word + ch;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tret = word;\r\n\r\n\t\treturn (ret);\r\n\t}", "private String addParametersAsLiterals(fyiReporting.RDL.Report rpt, IDbConnection cn, String sql, boolean bValue) throws Exception {\n if (this._QueryParameters == null || this._QueryParameters.getItems() == null || this._QueryParameters.getItems().Count == 0)\n return sql;\n \n // Only do this for ODBC datasources - AddParameters handles it in other cases\n if (!RdlEngineConfig.doParameterReplacement(getProvider(),cn))\n {\n if (!_QueryParameters.getContainsArray())\n return sql;\n \n }\n \n // when array we do substitution\n StringBuilder sb = new StringBuilder(sql);\n List<QueryParameter> qlist = new List<QueryParameter>();\n if (_QueryParameters.getItems().Count <= 1)\n qlist = _QueryParameters.getItems();\n else\n {\n // need to sort the list so that longer items are first in the list\n // otherwise substitution could be done incorrectly\n qlist = new List<QueryParameter>(_QueryParameters.getItems());\n qlist.Sort();\n } \n for (Object __dummyForeachVar12 : qlist)\n {\n QueryParameter qp = (QueryParameter)__dummyForeachVar12;\n String paramName = new String();\n // force the name to start with @\n if (qp.getName().getNm()[0] == '@')\n paramName = qp.getName().getNm();\n else\n paramName = \"@\" + qp.getName().getNm(); \n // build the replacement value\n String svalue = new String();\n if (bValue)\n {\n // use the value provided\n svalue = this.parameterValue(rpt,qp);\n }\n else\n {\n // just need a place holder value that will pass parsing\n TypeCode __dummyScrutVar1 = qp.getValue().getExpr().getTypeCode();\n if (__dummyScrutVar1.equals(TypeCode.Char))\n {\n svalue = \"' '\";\n }\n else if (__dummyScrutVar1.equals(TypeCode.DateTime))\n {\n svalue = \"'1900-01-01 00:00:00'\";\n }\n else if (__dummyScrutVar1.equals(TypeCode.Decimal) || __dummyScrutVar1.equals(TypeCode.Double) || __dummyScrutVar1.equals(TypeCode.Int32) || __dummyScrutVar1.equals(TypeCode.Int64))\n {\n svalue = \"0\";\n }\n else if (__dummyScrutVar1.equals(TypeCode.Boolean))\n {\n svalue = \"'false'\";\n }\n else\n {\n svalue = \"' '\";\n } \n } \n sb.Replace(paramName, svalue);\n }\n return sb.ToString();\n }", "public void setSql(String sql) {\n this.sql = sql;\n }", "static SqlInfo parse(String namedSql, List<Parameter> parameters) {\n List<String> names = new ArrayList<String>();\n String sql = collectNamesAndConvertToQuestionMarks(namedSql, names, parameters);\n log.debug(\"sqlAfterSubs={}\", sql);\n return new SqlInfo(sql, names);\n }", "private void preparedStatementForEmployeeData() {\n\t\ttry {\n\t\t\tConnection connection = this.getConnection();\n\t\t\tString sql = \"Select * from employee_payroll_2 WHERE name = ?\";\n\t\t\temployeePayrollDataStatement = connection.prepareStatement(sql);\n\t\t} catch (SQLException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "protected static PreparedStatement prepareStatement(ReviewDb db, String sql)\n throws SQLException {\n return ((JdbcSchema) db).getConnection().prepareStatement(sql);\n }", "@Override\n\tpublic void executeUpdateDinamicSQL(String s) throws Exception {\n\t\t\n\t}", "public AvaticaPrepareResult prepare(AvaticaStatement statement_, String sql) {\n return new DrillPrepareResult(sql);\n }", "public String[] makeToDeterministic(String sqlQuery) throws JSQLParserException {\n\t\t\n\t\tDebug.println(\"Try to make the queries deterministic\");\n\t\t\n\t\tString[] deterQueries = null;\n\t\t\n\t\t// contains current_time_stamp\n\t\t// contains NOW(), use the same\n\t\t// contains select, do the select first\n\t\t// contains delete from where (not specify by full primary key)\n\t\t// fill in default value and IDs for insert\n\t\tnet.sf.jsqlparser.statement.Statement sqlStmt = cJsqlParser.parse(new StringReader(sqlQuery));\n\t\tif (sqlStmt instanceof Insert) {\n\t\t\tInsert insertStmt = (Insert) sqlStmt;\n\t\t\tString tableName = insertStmt.getTable().getName();\n\t\t\tList<String> colList = new ArrayList<String>();\n\t\t\tList<String> valList = new ArrayList<String>();\n\t\t\tIterator colIt = insertStmt.getColumns().iterator();\n\t\t\twhile(colIt.hasNext()){\n\t\t\t\tcolList.add(colIt.next().toString());\n\t\t\t}\n\t\t\t//replace selection with their results\n\t\t\treplaceSelectionForInsert(insertStmt, valList);\n\t\t\t//call function to replace and fill in the missing fields\n\t\t\tfillInMissingValue(tableName, colList, valList);\n\t\t\tdeterQueries = new String[1];\n\t\t\tdeterQueries[0] = assembleInsert(tableName, colList, valList);\n\t\t}else if(sqlStmt instanceof Update){\n\t\t\tUpdate updateStmt = (Update) sqlStmt;\n\t\t\tList<String> colList = new ArrayList<String>();\n\t\t\tList<String> valList = new ArrayList<String>();\n\t\t\tIterator colIt = updateStmt.getColumns().iterator();\n\t\t\twhile(colIt.hasNext()){\n\t\t\t\tcolList.add(colIt.next().toString());\n\t\t\t}\n\t\t\tIterator valueIt = updateStmt.getExpressions().iterator();\n\t\t\twhile(valueIt.hasNext()){\n\t\t\t\tvalList.add(valueIt.next().toString());\n\t\t\t}\n\t\t\t//replace values for selection in the itemlist\n\t\t\treplaceSelectionForUpdate(updateStmt,valList);\n\t\t\t//replace database functions like now or current time stamp\n\t\t\treplaceValueForDatabaseFunctions(updateStmt.getTable().getName(), valList);\n\t\t\t//where clause figure out whether this is specify by primary key or not, if yes, go ahead,\n\t\t\t//it not, please first query \n\t\t\tdeterQueries = fillInMissingPrimaryKeysForUpdate(updateStmt, colList, valList);\n\t\t\t\n\t\t}else if(sqlStmt instanceof Delete){\n\t\t\tDelete deleteStmt = (Delete) sqlStmt;\n\t\t\t//where clause figure out whether this is specify by primary key or not, if yes, go ahead,\n\t\t\t//it not, please first query \n\t\t\tdeterQueries = fillInMissingPrimaryKeysForDelete(deleteStmt);\n\t\t}\n\t\t\n\t\treturn deterQueries;\n\t}", "<T extends BaseDto, V extends BaseDto> List<T> executeQuery(String reqResQuery, V req, QueryResultTransformer<T> transformer, Connection conn);", "private String stageDetailsFromDB(String queryString){\n\t\tString RET=\"\";\n\t\ttry\n\t\t{\n\t\t\tcon = Globals.getDatasource().getConnection();\n\t\t\tps = con.prepareStatement(queryString); \n\t\t\tresult = ps.executeQuery();\n\t\t\tif (result.first()) {\n\t\t\t\tRET = result.getString(1);\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t}\n\t\tcatch(SQLException sqle){sqle.printStackTrace();}\n\t\tfinally {\n\t\t Globals.closeQuietly(con, ps, result);\n\t\t}\n\t\treturn RET;\n\t}", "public void prepareExecuteSelect() {\n setCallFromStatement();\n // The statement is no longer require so can be released.\n clearStatement();\n\n super.prepareExecuteSelect();\n }" ]
[ "0.6679664", "0.6430556", "0.6278587", "0.61006624", "0.5992704", "0.59693927", "0.59265107", "0.59147", "0.58785415", "0.5856395", "0.5816937", "0.5809208", "0.5787084", "0.57269454", "0.57217836", "0.57170945", "0.5711721", "0.57075167", "0.57036334", "0.5686189", "0.56763893", "0.56755656", "0.5640733", "0.5592838", "0.5563667", "0.5563078", "0.55551934", "0.5517311", "0.54792833", "0.54746586", "0.54705536", "0.5460032", "0.5418282", "0.5405029", "0.5402087", "0.54010844", "0.5400651", "0.53723925", "0.5360007", "0.53509766", "0.5336335", "0.53350675", "0.53325903", "0.53319013", "0.5326896", "0.5321177", "0.5309805", "0.5302376", "0.52903306", "0.52816504", "0.52813256", "0.5280961", "0.5280593", "0.5280313", "0.5261455", "0.5256564", "0.5254802", "0.5254802", "0.5245016", "0.5233116", "0.52323145", "0.5208377", "0.5195097", "0.5191266", "0.51834184", "0.517111", "0.5166814", "0.5166644", "0.5152001", "0.51501334", "0.5143618", "0.5138414", "0.51344603", "0.51342624", "0.5131054", "0.5124886", "0.5118074", "0.51024187", "0.51017374", "0.51016545", "0.5098506", "0.50985026", "0.5096", "0.50903946", "0.50898314", "0.50737673", "0.50730467", "0.50721097", "0.5069836", "0.5065151", "0.5063329", "0.50548965", "0.5052331", "0.5048336", "0.5048175", "0.503768", "0.5030332", "0.5029278", "0.5025848", "0.5023485", "0.5023295" ]
0.0
-1
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.
@SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { tab1_daily = new javax.swing.JTabbedPane(); north_panel = new javax.swing.JPanel(); datePicker = new org.jdesktop.swingx.JXDatePicker(); jLabel1 = new javax.swing.JLabel(); jLabel2 = new javax.swing.JLabel(); Eq1startTimeSpinner = new javax.swing.JSpinner(); Eq1endTimeSpinner = new javax.swing.JSpinner(); jLabel11 = new javax.swing.JLabel(); export_btn = new javax.swing.JButton(); workplace_filter = new javax.swing.JComboBox(); segment_filter = new javax.swing.JComboBox(); jLabel20 = new javax.swing.JLabel(); jLabel22 = new javax.swing.JLabel(); Eq2endTimeSpinner = new javax.swing.JSpinner(); Eq2startTimeSpinner = new javax.swing.JSpinner(); Eq3endTimeSpinner = new javax.swing.JSpinner(); Eq3startTimeSpinner = new javax.swing.JSpinner(); jLabel3 = new javax.swing.JLabel(); jLabel23 = new javax.swing.JLabel(); jPanel2 = new javax.swing.JPanel(); jLabel4 = new javax.swing.JLabel(); week_txt = new javax.swing.JTextField(); year_txt = new javax.swing.JTextField(); export_btn1 = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setTitle("Production statistics"); setResizable(false); addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { formKeyPressed(evt); } }); north_panel.setBackground(new java.awt.Color(51, 51, 51)); north_panel.addKeyListener(new java.awt.event.KeyAdapter() { public void keyPressed(java.awt.event.KeyEvent evt) { north_panelKeyPressed(evt); } }); jLabel1.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N jLabel1.setForeground(new java.awt.Color(255, 255, 255)); jLabel1.setText("Equipe Matin"); jLabel2.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N jLabel2.setForeground(new java.awt.Color(255, 255, 255)); jLabel2.setText("Equipe Soir"); Eq1startTimeSpinner.setFont(new java.awt.Font("Tahoma", 0, 18)); // NOI18N Eq1endTimeSpinner.setFont(new java.awt.Font("Tahoma", 0, 18)); // NOI18N jLabel11.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N jLabel11.setForeground(new java.awt.Color(255, 255, 255)); jLabel11.setText("Déclaration équipe / jour"); export_btn.setText("Exporter en Excel..."); export_btn.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { export_btnActionPerformed(evt); } }); workplace_filter.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N workplace_filter.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "ALL" })); workplace_filter.addItemListener(new java.awt.event.ItemListener() { public void itemStateChanged(java.awt.event.ItemEvent evt) { workplace_filterItemStateChanged(evt); } }); workplace_filter.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { workplace_filterActionPerformed(evt); } }); segment_filter.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N segment_filter.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "ALL" })); segment_filter.addItemListener(new java.awt.event.ItemListener() { public void itemStateChanged(java.awt.event.ItemEvent evt) { segment_filterItemStateChanged(evt); } }); segment_filter.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { segment_filterActionPerformed(evt); } }); jLabel20.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N jLabel20.setForeground(new java.awt.Color(255, 255, 255)); jLabel20.setText("Segment"); jLabel22.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N jLabel22.setForeground(new java.awt.Color(255, 255, 255)); jLabel22.setText("Workplace"); Eq2endTimeSpinner.setFont(new java.awt.Font("Tahoma", 0, 18)); // NOI18N Eq2startTimeSpinner.setFont(new java.awt.Font("Tahoma", 0, 18)); // NOI18N Eq3endTimeSpinner.setFont(new java.awt.Font("Tahoma", 0, 18)); // NOI18N Eq3startTimeSpinner.setFont(new java.awt.Font("Tahoma", 0, 18)); // NOI18N jLabel3.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N jLabel3.setForeground(new java.awt.Color(255, 255, 255)); jLabel3.setText("Equipe Nuit"); jLabel23.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N jLabel23.setForeground(new java.awt.Color(255, 255, 255)); jLabel23.setText("Date"); javax.swing.GroupLayout north_panelLayout = new javax.swing.GroupLayout(north_panel); north_panel.setLayout(north_panelLayout); north_panelLayout.setHorizontalGroup( north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, north_panelLayout.createSequentialGroup() .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(workplace_filter, 0, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(segment_filter, javax.swing.GroupLayout.PREFERRED_SIZE, 202, javax.swing.GroupLayout.PREFERRED_SIZE)) .addComponent(datePicker, javax.swing.GroupLayout.PREFERRED_SIZE, 224, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(311, 311, 311)) .addGroup(north_panelLayout.createSequentialGroup() .addGap(22, 22, 22) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(north_panelLayout.createSequentialGroup() .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jLabel23, javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(jLabel1, javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(jLabel2, javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(jLabel3, javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(jLabel22, javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(jLabel20, javax.swing.GroupLayout.Alignment.TRAILING)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 57, Short.MAX_VALUE) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, north_panelLayout.createSequentialGroup() .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(Eq2startTimeSpinner, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 107, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(Eq3startTimeSpinner, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 107, javax.swing.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(Eq3endTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, 107, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(Eq2endTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, 107, javax.swing.GroupLayout.PREFERRED_SIZE))) .addComponent(export_btn, javax.swing.GroupLayout.Alignment.TRAILING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, north_panelLayout.createSequentialGroup() .addComponent(Eq1startTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, 107, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(Eq1endTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, 107, javax.swing.GroupLayout.PREFERRED_SIZE))) .addGap(311, 311, 311)) .addGroup(north_panelLayout.createSequentialGroup() .addComponent(jLabel11) .addGap(380, 380, 380)))) ); north_panelLayout.setVerticalGroup( north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(north_panelLayout.createSequentialGroup() .addGap(16, 16, 16) .addComponent(jLabel11) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 46, Short.MAX_VALUE) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jLabel22, javax.swing.GroupLayout.Alignment.TRAILING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, north_panelLayout.createSequentialGroup() .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(segment_filter, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jLabel20, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(workplace_filter, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE))) .addGap(18, 18, 18) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(datePicker, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jLabel23)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.CENTER) .addComponent(jLabel1) .addComponent(Eq1startTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(Eq1endTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.CENTER) .addComponent(jLabel2) .addComponent(Eq2startTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(Eq2endTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addGroup(north_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.CENTER) .addComponent(jLabel3) .addComponent(Eq3startTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(Eq3endTimeSpinner, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(31, 31, 31) .addComponent(export_btn, javax.swing.GroupLayout.PREFERRED_SIZE, 28, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(81, 81, 81)) ); tab1_daily.addTab("Déclaration jour J", north_panel); jPanel2.setBackground(new java.awt.Color(51, 51, 51)); jPanel2.setForeground(new java.awt.Color(255, 255, 255)); jLabel4.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N jLabel4.setForeground(new java.awt.Color(255, 255, 255)); jLabel4.setText("Déclaration équipe / semaine"); week_txt.setText("1"); year_txt.setText("1"); export_btn1.setText("Exporter en Excel..."); export_btn1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { export_btn1ActionPerformed(evt); } }); javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2); jPanel2.setLayout(jPanel2Layout); jPanel2Layout.setHorizontalGroup( jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel2Layout.createSequentialGroup() .addGap(24, 24, 24) .addComponent(jLabel4) .addGap(28, 28, 28) .addComponent(week_txt, javax.swing.GroupLayout.PREFERRED_SIZE, 77, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18) .addComponent(year_txt, javax.swing.GroupLayout.PREFERRED_SIZE, 77, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18) .addComponent(export_btn1) .addContainerGap(65, Short.MAX_VALUE)) ); jPanel2Layout.setVerticalGroup( jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel2Layout.createSequentialGroup() .addGap(21, 21, 21) .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel4) .addComponent(week_txt, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(year_txt, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(export_btn1, javax.swing.GroupLayout.PREFERRED_SIZE, 28, javax.swing.GroupLayout.PREFERRED_SIZE)) .addContainerGap(398, Short.MAX_VALUE)) ); tab1_daily.addTab("Déclaration Hebdomadaire", jPanel2); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(tab1_daily) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(tab1_daily) ); pack(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Form() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n }", "public frmRectangulo() {\n initComponents();\n }", "public form() {\n initComponents();\n }", "public AdjointForm() {\n initComponents();\n setDefaultCloseOperation(HIDE_ON_CLOSE);\n }", "public FormListRemarking() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n \n }", "public FormPemilihan() {\n initComponents();\n }", "public GUIForm() { \n initComponents();\n }", "public FrameForm() {\n initComponents();\n }", "public TorneoForm() {\n initComponents();\n }", "public FormCompra() {\n initComponents();\n }", "public muveletek() {\n initComponents();\n }", "public Interfax_D() {\n initComponents();\n }", "public quanlixe_form() {\n initComponents();\n }", "public SettingsForm() {\n initComponents();\n }", "public RegistrationForm() {\n initComponents();\n this.setLocationRelativeTo(null);\n }", "public Soru1() {\n initComponents();\n }", "public FMainForm() {\n initComponents();\n this.setResizable(false);\n setLocationRelativeTo(null);\n }", "public soal2GUI() {\n initComponents();\n }", "public EindopdrachtGUI() {\n initComponents();\n }", "public MechanicForm() {\n initComponents();\n }", "public AddDocumentLineForm(java.awt.Frame parent) {\n super(parent);\n initComponents();\n myInit();\n }", "public quotaGUI() {\n initComponents();\n }", "public BloodDonationGUI() {\n initComponents();\n }", "public Customer_Form() {\n initComponents();\n setSize(890,740);\n \n \n }", "public PatientUI() {\n initComponents();\n }", "public Oddeven() {\n initComponents();\n }", "public myForm() {\n\t\t\tinitComponents();\n\t\t}", "public Magasin() {\n initComponents();\n }", "public intrebarea() {\n initComponents();\n }", "public RadioUI()\n {\n initComponents();\n }", "public NewCustomerGUI() {\n initComponents();\n }", "public ZobrazUdalost() {\n initComponents();\n }", "public FormUtama() {\n initComponents();\n }", "public p0() {\n initComponents();\n }", "public INFORMACION() {\n initComponents();\n this.setLocationRelativeTo(null); \n }", "public ProgramForm() {\n setLookAndFeel();\n initComponents();\n }", "public AmountReleasedCommentsForm() {\r\n initComponents();\r\n }", "public form2() {\n initComponents();\n }", "public MainForm() {\n\t\tsuper(\"Hospital\", List.IMPLICIT);\n\n\t\tstartComponents();\n\t}", "public LixeiraForm() {\n initComponents();\n setLocationRelativeTo(null);\n }", "public kunde() {\n initComponents();\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n setName(\"Form\"); // NOI18N\n setRequestFocusEnabled(false);\n setVerifyInputWhenFocusTarget(false);\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);\n this.setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 465, Short.MAX_VALUE)\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 357, Short.MAX_VALUE)\n );\n }", "public MusteriEkle() {\n initComponents();\n }", "public frmMain() {\n initComponents();\n }", "public frmMain() {\n initComponents();\n }", "public DESHBORDPANAL() {\n initComponents();\n }", "public frmVenda() {\n initComponents();\n }", "public GUIForm() {\n initComponents();\n inputField.setText(NO_FILE_SELECTED);\n outputField.setText(NO_FILE_SELECTED);\n progressLabel.setBackground(INFO);\n progressLabel.setText(SELECT_FILE);\n }", "public Botonera() {\n initComponents();\n }", "public FrmMenu() {\n initComponents();\n }", "public OffertoryGUI() {\n initComponents();\n setTypes();\n }", "public JFFornecedores() {\n initComponents();\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents()\n {\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n setBackground(new java.awt.Color(255, 255, 255));\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());\n getContentPane().setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 983, Short.MAX_VALUE)\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 769, Short.MAX_VALUE)\n );\n\n pack();\n }", "public EnterDetailsGUI() {\n initComponents();\n }", "public vpemesanan1() {\n initComponents();\n }", "public Kost() {\n initComponents();\n }", "public FormHorarioSSE() {\n initComponents();\n }", "public UploadForm() {\n initComponents();\n }", "public frmacceso() {\n initComponents();\n }", "public HW3() {\n initComponents();\n }", "public Managing_Staff_Main_Form() {\n initComponents();\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents()\n {\n\n setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);\n getContentPane().setLayout(null);\n\n pack();\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n setName(\"Form\"); // NOI18N\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);\n this.setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 400, Short.MAX_VALUE)\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 300, Short.MAX_VALUE)\n );\n }", "public sinavlar2() {\n initComponents();\n }", "public P0405() {\n initComponents();\n }", "public MiFrame2() {\n initComponents();\n }", "public IssueBookForm() {\n initComponents();\n }", "public Choose1() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n\n String oldAuthor = prefs.get(\"AUTHOR\", \"\");\n if(oldAuthor != null) {\n this.authorTextField.setText(oldAuthor);\n }\n String oldBook = prefs.get(\"BOOK\", \"\");\n if(oldBook != null) {\n this.bookTextField.setText(oldBook);\n }\n String oldDisc = prefs.get(\"DISC\", \"\");\n if(oldDisc != null) {\n try {\n int oldDiscNum = Integer.parseInt(oldDisc);\n oldDiscNum++;\n this.discNumberTextField.setText(Integer.toString(oldDiscNum));\n } catch (Exception ex) {\n this.discNumberTextField.setText(oldDisc);\n }\n this.bookTextField.setText(oldBook);\n }\n\n\n }", "public GUI_StudentInfo() {\n initComponents();\n }", "public Lihat_Dokter_Keseluruhan() {\n initComponents();\n }", "public JFrmPrincipal() {\n initComponents();\n }", "public bt526() {\n initComponents();\n }", "public Pemilihan_Dokter() {\n initComponents();\n }", "public Ablak() {\n initComponents();\n }", "@Override\n\tprotected void initUi() {\n\t\t\n\t}", "@SuppressWarnings(\"unchecked\")\n\t// <editor-fold defaultstate=\"collapsed\" desc=\"Generated\n\t// Code\">//GEN-BEGIN:initComponents\n\tprivate void initComponents() {\n\n\t\tlabel1 = new java.awt.Label();\n\t\tlabel2 = new java.awt.Label();\n\t\tlabel3 = new java.awt.Label();\n\t\tlabel4 = new java.awt.Label();\n\t\tlabel5 = new java.awt.Label();\n\t\tlabel6 = new java.awt.Label();\n\t\tlabel7 = new java.awt.Label();\n\t\tlabel8 = new java.awt.Label();\n\t\tlabel9 = new java.awt.Label();\n\t\tlabel10 = new java.awt.Label();\n\t\ttextField1 = new java.awt.TextField();\n\t\ttextField2 = new java.awt.TextField();\n\t\tlabel14 = new java.awt.Label();\n\t\tlabel15 = new java.awt.Label();\n\t\tlabel16 = new java.awt.Label();\n\t\ttextField3 = new java.awt.TextField();\n\t\ttextField4 = new java.awt.TextField();\n\t\ttextField5 = new java.awt.TextField();\n\t\tlabel17 = new java.awt.Label();\n\t\tlabel18 = new java.awt.Label();\n\t\tlabel19 = new java.awt.Label();\n\t\tlabel20 = new java.awt.Label();\n\t\tlabel21 = new java.awt.Label();\n\t\tlabel22 = new java.awt.Label();\n\t\ttextField6 = new java.awt.TextField();\n\t\ttextField7 = new java.awt.TextField();\n\t\ttextField8 = new java.awt.TextField();\n\t\tlabel23 = new java.awt.Label();\n\t\ttextField9 = new java.awt.TextField();\n\t\ttextField10 = new java.awt.TextField();\n\t\ttextField11 = new java.awt.TextField();\n\t\ttextField12 = new java.awt.TextField();\n\t\tlabel24 = new java.awt.Label();\n\t\tlabel25 = new java.awt.Label();\n\t\tlabel26 = new java.awt.Label();\n\t\tlabel27 = new java.awt.Label();\n\t\tlabel28 = new java.awt.Label();\n\t\tlabel30 = new java.awt.Label();\n\t\tlabel31 = new java.awt.Label();\n\t\tlabel32 = new java.awt.Label();\n\t\tjButton1 = new javax.swing.JButton();\n\n\t\tlabel1.setFont(new java.awt.Font(\"Segoe UI Semibold\", 0, 18)); // NOI18N\n\t\tlabel1.setText(\"It seems that some of the buttons on the ATM machine are not working!\");\n\n\t\tlabel2.setFont(new java.awt.Font(\"Segoe UI Semibold\", 0, 18)); // NOI18N\n\t\tlabel2.setText(\"Unfortunately these numbers are exactly what Professor has to use to type in his password.\");\n\n\t\tlabel3.setFont(new java.awt.Font(\"Segoe UI Semibold\", 0, 18)); // NOI18N\n\t\tlabel3.setText(\n\t\t\t\t\"If you want to eat tonight, you have to help him out and construct the numbers of the password with the working buttons and math operators.\");\n\n\t\tlabel4.setFont(new java.awt.Font(\"Segoe UI Semibold\", 0, 14)); // NOI18N\n\t\tlabel4.setText(\"Denver's Password: 2792\");\n\n\t\tlabel5.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel5.setText(\"import java.util.Scanner;\\n\");\n\n\t\tlabel6.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel6.setText(\"public class ATM{\");\n\n\t\tlabel7.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel7.setText(\"public static void main(String[] args){\");\n\n\t\tlabel8.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel8.setText(\"System.out.print(\");\n\n\t\tlabel9.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel9.setText(\" -\");\n\n\t\tlabel10.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel10.setText(\");\");\n\n\t\ttextField1.addActionListener(new java.awt.event.ActionListener() {\n\t\t\tpublic void actionPerformed(java.awt.event.ActionEvent evt) {\n\t\t\t\ttextField1ActionPerformed(evt);\n\t\t\t}\n\t\t});\n\n\t\tlabel14.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel14.setText(\"System.out.print( (\");\n\n\t\tlabel15.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel15.setText(\"System.out.print(\");\n\n\t\tlabel16.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel16.setText(\"System.out.print( ( (\");\n\n\t\tlabel17.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel17.setText(\")\");\n\n\t\tlabel18.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel18.setText(\" +\");\n\n\t\tlabel19.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel19.setText(\");\");\n\n\t\tlabel20.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel20.setText(\" /\");\n\n\t\tlabel21.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel21.setText(\" %\");\n\n\t\tlabel22.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel22.setText(\" +\");\n\n\t\tlabel23.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel23.setText(\");\");\n\n\t\tlabel24.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel24.setText(\" +\");\n\n\t\tlabel25.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel25.setText(\" /\");\n\n\t\tlabel26.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel26.setText(\" *\");\n\n\t\tlabel27.setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));\n\t\tlabel27.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel27.setText(\")\");\n\n\t\tlabel28.setFont(new java.awt.Font(\"Dialog\", 0, 14)); // NOI18N\n\t\tlabel28.setText(\")\");\n\n\t\tlabel30.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel30.setText(\"}\");\n\n\t\tlabel31.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel31.setText(\"}\");\n\n\t\tlabel32.setFont(new java.awt.Font(\"Consolas\", 0, 14)); // NOI18N\n\t\tlabel32.setText(\");\");\n\n\t\tjButton1.setFont(new java.awt.Font(\"Segoe UI Semibold\", 0, 14)); // NOI18N\n\t\tjButton1.setText(\"Check\");\n\t\tjButton1.addActionListener(new java.awt.event.ActionListener() {\n\t\t\tpublic void actionPerformed(java.awt.event.ActionEvent evt) {\n\t\t\t\tjButton1ActionPerformed(evt);\n\t\t\t}\n\t\t});\n\n\t\tjavax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);\n\t\tlayout.setHorizontalGroup(layout.createParallelGroup(Alignment.LEADING)\n\t\t\t\t.addGroup(layout.createSequentialGroup().addGap(28).addGroup(layout\n\t\t\t\t\t\t.createParallelGroup(Alignment.LEADING).addComponent(getDoneButton()).addComponent(jButton1)\n\t\t\t\t\t\t.addComponent(label7, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addComponent(label6, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addComponent(label5, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addComponent(label4, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addComponent(label3, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t.addComponent(label1, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t.addGap(1)\n\t\t\t\t\t\t\t\t.addComponent(label2, GroupLayout.PREFERRED_SIZE, 774, GroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t.addGap(92).addGroup(layout.createParallelGroup(Alignment.LEADING).addGroup(layout\n\t\t\t\t\t\t\t\t\t\t.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.LEADING, false)\n\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label15, GroupLayout.PREFERRED_SIZE, 145,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField8, GroupLayout.PREFERRED_SIZE, 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(2)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label21, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField7, GroupLayout.PREFERRED_SIZE, 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label8, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField1, GroupLayout.PREFERRED_SIZE, 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label9, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED).addComponent(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttextField2, GroupLayout.PREFERRED_SIZE, 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label31, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup().addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(Alignment.LEADING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label14, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(37))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup().addGap(174)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField5, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t20, GroupLayout.PREFERRED_SIZE)))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label18, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(7)))\n\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.LEADING).addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(Alignment.TRAILING, false).addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField4, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t20, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label17, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label22, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField9, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t20, GroupLayout.PREFERRED_SIZE)))\n\t\t\t\t\t\t\t\t\t\t\t\t.addGap(20)\n\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label23, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label20, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField3, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t20, GroupLayout.PREFERRED_SIZE)))\n\t\t\t\t\t\t\t\t\t\t\t\t.addGap(20).addComponent(label19, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup().addGap(23).addComponent(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tlabel10, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))))\n\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label16, GroupLayout.PREFERRED_SIZE, 177,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField12, GroupLayout.PREFERRED_SIZE, 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label24, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField6, GroupLayout.PREFERRED_SIZE, 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label27, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label25, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField11, GroupLayout.PREFERRED_SIZE, 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label28, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addGap(1)\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label26, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField10, GroupLayout.PREFERRED_SIZE, 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED).addComponent(label32,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))))\n\t\t\t\t\t\t.addComponent(label30, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t.addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)));\n\t\tlayout.setVerticalGroup(\n\t\t\t\tlayout.createParallelGroup(Alignment.LEADING).addGroup(layout.createSequentialGroup().addContainerGap()\n\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.TRAILING)\n\t\t\t\t\t\t\t\t.addComponent(label1, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t.addComponent(label2, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t.addGap(1)\n\t\t\t\t\t\t.addComponent(label3, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t.addComponent(label4, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t.addComponent(label5, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t.addComponent(label6, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t.addComponent(label7, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t.createParallelGroup(\n\t\t\t\t\t\t\t\t\t\tAlignment.TRAILING)\n\t\t\t\t\t\t\t\t.addGroup(\n\t\t\t\t\t\t\t\t\t\tlayout.createSequentialGroup().addGroup(layout.createParallelGroup(\n\t\t\t\t\t\t\t\t\t\t\t\tAlignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createSequentialGroup().addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(Alignment.TRAILING).addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(Alignment.LEADING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(Alignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\ttextField2, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(3)))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(19)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.LEADING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label14,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup().addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(Alignment.LEADING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(Alignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(1))))\n\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label20, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.LEADING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label19, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField3, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE)))\n\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.LEADING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup().addGap(78)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label27, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup().addGap(76)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField11, GroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup().addGap(75)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label32,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addPreferredGap(ComponentPlacement.RELATED, 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tShort.MAX_VALUE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(Alignment.TRAILING, false)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAlignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label15,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label21,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(27))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAlignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAlignment.LEADING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label22,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlayout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(3)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tlabel23,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(29)))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(Alignment.LEADING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField12,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout.createSequentialGroup()\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGroup(layout\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.createParallelGroup(\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAlignment.TRAILING)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(label24,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addComponent(textField6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE))\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t.addGap(1))))))\n\t\t\t\t\t\t\t\t.addGroup(layout.createParallelGroup(Alignment.LEADING)\n\t\t\t\t\t\t\t\t\t\t.addComponent(label25, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t.addComponent(label28, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t\t\t\t\t.addComponent(label26, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)))\n\t\t\t\t\t\t.addGap(30)\n\t\t\t\t\t\t.addComponent(label31, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addGap(25)\n\t\t\t\t\t\t.addComponent(label30, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,\n\t\t\t\t\t\t\t\tGroupLayout.PREFERRED_SIZE)\n\t\t\t\t\t\t.addGap(26).addComponent(jButton1).addPreferredGap(ComponentPlacement.RELATED)\n\t\t\t\t\t\t.addComponent(getDoneButton()).addContainerGap(23, Short.MAX_VALUE)));\n\t\tthis.setLayout(layout);\n\n\t\tlabel16.getAccessibleContext().setAccessibleName(\"System.out.print( ( (\");\n\t\tlabel17.getAccessibleContext().setAccessibleName(\"\");\n\t\tlabel18.getAccessibleContext().setAccessibleName(\" +\");\n\t}", "public Pregunta23() {\n initComponents();\n }", "public FormMenuUser() {\n super(\"Form Menu User\");\n initComponents();\n }", "public AvtekOkno() {\n initComponents();\n }", "public busdet() {\n initComponents();\n }", "public ViewPrescriptionForm() {\n initComponents();\n }", "public Ventaform() {\n initComponents();\n }", "public Kuis2() {\n initComponents();\n }", "public POS1() {\n initComponents();\n }", "public CreateAccount_GUI() {\n initComponents();\n }", "public Carrera() {\n initComponents();\n }", "public EqGUI() {\n initComponents();\n }", "public JFriau() {\n initComponents();\n this.setLocationRelativeTo(null);\n this.setTitle(\"BuNus - Budaya Nusantara\");\n }", "@SuppressWarnings(\"unchecked\")\n // <editor-fold defaultstate=\"collapsed\" desc=\"Generated Code\">//GEN-BEGIN:initComponents\n private void initComponents() {\n\n setBackground(new java.awt.Color(204, 204, 204));\n setMinimumSize(new java.awt.Dimension(1, 1));\n setPreferredSize(new java.awt.Dimension(760, 402));\n\n javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);\n this.setLayout(layout);\n layout.setHorizontalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 750, Short.MAX_VALUE)\n );\n layout.setVerticalGroup(\n layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)\n .addGap(0, 400, Short.MAX_VALUE)\n );\n }", "public nokno() {\n initComponents();\n }", "public dokter() {\n initComponents();\n }", "public ConverterGUI() {\n initComponents();\n }", "public hitungan() {\n initComponents();\n }", "public Modify() {\n initComponents();\n }", "public frmAddIncidencias() {\n initComponents();\n }", "public FP_Calculator_GUI() {\n initComponents();\n \n setVisible(true);\n }" ]
[ "0.7319396", "0.7290941", "0.7290941", "0.7290941", "0.7285927", "0.7248002", "0.72139066", "0.72086275", "0.71958303", "0.718997", "0.7184516", "0.7159095", "0.71481097", "0.709288", "0.70806605", "0.70578784", "0.6986726", "0.6977067", "0.6955257", "0.6954392", "0.6945326", "0.69436216", "0.6935779", "0.69320637", "0.6928225", "0.6924907", "0.69248605", "0.6911609", "0.6911109", "0.6892906", "0.6892066", "0.68918383", "0.6891177", "0.6889087", "0.6883209", "0.6882372", "0.6880651", "0.68782973", "0.6876634", "0.6874696", "0.68711734", "0.6859314", "0.68565166", "0.6855607", "0.68552643", "0.6854565", "0.68534696", "0.68530536", "0.68530536", "0.6843682", "0.6836637", "0.6836613", "0.6829145", "0.68281287", "0.682634", "0.6824281", "0.68238854", "0.681735", "0.6816949", "0.6811127", "0.68091583", "0.6808792", "0.680855", "0.6808137", "0.6802665", "0.67954504", "0.67941535", "0.6793186", "0.6791855", "0.67899567", "0.67891306", "0.678766", "0.67817825", "0.67669976", "0.67660517", "0.6764966", "0.67571455", "0.6755968", "0.6752885", "0.6751322", "0.6742087", "0.6739845", "0.673701", "0.6736383", "0.67338026", "0.6727401", "0.67262983", "0.67209303", "0.67158926", "0.6715857", "0.67147917", "0.67091477", "0.6708007", "0.6704485", "0.6701657", "0.67003953", "0.6699588", "0.6698673", "0.66944015", "0.6690715", "0.6689867" ]
0.0
-1
Created by alex on 6/28/17.
public interface LastItemVisibleCallBack { void loadNextPage(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "@Override\n public void func_104112_b() {\n \n }", "public final void mo51373a() {\n }", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\n\tpublic void sacrifier() {\n\t\t\n\t}", "private void poetries() {\n\n\t}", "private stendhal() {\n\t}", "@Override\n\tprotected void interr() {\n\t}", "private void m50366E() {\n }", "protected boolean func_70814_o() { return true; }", "@Override\r\n\tpublic void tires() {\n\t\t\r\n\t}", "@Override\n\tpublic void nadar() {\n\t\t\n\t}", "public void gored() {\n\t\t\n\t}", "@Override\n\tprotected void getExras() {\n\n\t}", "@Override\r\n\tpublic void anularFact() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void anular() {\n\n\t}", "public void mo38117a() {\n }", "private void kk12() {\n\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "@Override\n\tpublic void init() {\n\t\t\n\t}", "private static void cajas() {\n\t\t\n\t}", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n public int describeContents() { return 0; }", "@Override\r\n\t\tpublic void init() {\n\t\t\t\r\n\t\t}", "@Override\r\n\tpublic void dormir() {\n\t\t\r\n\t}", "@Override\n\tpublic void entrenar() {\n\t\t\n\t}", "@Override\n public void init() {\n\n }", "public void method_4270() {}", "@Override\n\tpublic void jugar() {\n\t\t\n\t}", "public void mo4359a() {\n }", "@Override\n\tpublic void ligar() {\n\t\t\n\t}", "@Override\r\n\tpublic void rozmnozovat() {\n\t}", "@Override\n\tprotected void initialize() {\n\t\t\n\t}", "@Override\n\tprotected void initialize() {\n\t\t\n\t}", "private void init() {\n\n\t}", "@Override\n public void init() {\n }", "public abstract void mo70713b();", "private void strin() {\n\n\t}", "@Override\n public int retroceder() {\n return 0;\n }", "@Override\n\tpublic void gravarBd() {\n\t\t\n\t}", "@Override\n protected void init() {\n }", "@Override\n protected void getExras() {\n }", "@Override\r\n\tpublic void init() {}", "@Override\n\tpublic void init() {\n\n\t}", "@Override\n\tpublic void init() {\n\n\t}", "@Override\n\tpublic void init() {\n\n\t}", "@Override\r\n\tpublic void init() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void init() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void init() {\n\t\t\r\n\t}", "@Override\n\tpublic void one() {\n\t\t\n\t}", "@Override\n public void init() {}", "@Override\n void init() {\n }", "@Override\r\n\tpublic void init() {\n\r\n\t}", "@Override\r\n\tpublic void init() {\n\r\n\t}", "@Override\r\n\tpublic void init() {\n\r\n\t}", "@Override\r\n\tprotected void doF8() {\n\t\t\r\n\t}", "public void mo12628c() {\n }", "private void m50367F() {\n }", "@Override\r\n\tprotected void doF4() {\n\t\t\r\n\t}", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "public void mo55254a() {\n }", "@Override\r\n\tpublic void init()\r\n\t{\n\t}", "@Override\n protected void initialize() {\n }", "@Override\n protected void initialize() {\n }", "@Override\n protected void initialize() {\n }", "@Override\n protected void initialize() {\n }", "@Override\n protected void initialize() {\n }", "@Override\n protected void initialize() {\n }", "@Override\n protected void initialize() {\n\n \n }", "@Override\n public void init() {\n\n }", "@Override\n public void init() {\n\n }", "public void skystonePos4() {\n }", "@Override\n\tpublic void nghe() {\n\n\t}", "@Override\n\tpublic void init() {\n\t}", "@Override\n\tprotected void initialize() {\n\n\t}", "@Override\r\n\tprotected void initialize() {\r\n\t\t\r\n\t\t\r\n\t}", "public void mo21877s() {\n }", "public abstract void mo56925d();", "@Override\n\tpublic void init()\n\t{\n\n\t}", "public void m23075a() {\n }", "@Override\n\tpublic void nefesAl() {\n\n\t}", "@Override public int describeContents() { return 0; }", "@Override\n\tpublic int mettreAJour() {\n\t\treturn 0;\n\t}", "protected void mo6255a() {\n }", "public void mo6081a() {\n }", "@Override\r\n\tprotected void func03() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void doF6() {\n\t\t\r\n\t}", "@Override\n\tpublic void einkaufen() {\n\t}", "@Override\n\t\tpublic void init() {\n\t\t}" ]
[ "0.58393955", "0.57509637", "0.5740117", "0.5663052", "0.5645106", "0.56128323", "0.56128323", "0.5607498", "0.55844724", "0.55805886", "0.5568432", "0.55520546", "0.554023", "0.5516697", "0.5500824", "0.5500786", "0.54808855", "0.54661286", "0.5465733", "0.54598486", "0.5457922", "0.5453632", "0.5448226", "0.5448226", "0.5448226", "0.5448226", "0.5448226", "0.5432353", "0.5426119", "0.54242927", "0.54144937", "0.54144645", "0.53939533", "0.53734374", "0.5362318", "0.5346908", "0.5343666", "0.53415084", "0.5337875", "0.53240395", "0.53240395", "0.53210914", "0.5316249", "0.5308199", "0.53036934", "0.5294705", "0.52913576", "0.5290861", "0.52896065", "0.5284275", "0.52755576", "0.52755576", "0.52755576", "0.5263857", "0.5263857", "0.5263857", "0.5258113", "0.52539784", "0.5251528", "0.5249485", "0.5249485", "0.5249485", "0.5243709", "0.52415067", "0.5240524", "0.52375543", "0.52354133", "0.52354133", "0.52354133", "0.52354133", "0.52354133", "0.52354133", "0.52354133", "0.5227137", "0.52211934", "0.52211934", "0.52211934", "0.52211934", "0.52211934", "0.52211934", "0.52208674", "0.5218638", "0.5218638", "0.5214429", "0.5214111", "0.5213345", "0.5203381", "0.51984084", "0.5197837", "0.5195814", "0.51944137", "0.51926625", "0.5186238", "0.5183321", "0.51752424", "0.51741135", "0.5171177", "0.51558197", "0.5155518", "0.5155203", "0.5147755" ]
0.0
-1
TODO refactoring make one method
private static Connection getConnection() throws SQLException { return DriverManager.getConnection( Config.getProperty(Config.DB_URL), Config.getProperty(Config.DB_LOGIN), Config.getProperty(Config.DB_PASSWORD) ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "@Override\n protected void getExras() {\n }", "@Override\n\tprotected void getExras() {\n\n\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n\tprotected void interr() {\n\t}", "@Override\n\tpublic void sacrifier() {\n\t\t\n\t}", "protected abstract Set method_1559();", "@Override\r\n\t\t\tpublic void func02() {\n\t\t\t\t\r\n\t\t\t}", "private stendhal() {\n\t}", "private void poetries() {\n\n\t}", "private void getStatus() {\n\t\t\n\t}", "@Override\n\tprotected void logic() {\n\n\t}", "protected OpinionFinding() {/* intentionally empty block */}", "private static void cajas() {\n\t\t\n\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\r\n\tpublic void dormir() {\n\t\t\r\n\t}", "protected MetadataUGWD() {/* intentionally empty block */}", "@Override\r\n\tpublic void anularFact() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\n\tprotected void parseResult() {\n\t\t\n\t}", "@Override\r\n\tpublic void tires() {\n\t\t\r\n\t}", "@Override\n public void func_104112_b() {\n \n }", "@Override\n\tpublic void entrenar() {\n\t\t\n\t}", "@Override\r\n\tpublic void rozmnozovat() {\n\t}", "private void strin() {\n\n\t}", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "java.lang.String getResult();", "@Override\n\tpublic void nadar() {\n\t\t\n\t}", "public void method_4270() {}", "private void searchFunction() {\n\t\t\r\n\t}", "public final void mo51373a() {\n }", "@Override\r\n\tprotected void func03() {\n\t\t\r\n\t}", "private void parseData() {\n\t\t\r\n\t}", "protected boolean func_70814_o() { return true; }", "OptimizeResponse() {\n\n\t}", "@Override\r\n\tprotected void doF4() {\n\t\t\r\n\t}", "@Override\r\n\t\t\tpublic void ayuda() {\n\r\n\t\t\t}", "public void smell() {\n\t\t\n\t}", "@Override\r\n \tpublic void process() {\n \t\t\r\n \t}", "@Override\n public void function()\n {\n }", "@Override\n public void function()\n {\n }", "@Override\n\tpublic void apply() {\n\t\t\n\t}", "@Override\n\tprotected void getData() {\n\t\t\n\t}", "private static void iterator() {\n\t\t\r\n\t}", "@Override\n public void memoria() {\n \n }", "@Override\r\n protected void parseDocuments()\r\n {\n\r\n }", "Operations operations();", "@Override\n\tpublic void one() {\n\t\t\n\t}", "public void identify() {\n\n\t}", "@Override\n\tpublic void gravarBd() {\n\t\t\n\t}", "@Override\n public int describeContents() { return 0; }", "public void mo38117a() {\n }", "private void kk12() {\n\n\t}", "@Override\r\n\tprotected void doF8() {\n\t\t\r\n\t}", "@Override\n protected void prot() {\n }", "@Override\n\tpublic void emprestimo() {\n\n\t}", "protected void mo6255a() {\n }", "protected abstract void retrievedata();", "void unableToListContents();", "@Override\r\n\tpublic void publierEnchere() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void dibujar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void dibujar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void stehReagieren() {\r\n\t\t//\r\n\t}", "@Override\r\n\tprotected void initSelfData() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void initSelfData() {\n\t\t\r\n\t}", "@SuppressWarnings(\"unused\")\n private void generateInfo()\n {\n }", "@Override\n public void inizializza() {\n\n super.inizializza();\n }", "@Override\n\tpublic void jugar() {\n\t\t\n\t}", "public abstract String use();", "private Util() { }", "@Override\r\n\tprotected void prepare()\r\n\t{\r\n\r\n\t}", "public void mo4359a() {\n }", "@Override\r\n\tvoid func04() {\n\t\t\r\n\t}", "public void redibujarAlgoformers() {\n\t\t\n\t}", "abstract protected String getOtherXml();", "@Override\n\tprotected void prepare() {\n\t\t\n\t}", "@Override\n\t\tpublic void method() {\n\t\t\t\n\t\t}", "@Override\n\tprotected void update() {\n\t\t\n\t}", "@Override\n protected void execute() {\n \n }", "public abstract void mo70713b();", "@Override\r\n\t\t\tprotected void saveContext() {\n\t\t\t\t\r\n\t\t\t}", "@Override\r\n\t\tpublic void init() {\n\t\t\t\r\n\t\t}", "@Override\r\n\tprotected void doF6() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void compute() {\n\t\t\r\n\t}", "@Override\r\n\tprotected void intializeSpecific() {\n\r\n\t}", "private void verificaData() {\n\t\t\n\t}", "public void gored() {\n\t\t\n\t}", "@Override\n\tpublic void accept(Visitor visitor) {\n\t\t\n\t}", "@Override\n\t\tpublic void rest() {\n\t\t\t\n\t\t}", "@Override\n protected void init() {\n }", "@Override\n public void apply() {\n }", "@Override\n public void preprocess() {\n }", "@Override\n public Object preProcess() {\n return null;\n }", "private void remplirFabricantData() {\n\t}", "@Override\n public int retroceder() {\n return 0;\n }", "@Override\n\tpublic void nefesAl() {\n\n\t}", "public contrustor(){\r\n\t}", "@Override\n protected void processSelect() {\n \n }" ]
[ "0.5305232", "0.5263804", "0.5232131", "0.50944465", "0.5064659", "0.5053276", "0.49939382", "0.49935353", "0.4987943", "0.49833336", "0.49748898", "0.49738732", "0.49324876", "0.4931426", "0.49284777", "0.4927767", "0.49274316", "0.49082384", "0.49029285", "0.49026316", "0.4887911", "0.4887911", "0.4882748", "0.48723847", "0.48609188", "0.48469907", "0.48420972", "0.48241398", "0.4723339", "0.47228876", "0.47214627", "0.47086686", "0.47041428", "0.47034854", "0.46988127", "0.469496", "0.46883988", "0.4679349", "0.46685824", "0.46639413", "0.4661333", "0.46491566", "0.4646277", "0.4646277", "0.463826", "0.46356717", "0.46195328", "0.46134597", "0.461043", "0.46098733", "0.46086916", "0.46036756", "0.45957482", "0.4592187", "0.4583563", "0.45813137", "0.45785272", "0.4575948", "0.45727348", "0.4566525", "0.456636", "0.45538595", "0.4540835", "0.4540778", "0.4540778", "0.45403248", "0.45385253", "0.45385253", "0.4534872", "0.45277184", "0.45270872", "0.45202637", "0.4517609", "0.4515161", "0.4513993", "0.45119277", "0.45040825", "0.45034727", "0.45020896", "0.44934428", "0.44906837", "0.44898358", "0.448571", "0.44847187", "0.44808516", "0.4480491", "0.44755465", "0.44751412", "0.44744995", "0.44715172", "0.44581187", "0.44569814", "0.44558072", "0.44528452", "0.4450806", "0.44490713", "0.4447153", "0.44362763", "0.44290295", "0.44273484", "0.44255534" ]
0.0
-1
Declare a queue on the open channel.
public void declareQueue(String name, boolean durable, boolean exclusive, boolean autoDelete, Map<String, Object> arguments) { try { mChannel.queueDeclare(name, durable, exclusive, autoDelete, arguments); } catch (IOException e) { e.printStackTrace(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void declareQueue() {\n try {\n mChannel.queueDeclare();\n } catch (IOException e) {\n e.printStackTrace();\n }\n \n }", "public MessageSelectingQueueChannel(BlockingQueue<Message<?>> queue) {\n super(queue);\n \n this.queue = queue;\n }", "public Queue() {}", "public MyQueue() {\n \n }", "public MyQueue() {\n\n }", "public MyQueue() {\n stack = new Stack<>();\n }", "public MyQueue() {\n\n }", "public MyQueue() {\n\n }", "Queue getQueue() throws NamingException;", "public Queue getQueue() {\n return new Queue();\n }", "public MyQueue() {\n storeStack = new Stack<>();\n }", "myQueue(){\n }", "public DVDQueue() { \n\t\tqueue = new LinkedList<DVDPackage>(); \n\t}", "static WeakOrderQueue allocate(Recycler.Stack<?> stack, Thread thread)\r\n/* 248: */ {\r\n/* 249:277 */ return reserveSpace(stack.availableSharedCapacity, Recycler.LINK_CAPACITY) ? \r\n/* 250:278 */ newQueue(stack, thread) : null;\r\n/* 251: */ }", "private Queue(){\r\n\t\tgenerateQueue();\r\n\t}", "public Queue()\r\n\t{\r\n\t\tthis(capacity);\r\n\t}", "public static <T> FCQueue<T> createFCQueue() {\n \t\treturn new FCQueue<T>();\n \t}", "public Queue()\n\t{\n\t\tsuper();\n\t}", "public Channel openChannel(Connection connection, String exchangeName, String queueName, String routingKey) {\n try {\n Channel channel = connection.createChannel();\n exchangeDeclare(channel, exchangeName);\n\n if (queueName == null) {\n queueName = channel.queueDeclare().getQueue();\n } else {\n queueDeclare(channel, queueName);\n }\n\n channel.queueBind(queueName, exchangeName, routingKey);\n return channel;\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }", "public void queueUsage() {\n\t\t//use LinkedList as a queue\n\t\tQueue<String> q = new LinkedList<String>();\n\t\tq.add(\"1\");\n\t\tq.add(\"2\");\n\t\tq.add(\"3\");\n\t\tq.add(\"10\");\n\t\tq.add(\"11\");\n\t\tint[] a;\n\n\t\tLinkedBlockingQueue<String> bq = new LinkedBlockingQueue<String>();\n\t\t\n\t\t//ArrayBlockingQueue needs to set the size when created.\n\t\tArrayBlockingQueue<String> aq = new ArrayBlockingQueue<String>(100);\n\t\t\n\t\tPriorityBlockingQueue<String> pq = new PriorityBlockingQueue<String>();\n\t\t\n//\t\tDelayQueue<String> dq = new DelayQueue<String>(); \n\t\t\n\t}", "public MyQueue() {\n queue = new PriorityQueue<>();\n }", "myQueue(int size){\n }", "public LQT_Message_Queue() {\n\ta_list = new LinkedList<LQT_Message>();\n }", "public InMemoryQueueService(){\n this.ringBufferQueue = new QueueMessage[10000];\n }", "public void setQueue ( Queue queue )\r\n {\r\n setDestination ( queue );\r\n }", "public MyQueue() {\n push=new Stack<>();\n pull=new Stack<>();\n }", "public StackWithOneQueue() {\n this.queue = new LinkedList<>();\n }", "QueueDto createQueue(String queueName) throws IOException, MlmqException;", "@Bean(name = \"myqueue\")\n public Queue myQueue(AmqpAdmin admin) {\n String id = UUID.randomUUID().toString();\n id = env.getProperty(\"rabbitmq.queue.prefix\", \"\") + id;\n Map<String, Object> args = new HashMap<>();\n args.put(\"x-max-length\", 10);\n\n return new Queue(id, false, true, true, args);\n }", "@Override\n\t\t\tpublic Optional<IAMQPQueue> queue() {\n\t\t\t\treturn null;\n\t\t\t}", "@Override\n\t\t\tpublic Optional<IAMQPQueue> queue() {\n\t\t\t\treturn null;\n\t\t\t}", "public SQueue(){\n\n\t}", "public Queue(){ }", "public FixedQueue(int size) {\r\n q = new char[size]; // allocate memory for queue\r\n putloc = getlock = 0;\r\n }", "public CincamimisQueue()\r\n {\r\n measurementQueue=new ArrayBlockingQueue(10,true);\r\n }", "@Bean\n public Queue clientQueue(AmqpAdmin amqpAdmin) {\n Queue queue = new Queue(SERVICE_REGISTRY_CLIENT_QUEUE_NAME, true, false, true);\n amqpAdmin.declareQueue(queue);\n return queue;\n }", "public MyQueue() {\n pushStack = new Stack<>();\n popStack = new Stack<>();\n }", "public void setRequestQueue(BlockingQueue q)\n {\n queue = q;\n }", "public MyQueue() {\n stack = new LinkedList<Integer>();\n cache = new LinkedList<Integer>();\n }", "public void onQueue();", "public interface Queue {\r\n\r\n\t/**\r\n\t * This method will return the first activity from the queue.\r\n\t * \r\n\t * @return\r\n\t */\r\n\tpublic Activity poll();\r\n\r\n\t/**\r\n\t * This method will push the activity to the queue.\r\n\t * \r\n\t * @param activity\r\n\t */\r\n\tpublic void push(Object activity);\r\n\r\n\t/**\r\n\t * This method will tell that the queue is closed or not.\r\n\t * \r\n\t * @return\r\n\t */\r\n\tpublic boolean isQueueClosed();\r\n\r\n\t/**\r\n\t * This method will on the queue to available.\r\n\t */\r\n\tpublic void onQueue();\r\n\r\n\t/**\r\n\t * this method will off the queue so not available.\r\n\t */\r\n\tpublic void closeQueue();\r\n\r\n\t/**\r\n\t * Returns true if the queue is empty.\r\n\t * \r\n\t * @return\r\n\t */\r\n\tpublic boolean isEmpty();\r\n\r\n}", "public QueueExplorator() {\n\t\tqueue = new LinkedQueue<Square>();\t\n\t}", "static WeakOrderQueue newQueue(Recycler.Stack<?> stack, Thread thread)\r\n/* 233: */ {\r\n/* 234:260 */ WeakOrderQueue queue = new WeakOrderQueue(stack, thread);\r\n/* 235: */ \r\n/* 236: */ \r\n/* 237:263 */ stack.setHead(queue);\r\n/* 238:264 */ return queue;\r\n/* 239: */ }", "String addReceiveQueue();", "public MyStack() {\n queue = new LinkedList<>();\n }", "public MyQueue() {\n front = null;\n rear = null;\n size = 0;\n }", "public AliasInQueue() {\n\t\tsuper();\n\t}", "public MyQueue() {\n rearStack = new Stack();\n frontStack = new Stack();\n }", "public MyStack() {\n queue = new LinkedList<>();\n }", "public void enqueue(Message msg){\n\t\tqueue.add(msg);\n\t}", "@Override\n public void queue(String queueName, String owner, boolean exclusive, FieldTable arguments) {\n\n synchronized (this) {\n try {\n AMQShortString queueNameShortString = new AMQShortString(queueName);\n\n AMQQueue q = _virtualHost.getQueueRegistry().getQueue(queueNameShortString);\n\n if (q == null) {\n //if a new durable queue is added we can know it here\n q = AMQQueueFactory.createAMQQueueImpl(queueNameShortString,\n true,\n owner == null ? null : new AMQShortString(owner),\n false, exclusive,\n _virtualHost, arguments);\n\n _virtualHost.getQueueRegistry().registerQueue(q);\n\n if(_logger.isDebugEnabled()) {\n _logger.debug(\"Queue sync - Added Queue: \" + queueName\n + \", Owner: \" + owner + \", IsExclusive: \" + exclusive + \", Arguments: \" + arguments);\n }\n }\n } catch (AMQException e) {\n throw new RuntimeException(e);\n }\n }\n }", "public Channel(String name) {\n this.name = name;\n q = new ArrayBlockingQueue(1);\n senderMonitor = new Object();\n\n }", "public ListQueue() {\n \n }", "public void newQueue(){\r\n\t\tgenerateQueue();\r\n\t\trefreshLeft = true;\r\n\t}", "public MyQueue1() {\n storeStack = new Stack<>();\n }", "private void initRabbitMQ() throws IOException {\n\t\tConnectionFactory factory = new ConnectionFactory();\n\t\tfactory.setHost(\"localhost\");\n\t\tconnection = factory.newConnection();\n\t\tchannel = connection.createChannel();\n\t\t\n\t\tchannel.exchangeDeclare(AbstractProducer.EXCHANGE_NAME, AbstractProducer.EXCHANGE_TYPE);\n\t\tString queueName = channel.queueDeclare(AbstractProducer.QUEUE_NAME, true, false, false, null).getQueue();\n\t\t\n\t\tchannel.queueBind(queueName, AbstractProducer.EXCHANGE_NAME, \"\");\n\t\t\n\t\tqueueingConsumer = new QueueingConsumer(channel);\n\t\tchannel.basicConsume(queueName, MSG_ACK, queueingConsumer);\n\t}", "public Queue()\n\t{\n\t\thead = null;\n\t}", "public CircularArrayQueue() {\n\t\tthis(QUEUESIZE);\t// constructs queue with default queue size\n\t}", "public MessageSelectingQueueChannel(int capacity) {\n this(new LinkedBlockingQueue<Message<?>>(capacity));\n \n Assert.isTrue(capacity > 0, \"The capacity must be a positive integer. \" +\n \"For a zero-capacity alternative, consider using a 'RendezvousChannel'.\");\n }", "private void workOnQueue() {\n }", "public void queueMessage(Message message);", "public interface IQueue {\n public void clear();\n public boolean isEmpty();\n public int length();\n public Object peek();\n public void offer(Object x) throws Exception;\n public Object poll();\n}", "public SimpleQueue() {\n initQueue(DEFAULT_SIZE);\n WRITE_PTR = 0;\n READ_PTR = 0;\n LAST_READ_TIME = now();\n LAST_WRITE_TIME = now();\n }", "Queue3(int size){\n\t\tq = new char[size];\n\t\tputloc = getloc = 0;\n\t}", "public static Queue newQueue(int n){\n Queue q = new Queue(); //New object \n String array[] = new String[n]; //Create a new array of specified size \n q.names = array; //Make a new array onject \n q.queuesize = 0; //Set the initial size to 0 \n return q; //Return the whole queue out\n }", "public FreebaseProducerImpl()\n {\n this.queue = new ArrayBlockingQueue<>(DEFAULT_QUEUE_CAPACITY);\n this.file = null;\n }", "public LocalSubscription createQueueToListentoTopic(){\n\t\treturn new AMQPLocalSubscription(amqQueue, \n \t\tamqpSubscription, subscriptionID, targetQueue, false, isExclusive, true, MessagingEngine.getMyNodeQueueName(),amqQueue.getName(),\n amqQueue.getOwner().toString(), AMQPUtils.DIRECT_EXCHANGE_NAME, DirectExchange.TYPE.toString(), Short.parseShort(\"0\"),true);\n\t}", "public interface Queue {\n\tpublic Set getGatheredElements();\n\tpublic Set getProcessedElements();\n\tpublic int getQueueSize(int level);\n\tpublic int getProcessedSize();\n\tpublic int getGatheredSize();\n\tpublic void setMaxElements(int elements);\n\tpublic Object pop(int level);\n\tpublic boolean push(Object task, int level);\n\tpublic void clear();\n}", "public EventQueue() {\n\t\tqueue = new LinkedList<Event>();\n\t}", "@Override\n\tpublic void addToQueue() {\n\t}", "public MyQueue() {\n left = new Stack<>();\n right = new Stack<>();\n }", "public QueueAdapter() {\n list = new ArrayList<>();\n }", "private void createQueue(RoutingContext routingContext) {\n LOGGER.debug(\"Info: createQueue method started;\");\n JsonObject requestJson = routingContext.getBodyAsJson();\n HttpServerRequest request = routingContext.request();\n HttpServerResponse response = routingContext.response();\n String instanceID = request.getHeader(HEADER_HOST);\n JsonObject authenticationInfo = new JsonObject();\n authenticationInfo.put(API_ENDPOINT, \"/management/queue\");\n requestJson.put(JSON_INSTANCEID, instanceID);\n if (request.headers().contains(HEADER_TOKEN)) {\n authenticationInfo.put(HEADER_TOKEN, request.getHeader(HEADER_TOKEN));\n authenticator.tokenInterospect(requestJson.copy(), authenticationInfo, authHandler -> {\n LOGGER.debug(\"Info: Authenticating response ;\".concat(authHandler.result().toString()));\n if (authHandler.succeeded()) {\n Future<Boolean> validNameResult =\n isValidName(requestJson.copy().getString(JSON_QUEUE_NAME));\n validNameResult.onComplete(validNameHandler -> {\n if (validNameHandler.succeeded()) {\n Future<JsonObject> brokerResult = managementApi.createQueue(requestJson, databroker);\n brokerResult.onComplete(brokerResultHandler -> {\n if (brokerResultHandler.succeeded()) {\n LOGGER.info(\"Success: Creating Queue\");\n handleSuccessResponse(response, ResponseType.Created.getCode(),\n brokerResultHandler.result().toString());\n } else if (brokerResultHandler.failed()) {\n LOGGER.error(\"Fail: Bad request\" + brokerResultHandler.cause().getMessage());\n processBackendResponse(response, brokerResultHandler.cause().getMessage());\n }\n });\n } else {\n LOGGER.error(\"Fail: Bad request\");\n handleResponse(response, ResponseType.BadRequestData, MSG_INVALID_EXCHANGE_NAME);\n }\n\n });\n } else if (authHandler.failed()) {\n LOGGER.error(\"Fail: Unauthorized;\" + authHandler.cause().getMessage());\n handleResponse(response, ResponseType.AuthenticationFailure);\n }\n });\n } else {\n LOGGER.error(\"Fail: Unauthorized\");\n handleResponse(response, ResponseType.AuthenticationFailure);\n }\n }", "public MyStack() {\n queue = new ArrayDeque<>();\n }", "@Deprecated\n Queue createQueue(SimpleString address,\n SimpleString name,\n SimpleString filterString,\n boolean temporary,\n boolean durable) throws Exception;", "MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException;", "public void enqueue ()\n {\n count++;\n questionList.add(newQuestion);\n //System.out.println(\"Question #\"+ totNumQ + \" is added to the queue.\");\n }", "public PQueue() {\n this(0,null);\n }", "public MyQueue2() {\n storeStack = new Stack<>();\n }", "public interface QueueServiceProvider {\n /**\n * Returns the name of the Queue implementation.\n * @return Name of the queue implementation.\n */\n String name();\n\n /**\n * Places an object on the end of the queue.\n * @param object Object to place on the queue.\n */\n void enqueue(String object);\n\n /**\n * Retrieves an object from the front of the queue.\n * @return Object from the queue.\n */\n String dequeue();\n}", "public Queue() {\n\t\tfirst = null;\n\t\tlast = null;\n\t\tN = 0;\n\t}", "public MyQueue232() {\n stackIn = new Stack<Integer>();\n stackOut = new Stack<Integer>();\n isIn = true;\n }", "@NotNull\n public static <T> Queue<T> queue() {\n try {\n return new ArrayDeque<T>();\n } catch (NoClassDefFoundError nce) {\n return new LinkedList<T>();\n }\n }", "public void createFCFSQueue(String name) {\n queues.putIfAbsent(name, new FCFSQueue(name));\n }", "public Queue() {\n\t\tthis.front = null;\n\t\tthis.end = null;\n\t\tthis.current = null;\n\t}", "public static <T> ConcurrentLinkedQueue<T> createConcurrentLinkedQueue() {\n \t\treturn new ConcurrentLinkedQueue<T>();\n \t}", "public MyQueue() {\n stk1 = new Stack<>();\n stk2 = new Stack<>();\n }", "String nameOfListenQueue();", "public void closeQueue();", "public interface QueueManager {\n List<Message> messages = null;\n\n int insertQueue(String queueId, Message message);\n\n List<Message> getQueue(String queueId, int num);\n}", "public MyStack() {\n this.queue=new LinkedList<Integer>();\n }", "Queue() {\n head = null;\n tail = null;\n }", "public RandomizedQueue() {\r\n\t\tqueue = (Item[]) new Object[1];\r\n\t}", "public void toQueueMode() {\n\t\t// TODO Write me!\n\t\t\n\t}", "public static Queue getQueue(){\r\n\t\treturn queueInstance;\r\n\t}", "public RandomizedQueue() { }", "public synchronized void enqueue(Object msg) {\n\t\tqueue.add(msg);\n\n\t\t// if any threads wait on empty queue then wake them up\n\t\tnotifyAll();\n\t}", "public WaitablePQueue() {\n\t\tthis(DEFAULT_INITIAL_CAPACITY, null);\n\t}", "@DISPID(112)\r\n\t// = 0x70. The runtime will prefer the VTID if present\r\n\t@VTID(107)\r\n\tjava.lang.String queue();", "public BlockingQueue(int maxSize) {\r\n\t\tthis.maxSize = maxSize;\r\n\t\tqueue = new LinkedList<T>();\r\n\t}" ]
[ "0.8584362", "0.6777549", "0.6641583", "0.6508235", "0.6435349", "0.6368068", "0.63414687", "0.63414687", "0.63192326", "0.63065696", "0.62815887", "0.6271118", "0.6259339", "0.6214219", "0.62112886", "0.62037474", "0.6202255", "0.61674434", "0.616687", "0.616563", "0.6160944", "0.6157466", "0.61463666", "0.61453205", "0.6138157", "0.612126", "0.6099848", "0.60536206", "0.60313743", "0.6027757", "0.6027757", "0.6025791", "0.60244405", "0.60060316", "0.59880215", "0.5980623", "0.5967135", "0.5942664", "0.594192", "0.5914378", "0.59038967", "0.5896863", "0.5887332", "0.5884061", "0.58763325", "0.58746725", "0.5872493", "0.58682036", "0.5845526", "0.58400667", "0.5832277", "0.58245635", "0.582414", "0.58228797", "0.5806861", "0.5805677", "0.5795759", "0.5783249", "0.5764407", "0.57635605", "0.5755026", "0.5754034", "0.57245", "0.57150847", "0.57080156", "0.56993026", "0.56990445", "0.56894225", "0.56807816", "0.5678061", "0.56758595", "0.5672885", "0.5664847", "0.5663252", "0.5647873", "0.56460905", "0.5640148", "0.563097", "0.56302583", "0.5622581", "0.5621714", "0.5619801", "0.5615759", "0.5606393", "0.56005234", "0.55914533", "0.55912536", "0.5586951", "0.55848086", "0.5584391", "0.5560288", "0.5558654", "0.5556798", "0.5555938", "0.55552864", "0.5553435", "0.5548554", "0.55378926", "0.5535332", "0.55249" ]
0.6179776
17
Declare a servernamed, nondurable, exclusive, autodelete queue on the open channel.
public void declareQueue() { try { mChannel.queueDeclare(); } catch (IOException e) { e.printStackTrace(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void declareQueue(String name, boolean durable, boolean exclusive, boolean autoDelete, Map<String, Object> arguments) {\n try {\n mChannel.queueDeclare(name, durable, exclusive, autoDelete, arguments);\n } catch (IOException e) {\n e.printStackTrace();\n }\n }", "public LocalSubscription createQueueToListentoTopic(){\n\t\treturn new AMQPLocalSubscription(amqQueue, \n \t\tamqpSubscription, subscriptionID, targetQueue, false, isExclusive, true, MessagingEngine.getMyNodeQueueName(),amqQueue.getName(),\n amqQueue.getOwner().toString(), AMQPUtils.DIRECT_EXCHANGE_NAME, DirectExchange.TYPE.toString(), Short.parseShort(\"0\"),true);\n\t}", "Queue getQueue() throws NamingException;", "@Override\n public void queue(String queueName, String owner, boolean exclusive, FieldTable arguments) {\n\n synchronized (this) {\n try {\n AMQShortString queueNameShortString = new AMQShortString(queueName);\n\n AMQQueue q = _virtualHost.getQueueRegistry().getQueue(queueNameShortString);\n\n if (q == null) {\n //if a new durable queue is added we can know it here\n q = AMQQueueFactory.createAMQQueueImpl(queueNameShortString,\n true,\n owner == null ? null : new AMQShortString(owner),\n false, exclusive,\n _virtualHost, arguments);\n\n _virtualHost.getQueueRegistry().registerQueue(q);\n\n if(_logger.isDebugEnabled()) {\n _logger.debug(\"Queue sync - Added Queue: \" + queueName\n + \", Owner: \" + owner + \", IsExclusive: \" + exclusive + \", Arguments: \" + arguments);\n }\n }\n } catch (AMQException e) {\n throw new RuntimeException(e);\n }\n }\n }", "@Deprecated\n Queue createQueue(SimpleString address,\n SimpleString name,\n SimpleString filterString,\n boolean temporary,\n boolean durable) throws Exception;", "abstract ManagedChannel createChannel(List<ServerInfo> servers);", "String nameOfListenQueue();", "private void createQueue(RoutingContext routingContext) {\n LOGGER.debug(\"Info: createQueue method started;\");\n JsonObject requestJson = routingContext.getBodyAsJson();\n HttpServerRequest request = routingContext.request();\n HttpServerResponse response = routingContext.response();\n String instanceID = request.getHeader(HEADER_HOST);\n JsonObject authenticationInfo = new JsonObject();\n authenticationInfo.put(API_ENDPOINT, \"/management/queue\");\n requestJson.put(JSON_INSTANCEID, instanceID);\n if (request.headers().contains(HEADER_TOKEN)) {\n authenticationInfo.put(HEADER_TOKEN, request.getHeader(HEADER_TOKEN));\n authenticator.tokenInterospect(requestJson.copy(), authenticationInfo, authHandler -> {\n LOGGER.debug(\"Info: Authenticating response ;\".concat(authHandler.result().toString()));\n if (authHandler.succeeded()) {\n Future<Boolean> validNameResult =\n isValidName(requestJson.copy().getString(JSON_QUEUE_NAME));\n validNameResult.onComplete(validNameHandler -> {\n if (validNameHandler.succeeded()) {\n Future<JsonObject> brokerResult = managementApi.createQueue(requestJson, databroker);\n brokerResult.onComplete(brokerResultHandler -> {\n if (brokerResultHandler.succeeded()) {\n LOGGER.info(\"Success: Creating Queue\");\n handleSuccessResponse(response, ResponseType.Created.getCode(),\n brokerResultHandler.result().toString());\n } else if (brokerResultHandler.failed()) {\n LOGGER.error(\"Fail: Bad request\" + brokerResultHandler.cause().getMessage());\n processBackendResponse(response, brokerResultHandler.cause().getMessage());\n }\n });\n } else {\n LOGGER.error(\"Fail: Bad request\");\n handleResponse(response, ResponseType.BadRequestData, MSG_INVALID_EXCHANGE_NAME);\n }\n\n });\n } else if (authHandler.failed()) {\n LOGGER.error(\"Fail: Unauthorized;\" + authHandler.cause().getMessage());\n handleResponse(response, ResponseType.AuthenticationFailure);\n }\n });\n } else {\n LOGGER.error(\"Fail: Unauthorized\");\n handleResponse(response, ResponseType.AuthenticationFailure);\n }\n }", "public void testTemporaryUnnamedQueueConsume()\n {\n ObjectProperties temporary = new ObjectProperties();\n temporary.put(ObjectProperties.Property.AUTO_DELETE, Boolean.TRUE);\n \n ObjectProperties normal = new ObjectProperties();\n normal.put(ObjectProperties.Property.AUTO_DELETE, Boolean.FALSE);\n \n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CONSUME, ObjectType.QUEUE, temporary));\n _ruleSet.grant(0, TEST_USER, Permission.ALLOW, Operation.CONSUME, ObjectType.QUEUE, temporary);\n assertEquals(1, _ruleSet.getRuleCount());\n assertEquals(Result.ALLOWED, _ruleSet.check(_testSubject, Operation.CONSUME, ObjectType.QUEUE, temporary));\n \n // defer to global if exists, otherwise default answer - this is handled by the security manager\n assertEquals(Result.DEFER, _ruleSet.check(_testSubject, Operation.CONSUME, ObjectType.QUEUE, normal));\n }", "@Bean(name = \"myqueue\")\n public Queue myQueue(AmqpAdmin admin) {\n String id = UUID.randomUUID().toString();\n id = env.getProperty(\"rabbitmq.queue.prefix\", \"\") + id;\n Map<String, Object> args = new HashMap<>();\n args.put(\"x-max-length\", 10);\n\n return new Queue(id, false, true, true, args);\n }", "@Bean\n public Queue clientQueue(AmqpAdmin amqpAdmin) {\n Queue queue = new Queue(SERVICE_REGISTRY_CLIENT_QUEUE_NAME, true, false, true);\n amqpAdmin.declareQueue(queue);\n return queue;\n }", "public interface QueueServiceProvider {\n /**\n * Returns the name of the Queue implementation.\n * @return Name of the queue implementation.\n */\n String name();\n\n /**\n * Places an object on the end of the queue.\n * @param object Object to place on the queue.\n */\n void enqueue(String object);\n\n /**\n * Retrieves an object from the front of the queue.\n * @return Object from the queue.\n */\n String dequeue();\n}", "String addReceiveQueue();", "public interface ChannelManager {\n int createChannel(String channel, long ttlInSeconds);\n int publishToChannel(String channel, String msg);\n}", "private NamedQueueClient(Context context,String jndiUrl, String name) throws \n MessageServiceException {\n try {\n context = new InitialContext();\n this.jndiUrl = jndiUrl;\n this.name = name;\n } catch (Exception ex) {\n throw new MessageServiceException(\n \"Failed to instanciate the NamedQueueClient : \" + \n ex.getMessage(),ex);\n }\n }", "public Channel openChannel(Connection connection, String exchangeName, String queueName, String routingKey) {\n try {\n Channel channel = connection.createChannel();\n exchangeDeclare(channel, exchangeName);\n\n if (queueName == null) {\n queueName = channel.queueDeclare().getQueue();\n } else {\n queueDeclare(channel, queueName);\n }\n\n channel.queueBind(queueName, exchangeName, routingKey);\n return channel;\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }", "public Channel(String name) {\n this.name = name;\n q = new ArrayBlockingQueue(1);\n senderMonitor = new Object();\n\n }", "@Bean\n Queue queue() {\n Map<String, Object> arguments = new HashMap<>();\n arguments.put(\"x-dead-letter-exchange\", deadExchangeName);\n arguments.put(\"x-dead-letter-routing-key\", deadRoutingKey);\n return new Queue(queueName, true, false, false, arguments);\n }", "public void testFirstTemporarySecondNamedQueueDenied()\n {\n ObjectProperties named = new ObjectProperties(_queueName);\n ObjectProperties namedTemporary = new ObjectProperties(_queueName);\n namedTemporary.put(ObjectProperties.Property.AUTO_DELETE, Boolean.TRUE);\n \n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, named));\n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, namedTemporary));\n\n _ruleSet.grant(1, TEST_USER, Permission.DENY, Operation.CREATE, ObjectType.QUEUE, namedTemporary);\n _ruleSet.grant(2, TEST_USER, Permission.ALLOW, Operation.CREATE, ObjectType.QUEUE, named);\n assertEquals(2, _ruleSet.getRuleCount());\n \n assertEquals(Result.ALLOWED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, named));\n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, namedTemporary));\n }", "public void testFirstNamedSecondTemporaryQueueDenied()\n {\n ObjectProperties named = new ObjectProperties(_queueName);\n ObjectProperties namedTemporary = new ObjectProperties(_queueName);\n namedTemporary.put(ObjectProperties.Property.AUTO_DELETE, Boolean.TRUE);\n \n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, named));\n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, namedTemporary));\n\n _ruleSet.grant(1, TEST_USER, Permission.ALLOW, Operation.CREATE, ObjectType.QUEUE, named);\n _ruleSet.grant(2, TEST_USER, Permission.DENY, Operation.CREATE, ObjectType.QUEUE, namedTemporary);\n assertEquals(2, _ruleSet.getRuleCount());\n \n assertEquals(Result.ALLOWED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, named));\n assertEquals(Result.ALLOWED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, namedTemporary));\n }", "QueueDto createQueue(String queueName) throws IOException, MlmqException;", "public void setQueue ( Queue queue )\r\n {\r\n setDestination ( queue );\r\n }", "@Override\n\t\t\tpublic Optional<IAMQPQueue> queue() {\n\t\t\t\treturn null;\n\t\t\t}", "@Override\n\t\t\tpublic Optional<IAMQPQueue> queue() {\n\t\t\t\treturn null;\n\t\t\t}", "public interface QueueManager {\n List<Message> messages = null;\n\n int insertQueue(String queueId, Message message);\n\n List<Message> getQueue(String queueId, int num);\n}", "public MessageSelectingQueueChannel(BlockingQueue<Message<?>> queue) {\n super(queue);\n \n this.queue = queue;\n }", "public void deploy(MDBDescriptor descriptor) throws NamingException, JMSException {\n MessageConsumer consumer;\n Connection connection;\n \n if ( descriptor.isTopic() ){\n \n TopicConnectionFactory topicConnectionFactory = (TopicConnectionFactory) createJMSObject( \n descriptor.getConnectionFactoryJndiName(), descriptor.isAlreadyBound(), \n new TopicConnectionFactoryImpl()); \n \n Topic topic = (Topic) createJMSObject(descriptor.getDestinationJndiName(), descriptor.isAlreadyBound(),\n new MockTopic(descriptor.getDestinationJndiName())); \n \n TopicConnection topicConnection = topicConnectionFactory.createTopicConnection(this.jmsUsername, this.jmsPassword);\n connection = topicConnection;\n // TODO: implement transactions and acknowledgements\n TopicSession topicSession = topicConnection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);\n consumer = topicSession.createSubscriber(topic);\n \n }\n else {\n\n QueueConnectionFactory queueConnectionFactory = (QueueConnectionFactory) createJMSObject( \n descriptor.getConnectionFactoryJndiName(), descriptor.isAlreadyBound(), \n new QueueConnectionFactoryImpl()); \n \n Queue queue = (Queue) createJMSObject(descriptor.getDestinationJndiName(), descriptor.isAlreadyBound(),\n new MockQueue(descriptor.getDestinationJndiName())); \n \n QueueConnection queueConnection = queueConnectionFactory.createQueueConnection(this.jmsUsername, this.jmsPassword);\n connection = queueConnection;\n QueueSession queueSession = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);\n consumer = queueSession.createReceiver( queue );\n }\n \n // Same routine as for session bean\n MDBHome home = new MDBHome( descriptor );\n MDBHomeIface mdbHome = (MDBHomeIface) home.createProxy();\n \n MessageListener messageListener = mdbHome.create();\n \n consumer.setMessageListener( messageListener );\n connection.start();\n }", "public interface Channels {\n \n public void createChannel();\n\n}", "public void testFirstTemporarySecondDurableThirdNamedQueueDenied()\n {\n ObjectProperties named = new ObjectProperties(_queueName);\n ObjectProperties namedTemporary = new ObjectProperties(_queueName);\n namedTemporary.put(ObjectProperties.Property.AUTO_DELETE, Boolean.TRUE);\n ObjectProperties namedDurable = new ObjectProperties(_queueName);\n namedDurable.put(ObjectProperties.Property.DURABLE, Boolean.TRUE);\n \n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, named));\n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, namedTemporary));\n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, namedDurable));\n\n _ruleSet.grant(1, TEST_USER, Permission.DENY, Operation.CREATE, ObjectType.QUEUE, namedTemporary);\n _ruleSet.grant(2, TEST_USER, Permission.DENY, Operation.CREATE, ObjectType.QUEUE, namedDurable);\n _ruleSet.grant(3, TEST_USER, Permission.ALLOW, Operation.CREATE, ObjectType.QUEUE, named);\n assertEquals(3, _ruleSet.getRuleCount());\n \n assertEquals(Result.ALLOWED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, named));\n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, namedTemporary));\n assertEquals(Result.DENIED, _ruleSet.check(_testSubject, Operation.CREATE, ObjectType.QUEUE, namedDurable));\n }", "public Queue() {}", "public Server(){\n this.tasks = new LinkedBlockingQueue<Task>();\n this.waitingPeriod = new AtomicInteger();\n }", "public String queueName();", "private void initRabbitMQ() throws IOException {\n\t\tConnectionFactory factory = new ConnectionFactory();\n\t\tfactory.setHost(\"localhost\");\n\t\tconnection = factory.newConnection();\n\t\tchannel = connection.createChannel();\n\t\t\n\t\tchannel.exchangeDeclare(AbstractProducer.EXCHANGE_NAME, AbstractProducer.EXCHANGE_TYPE);\n\t\tString queueName = channel.queueDeclare(AbstractProducer.QUEUE_NAME, true, false, false, null).getQueue();\n\t\t\n\t\tchannel.queueBind(queueName, AbstractProducer.EXCHANGE_NAME, \"\");\n\t\t\n\t\tqueueingConsumer = new QueueingConsumer(channel);\n\t\tchannel.basicConsume(queueName, MSG_ACK, queueingConsumer);\n\t}", "public static Queue newQueue(int n){\n Queue q = new Queue(); //New object \n String array[] = new String[n]; //Create a new array of specified size \n q.names = array; //Make a new array onject \n q.queuesize = 0; //Set the initial size to 0 \n return q; //Return the whole queue out\n }", "public interface AmqpServer extends Entity {\n \n /* AMQP protocol version strings. */\n\n String AMQP_0_8 = \"0-8\";\n String AMQP_0_9 = \"0-9\";\n String AMQP_0_9_1 = \"0-9-1\";\n String AMQP_0_10 = \"0-10\";\n String AMQP_1_0 = \"1-0\";\n\n PortAttributeSensorAndConfigKey AMQP_PORT = Attributes.AMQP_PORT;\n\n BasicAttributeSensorAndConfigKey<String> VIRTUAL_HOST_NAME = new BasicAttributeSensorAndConfigKey<String>(\n String.class, \"amqp.virtualHost\", \"AMQP virtual host name\", \"localhost\");\n\n BasicAttributeSensorAndConfigKey<String> AMQP_VERSION = new BasicAttributeSensorAndConfigKey<String>(\n String.class, \"amqp.version\", \"AMQP protocol version\");\n\n String getVirtualHost();\n\n String getAmqpVersion();\n\n Integer getAmqpPort();\n}", "private Binding createBinding(Queue queue, DirectExchange directExchange){\n return BindingBuilder\n .bind(queue)\n .to(directExchange)\n .with(queue.getName());\n }", "public void push(final String queueName, final String item);", "String getQueueManagerHost();", "public void addNamedQueue(String name) {\n\t\tnamedQueues.putIfAbsent(name, new LinkedTransferQueue<Packet>());\n\t}", "@Bean(name = \"mybinding\")\n Binding binding(@Qualifier(\"myqueue\") Queue queue, FanoutExchange exchange) {\n LOG.info(\"Binding queue [\" + queue + \"] to exchange [\" + exchange + \"]\");\n return BindingBuilder.bind(queue).to(exchange);\n }", "public interface Queue {\r\n\r\n\t/**\r\n\t * This method will return the first activity from the queue.\r\n\t * \r\n\t * @return\r\n\t */\r\n\tpublic Activity poll();\r\n\r\n\t/**\r\n\t * This method will push the activity to the queue.\r\n\t * \r\n\t * @param activity\r\n\t */\r\n\tpublic void push(Object activity);\r\n\r\n\t/**\r\n\t * This method will tell that the queue is closed or not.\r\n\t * \r\n\t * @return\r\n\t */\r\n\tpublic boolean isQueueClosed();\r\n\r\n\t/**\r\n\t * This method will on the queue to available.\r\n\t */\r\n\tpublic void onQueue();\r\n\r\n\t/**\r\n\t * this method will off the queue so not available.\r\n\t */\r\n\tpublic void closeQueue();\r\n\r\n\t/**\r\n\t * Returns true if the queue is empty.\r\n\t * \r\n\t * @return\r\n\t */\r\n\tpublic boolean isEmpty();\r\n\r\n}", "public DVDQueue() { \n\t\tqueue = new LinkedList<DVDPackage>(); \n\t}", "private NamedQueueClient(String name) throws MessageServiceException {\n try {\n this.jndiUrl = QueueManager.JNDI_URL;\n this.name = name;\n } catch (Exception ex) {\n throw new MessageServiceException(\n \"Failed to instanciate the NamedQueueClient : \" + \n ex.getMessage(),ex);\n }\n }", "public void clusterQueueAdded(StorageQueue queue) throws AndesException {\n try {\n //It is not possible to check if queue is bound to\n // MQTT Exchange as binding sync is done later. Thus checking the name\n if(!queue.getName().contains(AndesUtils.MQTT_TOPIC_STORAGE_QUEUE_PREFIX)) {\n queue(queue.getName(), queue.getQueueOwner(), queue.isExclusive(), null);\n }\n } catch (Exception e) {\n log.error(\"could not add cluster queue\", e);\n throw new AndesException(\"could not add cluster queue : \" + queue.toString(), e);\n }\n\n }", "public static NamedQueueClient create(Context context,String jndiUrl, \n String name) throws MessageServiceException {\n return new NamedQueueClient(context,jndiUrl,name);\n }", "public interface IQueue {\n public void clear();\n public boolean isEmpty();\n public int length();\n public Object peek();\n public void offer(Object x) throws Exception;\n public Object poll();\n}", "MessageStore createQueueMessageStore(ActiveMQQueue destination) throws IOException;", "@Bean\n public SimpleMessageListenerContainer containeraaaaa(@Qualifier(\"myqueue\") Queue queue,\n ConnectionFactory connectionFactory) {\n SimpleMessageListenerContainer cont = new SimpleMessageListenerContainer(connectionFactory);\n cont.addQueues(queue);\n return cont;\n }", "@Test(timeout = 4000)\n public void test72() throws Throwable {\n ConnectionFactories connectionFactories0 = new ConnectionFactories();\n FileSystemHandling.setPermissions((EvoSuiteFile) null, false, false, true);\n QueueConnectionFactory queueConnectionFactory0 = new QueueConnectionFactory();\n connectionFactories0.addQueueConnectionFactory(queueConnectionFactory0);\n QueueConnectionFactory[] queueConnectionFactoryArray0 = connectionFactories0.getQueueConnectionFactory();\n assertEquals(1, queueConnectionFactoryArray0.length);\n }", "@Override\n\t\t\tpublic IAMQPPublishAction replyTo(IAMQPQueue queue) {\n\t\t\t\treturn null;\n\t\t\t}", "@Override\n\t\t\tpublic IAMQPPublishAction replyTo(IAMQPQueue queue) {\n\t\t\t\treturn null;\n\t\t\t}", "public AliasInQueue() {\n\t\tsuper();\n\t}", "public MyQueue() {\n \n }", "public interface MinimalStringQueue {\n\t \n\t/** Adds a new String to the end of the queue */ \n\tpublic void add(String str); \n\t \n\t/** Removes and returns the first String (or null if queue is empty) */ \n\tpublic String poll(); \n\t \n\t/** Returns the number of entries in the queue. */ \n\tpublic int size(); \n\t \n\n}", "public MyQueue() {\n\n }", "@Bean\n Queue deadQueue() {\n Map<String, Object> arguments = new HashMap<>();\n arguments.put(\"x-message-ttl\", 10000);\n return new Queue(deadQueueName, true, false, false, arguments);\n }", "private NamedQueue getNamedQueue() throws MessageServiceException {\n try {\n if (namedQueue != null) {\n return namedQueue;\n }\n QueueManager queueManager = null;\n if (context == null) {\n queueManager= (QueueManager)ConnectionManager\n .getInstance().getConnection(QueueManager.class,\n this.jndiUrl);\n } else {\n queueManager= (QueueManager)ConnectionManager\n .getInstance(context).getConnection(QueueManager.class,\n this.jndiUrl);\n }\n return this.namedQueue = queueManager.getNamedQueue(this.name);\n } catch (Exception ex) {\n throw new MessageServiceException(\n \"Failed to retrieve a named queue because : \" + \n ex.getMessage(),ex);\n }\n }", "public InMemoryQueueService(){\n this.ringBufferQueue = new QueueMessage[10000];\n }", "public AmqpMessage()\n {\n this(Proton.message(), null, null);\n setDurable(true);\n }", "public SQueue(){\n\n\t}", "public interface MqConsumer {\n}", "@Override\n protected String getQueueName() {return _queueName;}", "static WeakOrderQueue allocate(Recycler.Stack<?> stack, Thread thread)\r\n/* 248: */ {\r\n/* 249:277 */ return reserveSpace(stack.availableSharedCapacity, Recycler.LINK_CAPACITY) ? \r\n/* 250:278 */ newQueue(stack, thread) : null;\r\n/* 251: */ }", "protected synchronized void initializeQueue(String host, String queueName,\n\t\t\tInteger port) throws InterruptedException {\n\t\tString bind = \"tcp://\" + host + \":\" + port;\n\t\t_log.warn(\"binding to \" + bind + \" with topic=\" + queueName);\n\n\t\tSubscribingThread subscriberThread = new SubscribingThread(bind, queueName);\n\t\t_executorService.execute(subscriberThread);\n\t\t//wait for subscriber to be operational\n\t\twhile(!subscriberThread.isRunning()){\n\t\t\ttry {\n\t\t\t\tThread.sleep(250);\n\t\t\t} catch (InterruptedException e) {\n\t\t\t\tthrow new RuntimeException(\"An interrupted exception was caught in an improper place\", e);\n\t\t\t}\n\t\t}\n\n\t\t_log.warn(\"queue \" + queueName + \" is listening on \" + bind);\n\t\t_initialized = true;\n\n\t}", "public interface IMessageQueue {\n void remove(Message item);\n Message peek();\n Message dequeue();\n Message enqueue(String messageBody);\n}", "public MyQueue() {\n\n }", "public MyQueue() {\n\n }", "public void queueUsage() {\n\t\t//use LinkedList as a queue\n\t\tQueue<String> q = new LinkedList<String>();\n\t\tq.add(\"1\");\n\t\tq.add(\"2\");\n\t\tq.add(\"3\");\n\t\tq.add(\"10\");\n\t\tq.add(\"11\");\n\t\tint[] a;\n\n\t\tLinkedBlockingQueue<String> bq = new LinkedBlockingQueue<String>();\n\t\t\n\t\t//ArrayBlockingQueue needs to set the size when created.\n\t\tArrayBlockingQueue<String> aq = new ArrayBlockingQueue<String>(100);\n\t\t\n\t\tPriorityBlockingQueue<String> pq = new PriorityBlockingQueue<String>();\n\t\t\n//\t\tDelayQueue<String> dq = new DelayQueue<String>(); \n\t\t\n\t}", "@Override\n ManagedChannel createChannel(List<ServerInfo> servers) {\n checkArgument(!servers.isEmpty(), \"No management server provided.\");\n XdsLogger logger = XdsLogger.withPrefix(\"xds-client-channel-factory\");\n ServerInfo serverInfo = servers.get(0);\n String serverUri = serverInfo.getServerUri();\n logger.log(XdsLogLevel.INFO, \"Creating channel to {0}\", serverUri);\n List<ChannelCreds> channelCredsList = serverInfo.getChannelCredentials();\n ManagedChannelBuilder<?> channelBuilder = null;\n // Use the first supported channel credentials configuration.\n // Currently, only \"google_default\" is supported.\n for (ChannelCreds creds : channelCredsList) {\n if (creds.getType().equals(\"google_default\")) {\n logger.log(XdsLogLevel.INFO, \"Using channel credentials: google_default\");\n channelBuilder = GoogleDefaultChannelBuilder.forTarget(serverUri);\n break;\n }\n }\n if (channelBuilder == null) {\n logger.log(XdsLogLevel.INFO, \"Using default channel credentials\");\n channelBuilder = ManagedChannelBuilder.forTarget(serverUri);\n }\n\n return channelBuilder\n .keepAliveTime(5, TimeUnit.MINUTES)\n .build();\n }", "myQueue(){\n }", "public LQT_Message_Queue() {\n\ta_list = new LinkedList<LQT_Message>();\n }", "public synchronized QueueConnection createQueueConnection(String userName,\n String password) throws JMSException {\n QueueConnectionImpl qc = new QueueConnectionImpl(userName == null ? \"anonymous\" : userName, password, createReconnector());\n qc.assignClientId(clientId);\n qc.setSmqpProducerReplyInterval(smqpProducerReplyInterval);\n qc.setSmqpConsumerCacheSize(smqpConsumerCacheSize);\n qc.setJmsDeliveryMode(jmsDeliveryMode);\n qc.setJmsPriority(jmsPriority);\n qc.setJmsTTL(jmsTTL);\n qc.setJmsMessageIdEnabled(jmsMessageIdEnabled);\n qc.setJmsMessageTimestampEnabled(jmsMessageTimestampEnabled);\n qc.setUseThreadContextCL(useThreadContextCL);\n qc.setDuplicateMessageDetection(duplicateMessageDetection);\n qc.setDuplicateBacklogSize(duplicateBacklogSize);\n if (keepaliveInterval > 0)\n qc.startKeepAlive(keepaliveInterval);\n return (qc);\n }", "public MyQueue() {\n storeStack = new Stack<>();\n }", "public AsyncQueueBroker(int capacity, int timeoutDuration)\n {\n super(capacity, timeoutDuration);\n queue = new ArrayBlockingQueue<V>(100);\n }", "public void createChannel() {\r\n\t\tworkChannels.add(new ArrayList<Point>());\r\n\t}", "public MessageSelectingQueueChannel(int capacity) {\n this(new LinkedBlockingQueue<Message<?>>(capacity));\n \n Assert.isTrue(capacity > 0, \"The capacity must be a positive integer. \" +\n \"For a zero-capacity alternative, consider using a 'RendezvousChannel'.\");\n }", "public interface IMqService {\n /*发送消息到队列的方法,其中TerminalStateProtoBuf是proto格式的消息,根据实际情况更改*/\n /*\n void reportTerminalState(String restaurantId,TerminalStateProtoBuf.TerminalState.StateType stateType);\n */\n}", "public interface Server extends Endpoint, Resetable {\n\n /**\n * is bound.\n *\n * @return bound\n */\n boolean isBound();\n\n /**\n * get channels.\n *\n * @return channels\n */\n Collection<Channel> getChannels();\n\n /**\n * get channel.\n *\n * @param remoteAddress\n * @return channel\n */\n Channel getChannel(InetSocketAddress remoteAddress);\n\n}", "public void onQueue();", "public QueueSenderSession ()\r\n {\r\n\r\n\r\n }", "void deleteQueue();", "public InMemoryQueueService(int queueLength) {\n if(queueLength == 0) {\n throw new IllegalArgumentException(\"Queue length must be greater than 0\");\n }\n this.ringBufferQueue = new QueueMessage[queueLength];\n }", "@Ignore(\"Надо переделать!!\")\n @Test\n public void testFull() throws Exception {\n // SYSTEM.DEF.SVRCONN/TCP/vs338(1414)\n // SYSTEM.ADMIN.SVRCONN/TCP/vs338(1414)\n // UCBRU.ADP.BARSGL.V4.ACDENO.FCC.NOTIF\n\n MQQueueConnectionFactory cf = new MQQueueConnectionFactory();\n\n\n // Config\n cf.setHostName(\"vs338\");\n cf.setPort(1414);\n cf.setTransportType(WMQConstants.WMQ_CM_CLIENT);\n cf.setQueueManager(\"QM_MBROKER10_TEST\");\n cf.setChannel(\"SYSTEM.ADMIN.SVRCONN\");\n\n SingleActionJob job =\n SingleActionJobBuilder.create()\n .withClass(MovementCreateTask.class)\n\n// .withProps(\n// \"mq.type = queue\\n\" +\n// \"mq.host = vs338\\n\" +\n// \"mq.port = 1414\\n\" +\n// \"mq.queueManager = QM_MBROKER10_TEST\\n\" +\n// \"mq.channel = SYSTEM.DEF.SVRCONN\\n\" +\n// \"mq.batchSize = 1\\n\" + //todo\n// \"mq.topics = LIRQ!!!!:UCBRU.ADP.BARSGL.V4.ACDENO.FCC.NOTIF:UCBRU.ADP.BARSGL.V4.ACDENO.MDSOPEN.NOTIF\"+\n// \";BALIRQ:UCBRU.ADP.BARSGL.V4.ACDENO.MDSOPEN.NOTIF:UCBRU.ADP.BARSGL.V4.ACDENO.FCC.NOTIF\\n\"+\n// \"mq.user=er22228\\n\" +\n// \"mq.password=Vugluskr6\"\n//\n// )//;MIDAS_UPDATE:UCBRU.ADP.BARSGL.V4.ACDENO.MDSUPD.NOTIF\n\n .build();\n jobService.executeJob(job);\n \n// receiveFromQueue(cf,\"UCBRU.ADP.BARSGL.V4.ACDENO.MDSOPEN.NOTIF\");\n// receiveFromQueue(cf,\"UCBRU.ADP.BARSGL.V4.ACDENO.MDSOPEN.NOTIF\");\n// receiveFromQueue(cf,\"UCBRU.ADP.BARSGL.V4.ACDENO.MDSOPEN.NOTIF\");\n// receiveFromQueue(cf,\"UCBRU.ADP.BARSGL.V4.ACDENO.FCC.NOTIF\");\n// receiveFromQueue(cf,\"UCBRU.ADP.BARSGL.V4.ACDENO.FCC.NOTIF\");\n// receiveFromQueue(cf,\"UCBRU.ADP.BARSGL.V4.ACDENO.FCC.NOTIF\");\n\n }", "public void createFCFSQueue(String name) {\n queues.putIfAbsent(name, new FCFSQueue(name));\n }", "public ShippingQueue() {\r\n\t\tfirst = null;\r\n\t\tcount = 0;\r\n\t}", "java.lang.String getQueueName();", "public void queueMessage(Message message);", "public MyQueue() {\n stack = new Stack<>();\n }", "@RequiresApi(Build.VERSION_CODES.O)\n private void createChannel() {\n NotificationManager\n mNotificationManager =\n (NotificationManager) this\n .getSystemService(NOTIFICATION_SERVICE);\n // The id of the channel.\n String id = CHANNEL_ID;\n // The user-visible name of the channel.\n CharSequence name = \"Media playback\";\n // The user-visible description of the channel.\n String description = \"Media playback controls\";\n int importance = NotificationManager.IMPORTANCE_LOW;\n NotificationChannel mChannel = new NotificationChannel(id, name, importance);\n // Configure the notification channel.\n mChannel.setDescription(description);\n mChannel.setShowBadge(false);\n mChannel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);\n mNotificationManager.createNotificationChannel(mChannel);\n }", "public Queue()\n\t{\n\t\thead = null;\n\t}", "String getBaseQueueName();", "public interface FifoQueue {\n\n /**\n * Push the item to the tail of the queue.\n * @param queueName Target queue.\n * @param item Item to be added\n */\n public void push(final String queueName, final String item);\n\n /**\n * Remove the item from the queue.\n * @param queueName Queue name.\n * @param item Target item.\n * @return <code>true</code> item removed, otherwise <code>false</code>\n */\n public boolean remove(final String queueName, final String item);\n\n /**\n * Get top items.\n * @param queueName Delay queue name.\n * @param end End index.\n * @return Delayed items.\n */\n public Collection<String> pop(final String queueName, final int end);\n}", "public void addServerChannel(ServerSocketChannel serverChannel) {\n addServerChannel(serverChannel, null);\n }", "@Override\n\t\t\tpublic Optional<IAMQPQueue> replyTo() {\n\t\t\t\treturn null;\n\t\t\t}", "@Override\n\t\t\tpublic Optional<IAMQPQueue> replyTo() {\n\t\t\t\treturn null;\n\t\t\t}", "@Override\r\n\tpublic void makeDeliveryFree() {\n\t\t\r\n\t}", "public XAQueueConnection createXAQueueConnection(String userName, String password) throws JMSException {\n XAQueueConnectionImpl qc = new XAQueueConnectionImpl(userName == null ? \"anonymous\" : userName, password, createReconnector());\n qc.assignClientId(clientId);\n qc.setSmqpProducerReplyInterval(smqpProducerReplyInterval);\n qc.setSmqpConsumerCacheSize(smqpConsumerCacheSize);\n qc.setJmsDeliveryMode(jmsDeliveryMode);\n qc.setJmsPriority(jmsPriority);\n qc.setJmsTTL(jmsTTL);\n qc.setJmsMessageIdEnabled(jmsMessageIdEnabled);\n qc.setJmsMessageTimestampEnabled(jmsMessageTimestampEnabled);\n qc.setUseThreadContextCL(useThreadContextCL);\n qc.setDuplicateMessageDetection(duplicateMessageDetection);\n qc.setDuplicateBacklogSize(duplicateBacklogSize);\n if (keepaliveInterval > 0)\n qc.startKeepAlive(keepaliveInterval);\n return (qc);\n }", "public interface ServerCommand {\n\t\n\t/**\n\t * Command wird ausgef&uuml;hrt.\n\t * \n\t * @param m Member, welcher den Command ausgef&uuml;hrt hat.\n\t * @param c TextChannel, in dem der Command ausgef&uuml;hrt wurde.\n\t * @param msg Message, in der der Command steht.\n\t */\n public abstract void performCommand(Member m, TextChannel c, Message msg);\n}", "public interface IQueueShardingService {\n\n void putShard(String queue, Subscription subscription);\n\n Subscription removeShard(String queue, Subscription subscription);\n\n int size(String queue);\n}", "public interface Mailbox {\n void send(@NotNull ActorsHolder holder, @NotNull ActorRef ref, @NotNull ActorTask task);\n}" ]
[ "0.6369837", "0.5819332", "0.5774863", "0.5742705", "0.5705399", "0.5494886", "0.54875106", "0.54613227", "0.5388107", "0.53750306", "0.53228885", "0.5257128", "0.5226659", "0.5194118", "0.5165338", "0.51247025", "0.5122235", "0.51034546", "0.5083961", "0.5057301", "0.5049893", "0.5029047", "0.5007734", "0.5007734", "0.5004505", "0.4995163", "0.4989492", "0.4946723", "0.49438992", "0.4941959", "0.49346656", "0.49234796", "0.4897181", "0.48962918", "0.48913506", "0.48814806", "0.48768657", "0.4875691", "0.48612252", "0.48589042", "0.4854039", "0.4853631", "0.48531085", "0.48439053", "0.48391405", "0.48238298", "0.481883", "0.4805128", "0.4804086", "0.48032513", "0.48032513", "0.47984022", "0.4791698", "0.47820944", "0.47813016", "0.47426903", "0.47416738", "0.4729237", "0.47290635", "0.47057754", "0.47046718", "0.4703693", "0.46968594", "0.46839893", "0.4681398", "0.46637923", "0.46637923", "0.46635938", "0.46448675", "0.46386743", "0.46273294", "0.46271992", "0.46226317", "0.46082878", "0.4592502", "0.4591897", "0.45912352", "0.45853636", "0.45810702", "0.45798436", "0.4575968", "0.45744056", "0.45696357", "0.4569176", "0.45677802", "0.45673695", "0.4563662", "0.4562185", "0.4547209", "0.45438105", "0.45396674", "0.45300603", "0.4525897", "0.45143813", "0.45143813", "0.45070598", "0.45065323", "0.45010823", "0.4501039", "0.45009777" ]
0.71690255
0
Takes the raw bytes from the digest and formats them correct.
private static String getFormattedText(byte[] bytes) { int len = bytes.length; StringBuilder buf = new StringBuilder(len * 2); // 把密文转换成十六进制的字符串形式 for (int j = 0; j < len; j++) { buf.append(HEX_DIGITS[(bytes[j] >> 4) & 0x0f]); buf.append(HEX_DIGITS[bytes[j] & 0x0f]); } return buf.toString().toUpperCase(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getFormattedText(byte[] digest) {\n\t\t\t int len = digest.length;\r\n\t\t\t //System.out.println(len);\r\n\t\t\t \r\n\t\t\t //System.out.println(digest[0]>>4);\r\n\t\t\t \r\n\t\t\t StringBuilder buf = new StringBuilder(len * 2);\r\n\t\t\t // 把密文转换成十六进制的字符串形式\r\n\t\t\t for (int j = 0; j < len; j++) { \r\n\t\t\t\t buf.append(HEX_DIGITS[(digest[j] >> 4) & 0x0f]);\r\n\t\t\t\t buf.append(HEX_DIGITS[digest[j] & 0x0f]);\r\n\t\t\t\t //System.out.println(buf);\r\n\t\t\t }\r\n\t\t\treturn buf.toString();\r\n\t\t}", "private static String pasarAHexadecimal(byte[] digest){\n String hash = \"\";\n for(byte aux : digest) {\n int b = aux & 0xff;\n if (Integer.toHexString(b).length() == 1) hash += \"0\";\n hash += Integer.toHexString(b);\n }\n return hash;\n }", "private static String toHex(byte[] digest) {\n\t\tchar[] result = new char[digest.length * 2];\n\t\tint pos = 0;\n\t\tfor (int i = 0; i < digest.length; i++) {\n\t\t\tresult[pos++] = hexChar((digest[i] & 0xf0) >> 4);\n\t\t\tresult[pos++] = hexChar(digest[i] & 0x0f);\n\t\t}\n\t\treturn new String(result);\n\t}", "private static String getFormattedText(byte[] bytes) {\n\t\tint len = bytes.length;\n\t\tStringBuilder buf = new StringBuilder(len * 2);\n\t\t// 把密文转换成十六进制的字符串形式\n\t\tfor (int j = 0; j < len; j++) {\n\t\t\tbuf.append(HEX_DIGITS[(bytes[j] >> 4) & 0x0f]);\n\t\t\tbuf.append(HEX_DIGITS[bytes[j] & 0x0f]);\n\t\t}\n\t\treturn buf.toString();\n\t}", "private static String getFormattedText(byte[] bytes) {\n\t\tint len = bytes.length;\n\t\tStringBuilder buf = new StringBuilder(len * 2);\n\t\t// 把密文转换成十六进制的字符串形式\n\t\tfor (int j = 0; j < len; j++) {\n\t\t\tbuf.append(HEX_DIGITS[(bytes[j] >> 4) & 0x0f]);\n\t\t\tbuf.append(HEX_DIGITS[bytes[j] & 0x0f]);\n\t\t}\n\t\treturn buf.toString();\n\t}", "byte[] digest();", "private String handleWantDigestHeader(final Binary binary, final String wantDigest)\n throws UnsupportedAlgorithmException {\n final Collection<String> preferredDigests = parseWantDigestHeader(wantDigest);\n if (preferredDigests.isEmpty()) {\n throw new UnsupportedAlgorithmException(\n \"Unsupported digest algorithm provided in 'Want-Digest' header: \" + wantDigest);\n }\n\n final Collection<URI> checksumResults = fixityService.getFixity(binary, preferredDigests);\n return checksumResults.stream().map(uri -> uri.toString().replaceFirst(\"urn:\", \"\")\n .replaceFirst(\":\", \"=\").replaceFirst(\"sha1=\", \"sha=\")).collect(Collectors.joining(\",\"));\n }", "private static String getHash(byte[] dataBuffer, MessageDigest dgst) throws Exception{\n\t\tdgst.update(dataBuffer);\n\t\t\n\t\tbyte[] dgstByte = dgst.digest();\n\n\t\tStringBuffer sb = new StringBuffer();\n\t\tfor(int i=0; i<dgstByte.length; i++){\n\t\t\tsb.append(Integer.toString((dgstByte[i] & 0xff) + 0x100, 16).substring(1));\n\t\t}\n\t\t\n\t\tSystem.out.println(\"dgstByteString HEXString is: \" + sb.toString());\t\t\n\t\treturn sb.toString();\n\t\t\n\t\t/*\n\t\t * Uncomment below lines to return the message digest with base64 encoded string\n\t\t * */\n\t\t\n\t\t// System.out.println(\"dgstByteString B64 of HEX is: \" + Base64.encode(sb.toString().getBytes()));\n\t\t// return Base64.encode(sb.toString().getBytes());\n\t}", "byte[] getDigest();", "protected byte[] binaryToHex(byte[] digest) throws UnsupportedEncodingException {\n StringBuffer digestString = new StringBuffer();\n for (int i = 0; i < digest.length; i++) {\n if ((digest[i] & 0x000000ff) < 0x10) {\n digestString.append(\"0\" + Integer.toHexString(digest[i] & 0x000000ff));\n } else {\n digestString.append(Integer.toHexString(digest[i] & 0x000000ff));\n }\n }\n return digestString.toString().getBytes(encoding);\n }", "public static String formatHexBytes(byte[] raw) {\n StringBuffer buffer;\n final char[] hexDigits = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };\n int i;\n int value;\n buffer = new StringBuffer(raw.length * 2);\n for (i = 0; i < raw.length; i++) {\n value = raw[i];\n buffer.append(hexDigits[(value >> 4) & 0x0F]);\n buffer.append(hexDigits[value & 0x0F]);\n }\n return (buffer.toString());\n }", "public static String hexaToString(byte[] digest ){\n\t StringBuffer hexString = new StringBuffer();\n\t for (int i = 0; i < digest.length; i++) {\n\t if ((0xff & digest[i]) < 0x10) {\n\t hexString.append(\"0\" + Integer.toHexString((0xFF & digest[i])));\n\t } else {\n\t hexString.append(Integer.toHexString(0xFF & digest[i]));\n\t }\n\t } \n\t return hexString.toString(); \n\t }", "public static String checksum(byte[] bytes) {\n MessageDigest messageDigest = null;\n\n try {\n messageDigest = MessageDigest.getInstance(\"SHA1\");\n } catch (final NoSuchAlgorithmException e) {\n e.printStackTrace();\n }\n\n if (messageDigest == null) {\n return null;\n }\n\n messageDigest.update(bytes);\n final byte[] mdbytes = messageDigest.digest();\n\n // convert the byte to hex format\n final StringBuffer sb = new StringBuffer(\"\");\n\n for (int i = 0; i < mdbytes.length; i++) {\n sb.append(Integer.toString((mdbytes[i] & 0xff) + 0x100, 16).substring(1));\n }\n\n return sb.toString();\n }", "private String getDigest(JSONArray json) {\n return json == null || json.toString() == null ? null : DigestUtils.sha256Hex(json.toString());\n }", "private String getDigest(JSONObject json) {\n return json == null || json.toString() == null ? null : DigestUtils.sha256Hex(json.toString());\n }", "private String convertToHex(byte[] raw) {\n StringBuffer sb = new StringBuffer();\n for (int i = 0; i < raw.length; i++) {\n sb.append(Integer.toString((raw[i] & 0xff) + 0x100, 16).substring(1));\n }\n return sb.toString();\n }", "public String digest(String body) throws SatispayException {\n\t\tMessageDigest digest;\n\t\ttry {\n\t\t\tdigest = MessageDigest.getInstance(\"SHA-256\");\n\t\t\tbyte[] encodedhash = digest.digest(\n\t\t\t\t\tbody.getBytes(StandardCharsets.UTF_8));\n\t\t\treturn Base64.getEncoder().encodeToString(encodedhash);\n\t\t} catch (NoSuchAlgorithmException e) {\n\t\t\tthrow new SatispayException(\"Wrong algorithm\", e.getCause());\n\t\t}\n\t}", "private static String getFileChecksum(MessageDigest digest, File file) throws IOException {\n FileInputStream fis = new FileInputStream(file);\n\n //Create byte array to read data in chunks\n byte[] byteArray = new byte[1024];\n int bytesCount = 0;\n\n //Read file data and update in message digest\n while ((bytesCount = fis.read(byteArray)) != -1) {\n digest.update(byteArray, 0, bytesCount);\n }\n\n //close the stream; We don't need it now.\n fis.close();\n\n //Get the hash's bytes\n byte[] bytes = digest.digest();\n\n //This bytes[] has bytes in decimal format;\n //Convert it to hexadecimal format\n StringBuilder sb = new StringBuilder();\n for (int i = 0; i < bytes.length; i++) {\n sb.append(Integer.toString((bytes[i] & 0xff) + 0x100, 16).substring(1));\n }\n\n //return complete hash\n return sb.toString();\n }", "@Override\n public void update(byte b) {\n digest.update(b);\n }", "private static Collection<String> parseWantDigestHeader(final String wantDigest) {\n final Map<String, Double> digestPairs = new HashMap<>();\n try {\n final List<String> algs = Splitter.on(',').omitEmptyStrings().trimResults().splitToList(wantDigest);\n // Parse the optional q value with default 1.0, and 0 ignore. Format could be: SHA-1;qvalue=0.1\n for (final String alg : algs) {\n final String[] tokens = alg.split(\";\", 2);\n final double qValue = tokens.length == 1 || !tokens[1].contains(\"=\") ?\n 1.0 : Double.parseDouble(tokens[1].split(\"=\", 2)[1]);\n digestPairs.put(tokens[0], qValue);\n }\n\n return digestPairs.entrySet().stream().filter(entry -> entry.getValue() > 0)\n .map(Map.Entry::getKey)\n .filter(DigestAlgorithm::isSupportedAlgorithm)\n .collect(Collectors.toSet());\n } catch (final NumberFormatException e) {\n throw new ClientErrorException(\"Invalid 'Want-Digest' header value: \" + wantDigest, SC_BAD_REQUEST, e);\n } catch (final RuntimeException e) {\n if (e instanceof IllegalArgumentException) {\n throw new ClientErrorException(\"Invalid 'Want-Digest' header value: \" + wantDigest + \"\\n\", BAD_REQUEST);\n }\n throw e;\n }\n }", "private static String getFileChecksum(MessageDigest digest, File file) throws IOException\n\t {\n\t FileInputStream fis = new FileInputStream(file);\n\t \n\t //Create byte array to read data in chunks\n\t byte[] byteArray = new byte[1024];\n\t int bytesCount = 0;\n\t \n\t //Read file data and update in message digest\n\t while ((bytesCount = fis.read(byteArray)) != -1) {\n\t digest.update(byteArray, 0, bytesCount);\n\t };\n\t \n\t //close the stream; We don't need it now.\n\t fis.close();\n\t \n\t //Get the hash's bytes\n\t byte[] bytes = digest.digest();\n\t \n\t //This bytes[] has bytes in decimal format;\n\t //Convert it to hexadecimal format\n\t StringBuilder sb = new StringBuilder();\n\t for(int i=0; i< bytes.length ;i++)\n\t {\n\t sb.append(Integer.toString((bytes[i] & 0xff) + 0x100, 16).substring(1));\n\t }\n\t \n\t //return complete hash\n\t return sb.toString();\n\t }", "public String getHash(String str) throws Exception{\n\t\t\n\t\tMessageDigest md = MessageDigest.getInstance(\"MD5\");\n md.update(str.getBytes());\n \n byte byteData[] = md.digest();\n \n //convert the byte to hex format method 1\n StringBuffer sb = new StringBuffer();\n for (int i = 0; i < byteData.length; i++) {\n sb.append(Integer.toString((byteData[i] & 0xff) + 0x100, 16).substring(1));\n }\n \n String hex = sb.toString();\n System.out.println(hex);\n return hex; \n}", "private static String getHex(byte[] raw) {\n if (raw == null) {\n return null;\n }\n final StringBuilder hex = new StringBuilder(2 * raw.length);\n for (final byte b : raw) {\n hex.append(HEXES.charAt((b & 0xF0) >> 4)).append(\n HEXES.charAt((b & 0x0F)));\n }\n return hex.toString();\n }", "String getMessageDigestAlgorithm();", "private static String convertToHex(byte[] data) throws IOException {\n //create new instance of string buffer\n StringBuffer stringBuffer = new StringBuffer();\n String hex = \"\";\n\n //encode byte data with base64\n hex = Base64.getEncoder().encodeToString(data);\n stringBuffer.append(hex);\n\n //return string\n return stringBuffer.toString();\n }", "private static void checksha(String filePath) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tSystem.out.printf(\"Please provide password as hex-encoded text (16 bytes, i.e. 32 hex-digits):%n> \");\n\t\tString expectedDigest = sc.nextLine();\n\n\t\tsc.close();\n\n\t\tMessageDigest sha = null;\n\n\t\t// Get the digest\n\t\ttry {\n\t\t\tsha = MessageDigest.getInstance(\"SHA-256\");\n\n\t\t} catch (NoSuchAlgorithmException e) {\n\t\t\tSystem.out.println(\"Exception while obtaining message digest: \" + e.getMessage());\n\t\t\tSystem.exit(1);\n\t\t}\n\n\t\tPath p = Paths.get(filePath);\n\n\t\t// Open the file input stream\n\t\ttry (InputStream is = Files.newInputStream(p)) {\n\t\t\tbyte[] buff = new byte[4096];\n\t\t\twhile (true) {\n\t\t\t\tint r = is.read(buff);\n\t\t\t\tif (r == -1)\n\t\t\t\t\tbreak;\n\n\t\t\t\t// Update digest\n\t\t\t\tsha.update(buff, 0, r);\n\t\t\t}\n\t\t} catch (IOException e) {\n\t\t\tSystem.out.println(\"Exception while opening the file: \" + e.getMessage());\n\t\t\tsc.close();\n\t\t\tSystem.exit(1);\n\n\t\t}\n\n\t\t// Return the digest and turn to hex string\n\t\tbyte[] hash = sha.digest();\n\t\tString actualDigest = Util.bytetohex(hash);\n\n\t\t// Compare digests\n\t\tif (expectedDigest.equals(actualDigest)) {\n\t\t\tSystem.out.println(\"Digesting completed. Digest of \" + filePath + \" matches expected digest.\");\n\n\t\t} else {\n\t\t\tSystem.out.println(\"Digesting completed. Digest of \" + filePath\n\t\t\t\t\t+ \" does not match the expected digest. Digest was: \" + actualDigest);\n\n\t\t}\n\n\t}", "public POGOProtos.Rpc.AssetDigestEntryProto getDigest() {\n if (digestBuilder_ == null) {\n return digest_ == null ? POGOProtos.Rpc.AssetDigestEntryProto.getDefaultInstance() : digest_;\n } else {\n return digestBuilder_.getMessage();\n }\n }", "public static byte[] encodedDigest(byte[] content) throws CertificateEncodingException {\n byte[] digest = digest(content);\n return digestEncoder(CCNDigestHelper.DEFAULT_DIGEST_ALGORITHM, digest);\n }", "private static String md5(String str) {\n\n if (str == null) {\n return null;\n }\n\n MessageDigest messageDigest = null;\n\n try {\n messageDigest = MessageDigest.getInstance(HttpConf.signType);\n messageDigest.reset();\n messageDigest.update(str.getBytes(HttpConf.charset));\n } catch (NoSuchAlgorithmException e) {\n\n return str;\n } catch (UnsupportedEncodingException e) {\n return str;\n }\n\n byte[] byteArray = messageDigest.digest();\n\n StringBuffer md5StrBuff = new StringBuffer();\n\n for (int i = 0; i < byteArray.length; i++) {\n if (Integer.toHexString(0xFF & byteArray[i]).length() == 1) {\n md5StrBuff.append(\"0\").append(Integer.toHexString(0xFF & byteArray[i]));\n } else {\n md5StrBuff.append(Integer.toHexString(0xFF & byteArray[i]));\n }\n }\n\n return md5StrBuff.toString();\n }", "POGOProtos.Rpc.AssetDigestEntryProto getDigest();", "public String getDigest() {\n return digest;\n }", "public String getSHA(String input) {\n byte[] messageDigest = md.digest(input.getBytes());\n String padding = \"00000000000000000000000000000000\";\n String returnValue;\n\n // Convert byte array into signum representation\n BigInteger no = new BigInteger(1, messageDigest);\n\n // Convert message digest into hex value\n String hashtext = no.toString(16);\n\n // pad with zeros of not long enough\n if (hashtext.length() < 32) {\n returnValue = padding.substring(0, 32-hashtext.length()) + hashtext;\n } else {\n returnValue = hashtext;\n }\n\n return returnValue;\n }", "public static String computeSHA(byte[] filebytes) throws NoSuchAlgorithmException {\r\n\t\tMessageDigest messageDigest = MessageDigest.getInstance(\"SHA-1\");\r\n\t\tbyte[] hash = messageDigest.digest(filebytes);\r\n\t\t\r\n\t\tFormatter formatter = new Formatter();\r\n\t\t\r\n\t\tfor (byte b : hash) {\r\n\t\t\tformatter.format(\"%02x\", b);\r\n\t\t}\r\n\t\t\r\n\t\treturn formatter.toString();\r\n\t}", "public static final byte[] digest(final byte[] bytes) {\n\t\ttry {\n\t\t\treturn MessageDigest.getInstance(\"SHA-256\").digest(bytes);\n\t\t} catch (final Exception e) {\n\t\t\tGEH.setLastException(e);\n\t\t\treturn null;\n\t\t}\n\t}", "void validate(DigestCalculatorProvider calculatorProvider, byte[] dataDigest)\n throws ImprintDigestInvalidException, CMSException\n {\n byte[] currentDigest = dataDigest;\n\n for (int i = 0; i < timeStamps.length; i++)\n {\n try\n {\n TimeStampToken token = this.getTimeStampToken(timeStamps[i]);\n if (i > 0)\n {\n TimeStampTokenInfo info = token.getTimeStampInfo();\n DigestCalculator calculator = calculatorProvider.get(info.getHashAlgorithm());\n\n calculator.getOutputStream().write(timeStamps[i - 1].getEncoded(ASN1Encoding.DER));\n\n currentDigest = calculator.getDigest();\n }\n\n this.compareDigest(token, currentDigest);\n }\n catch (IOException e)\n {\n throw new CMSException(\"exception calculating hash: \" + e.getMessage(), e);\n }\n catch (OperatorCreationException e)\n {\n throw new CMSException(\"cannot create digest: \" + e.getMessage(), e);\n }\n }\n }", "public POGOProtos.Rpc.AssetDigestEntryProtoOrBuilder getDigestOrBuilder() {\n if (digestBuilder_ != null) {\n return digestBuilder_.getMessageOrBuilder();\n } else {\n return digest_ == null ?\n POGOProtos.Rpc.AssetDigestEntryProto.getDefaultInstance() : digest_;\n }\n }", "private static byte[] m14295fl(String str) {\n try {\n MessageDigest instance = MessageDigest.getInstance(\"MD5\");\n if (instance == null) {\n return str.getBytes();\n }\n instance.update(str.getBytes());\n return instance.digest();\n } catch (NoSuchAlgorithmException e) {\n e.printStackTrace();\n return str.getBytes();\n }\n }", "private String byteToBase64(final byte[] bytes) {\n String str = DatatypeConverter.printBase64Binary(bytes);\n return str;\n }", "public List<MessageDigestType> getMessageDigest();", "private byte[] RIPEMD160(byte[] tobeHashed){\r\n\tRIPEMD160Digest digester = new RIPEMD160Digest();\r\n\tbyte[] retValue=new byte[digester.getDigestSize()]; \r\n\tdigester.update(tobeHashed, 0, tobeHashed.length); \r\n\tdigester.doFinal(retValue, 0);\t \r\n\tbyte[] version = new byte[]{0x00};\r\n\treturn concateByteArray(version,retValue);\t\r\n}", "POGOProtos.Rpc.AssetDigestEntryProtoOrBuilder getDigestOrBuilder();", "private static String hexify(byte bytes[]) {\n\n char[] hexDigits = {'0', '1', '2', '3', '4', '5', '6', '7',\n '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};\n\n StringBuilder buf = new StringBuilder(bytes.length * 2);\n for (byte aByte : bytes) {\n buf.append(hexDigits[(aByte & 0xf0) >> 4]);\n buf.append(hexDigits[aByte & 0x0f]);\n }\n return buf.toString();\n }", "public static String getMessageDigest(EMMessage message, Context context) {\n String digest = \"\";\n switch (message.getType()) {\n case LOCATION:\n if (message.direct() == EMMessage.Direct.RECEIVE) {\n digest = getString(context, R.string.location_recv);\n digest = String.format(digest, message.getFrom());\n return digest;\n } else {\n digest = getString(context, R.string.location_prefix);\n }\n break;\n case IMAGE:\n digest = getString(context, R.string.picture);\n break;\n case VOICE:\n digest = getString(context, R.string.voice_prefix);\n break;\n case VIDEO:\n digest = getString(context, R.string.video);\n break;\n case TXT:\n EMTextMessageBody txtBody = (EMTextMessageBody) message.getBody();\n if (message.getBooleanAttribute(ChatConstant.MESSAGE_ATTR_IS_VOICE_CALL, false)) {\n digest = getString(context, R.string.voice_call) + txtBody.getMessage();\n } else if (message.getBooleanAttribute(ChatConstant.MESSAGE_ATTR_IS_VIDEO_CALL, false)) {\n digest = getString(context, R.string.video_call) + txtBody.getMessage();\n } else if (message.getBooleanAttribute(ChatConstant.MESSAGE_ATTR_IS_BIG_EXPRESSION, false)) {\n if (!TextUtils.isEmpty(txtBody.getMessage())) {\n digest = txtBody.getMessage();\n } else {\n digest = getString(context, R.string.dynamic_expression);\n }\n } else {\n digest = txtBody.getMessage();\n }\n break;\n case FILE:\n digest = getString(context, file);\n break;\n default:\n LogUtil.e(TAG, \"error, unknow type\");\n return \"\";\n }\n\n return digest;\n }", "private String hexify(byte bytes[]) {\n\n char[] hexDigits = {'0', '1', '2', '3', '4', '5', '6', '7',\n '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};\n\n StringBuilder buf = new StringBuilder(bytes.length * 2);\n\n for (byte aByte : bytes) {\n buf.append(hexDigits[(aByte & 0xf0) >> 4]);\n buf.append(hexDigits[aByte & 0x0f]);\n }\n\n return buf.toString();\n }", "public String getDigest() {\n return this.Digest;\n }", "static String md5test(String text,String returnType) {\n String result=null;\n if (returnType.equals(\"str\")){\n result = DigestUtils.md5Hex(text);\n System.out.println(result); // 5d41402abc4b2a76b9719d911017c592\n }else if(returnType.equals(\"byteArray\")){\n byte[] res = DigestUtils.md5(text);\n System.out.println(byteToHex(res));// 5d41402abc4b2a76b9719d911017c592\n }\n //new String((byte[]) res)\n return result;\n}", "public static byte[] digest(byte contents[][]) {\n CCNDigestHelper dh = new CCNDigestHelper();\n for (int i = 0; i < contents.length; ++i) {\n if (null != contents[i]) dh.update(contents[i], 0, contents[i].length);\n }\n return dh.digest();\n }", "public static String rawHexDump(byte[] b)\r\n\t{\r\n\t\tif (b == null)\r\n\t\t\treturn \"\";\r\n\t\t\r\n\t\tint size = b.length;\r\n\t\tif (size == 0)\r\n\t\t\treturn \"\";\r\n\t\t\r\n\t\tStringBuffer buf = new StringBuffer();\r\n\t\tfor (int i=0; i < size; i++)\r\n\t\t{\r\n\t\t\t\tbuf.append(zeropad(Integer.toHexString(byteToUInt(b[i])).toUpperCase(),2));\r\n\t\t\t\tbuf.append(\" \");\r\n\t\t}\r\n\t\tbuf.delete(buf.length()-1,buf.length());\r\n\t\treturn buf.toString();\r\n\t}", "public static String getHexString(byte[] raw, int len) {\r\n\t\tbyte[] hex = new byte[2 * len];\r\n\t\tint index = 0;\r\n\t\tint pos = 0;\r\n\r\n\t\tfor (byte b : raw) {\r\n\t\t\tif (pos >= len)\r\n\t\t\t\tbreak;\r\n\r\n\t\t\tpos++;\r\n\t\t\tint v = b & 0xFF;\r\n\t\t\thex[index++] = HEX_CHAR_TABLE[v >>> 4];\r\n\t\t\thex[index++] = HEX_CHAR_TABLE[v & 0xF];\r\n\t\t}\r\n\r\n\t\treturn new String(hex);\r\n\t}", "public void setDigest(String Digest) {\n this.Digest = Digest;\n }", "private static AuthorizationInfo digest_fixup(AuthorizationInfo authorizationInfo, RoRequest roRequest, AuthorizationInfo authorizationInfo2, RoResponse roResponse, boolean bl) throws AuthSchemeNotImplException {\n String[] arrstring;\n Object object;\n Object object2;\n String string;\n NVPair[] arrnVPair;\n int n;\n int n2 = -1;\n int n3 = -1;\n int n4 = -1;\n int n5 = -1;\n int n6 = -1;\n int n7 = -1;\n int n8 = -1;\n NVPair[] arrnVPair2 = null;\n if (authorizationInfo2 != null) {\n arrnVPair2 = authorizationInfo2.getParams();\n for (n = 0; n < arrnVPair2.length; ++n) {\n String string2 = arrnVPair2[n].getName().toLowerCase();\n if (string2.equals(\"domain\")) {\n n2 = n;\n continue;\n }\n if (string2.equals(\"nonce\")) {\n n3 = n;\n continue;\n }\n if (string2.equals(\"opaque\")) {\n n5 = n;\n continue;\n }\n if (string2.equals(\"algorithm\")) {\n n4 = n;\n continue;\n }\n if (string2.equals(\"stale\")) {\n n6 = n;\n continue;\n }\n if (string2.equals(\"digest-required\")) {\n n7 = n;\n continue;\n }\n if (!string2.equals(\"qop\")) continue;\n n8 = n;\n }\n }\n n = -1;\n int n9 = -1;\n int n10 = -1;\n int n11 = -1;\n int n12 = -1;\n int n13 = -1;\n int n14 = -1;\n int n15 = -1;\n int n16 = -1;\n int n17 = -1;\n int n18 = -1;\n Object object3 = authorizationInfo;\n synchronized (object3) {\n arrnVPair = authorizationInfo.getParams();\n for (int i = 0; i < arrnVPair.length; ++i) {\n String string3 = arrnVPair[i].getName().toLowerCase();\n if (string3.equals(\"uri\")) {\n n = i;\n continue;\n }\n if (string3.equals(\"username\")) {\n n9 = i;\n continue;\n }\n if (string3.equals(\"algorithm\")) {\n n10 = i;\n continue;\n }\n if (string3.equals(\"nonce\")) {\n n12 = i;\n continue;\n }\n if (string3.equals(\"cnonce\")) {\n n13 = i;\n continue;\n }\n if (string3.equals(\"nc\")) {\n n14 = i;\n continue;\n }\n if (string3.equals(\"response\")) {\n n11 = i;\n continue;\n }\n if (string3.equals(\"opaque\")) {\n n15 = i;\n continue;\n }\n if (string3.equals(\"digest\")) {\n n16 = i;\n continue;\n }\n if (string3.equals(\"digest-required\")) {\n n17 = i;\n continue;\n }\n if (!string3.equals(\"qop\")) continue;\n n18 = i;\n }\n if (n10 != -1 && !arrnVPair[n10].getValue().equalsIgnoreCase(\"MD5\") && !arrnVPair[n10].getValue().equalsIgnoreCase(\"MD5-sess\")) {\n throw new AuthSchemeNotImplException(\"Digest auth scheme: Algorithm \" + arrnVPair[n10].getValue() + \" not implemented\");\n }\n if (n4 != -1 && !arrnVPair2[n4].getValue().equalsIgnoreCase(\"MD5\") && !arrnVPair2[n4].getValue().equalsIgnoreCase(\"MD5-sess\")) {\n throw new AuthSchemeNotImplException(\"Digest auth scheme: Algorithm \" + arrnVPair2[n4].getValue() + \" not implemented\");\n }\n arrnVPair[n] = new NVPair(\"uri\", roRequest.getRequestURI());\n string = arrnVPair[n12].getValue();\n if (n3 != -1 && !string.equals(arrnVPair2[n3].getValue())) {\n arrnVPair[n12] = arrnVPair2[n3];\n }\n if (n5 != -1) {\n if (n15 == -1) {\n arrnVPair = Util.resizeArray(arrnVPair, arrnVPair.length + 1);\n n15 = arrnVPair.length - 1;\n }\n arrnVPair[n15] = arrnVPair2[n5];\n }\n if (n4 != -1) {\n if (n10 == -1) {\n arrnVPair = Util.resizeArray(arrnVPair, arrnVPair.length + 1);\n n10 = arrnVPair.length - 1;\n }\n arrnVPair[n10] = arrnVPair2[n4];\n }\n if (n8 != -1 || n4 != -1 && arrnVPair2[n4].getValue().equalsIgnoreCase(\"MD5-sess\")) {\n if (n13 == -1) {\n arrnVPair = Util.resizeArray(arrnVPair, arrnVPair.length + 1);\n n13 = arrnVPair.length - 1;\n }\n if (digest_secret == null) {\n digest_secret = DefaultAuthHandler.gen_random_bytes(20);\n }\n long l = System.currentTimeMillis();\n byte[] arrby = new byte[]{(byte)(l & 0xFFL), (byte)(l >> 8 & 0xFFL), (byte)(l >> 16 & 0xFFL), (byte)(l >> 24 & 0xFFL), (byte)(l >> 32 & 0xFFL), (byte)(l >> 40 & 0xFFL), (byte)(l >> 48 & 0xFFL), (byte)(l >> 56 & 0xFFL)};\n object2 = new MD5(digest_secret);\n ((MD5)object2).Update(arrby);\n arrnVPair[n13] = new NVPair(\"cnonce\", ((MD5)object2).asHex());\n }\n if (n8 != -1) {\n int n19;\n if (n18 == -1) {\n arrnVPair = Util.resizeArray(arrnVPair, arrnVPair.length + 1);\n n18 = arrnVPair.length - 1;\n }\n String[] arrstring2 = Util.splitList(arrnVPair2[n8].getValue(), \",\");\n object = null;\n for (n19 = 0; n19 < arrstring2.length; ++n19) {\n if (arrstring2[n19].equalsIgnoreCase(\"auth-int\") && roRequest.getStream() == null) {\n object = \"auth-int\";\n break;\n }\n if (!arrstring2[n19].equalsIgnoreCase(\"auth\")) continue;\n object = \"auth\";\n }\n if (object == null) {\n for (n19 = 0; n19 < arrstring2.length; ++n19) {\n if (!arrstring2[n19].equalsIgnoreCase(\"auth-int\")) continue;\n throw new AuthSchemeNotImplException(\"Digest auth scheme: Can't comply with qop option 'auth-int' because data not available\");\n }\n throw new AuthSchemeNotImplException(\"Digest auth scheme: None of the available qop options '\" + arrnVPair2[n8].getValue() + \"' implemented\");\n }\n arrnVPair[n18] = new NVPair(\"qop\", (String)object, false);\n }\n if (n18 != -1) {\n if (n14 == -1) {\n arrnVPair = Util.resizeArray(arrnVPair, arrnVPair.length + 1);\n n14 = arrnVPair.length - 1;\n arrnVPair[n14] = new NVPair(\"nc\", \"00000001\", false);\n } else if (string.equals(arrnVPair[n12].getValue())) {\n String string4 = Long.toHexString(Long.parseLong(arrnVPair[n14].getValue(), 16) + 1L);\n arrnVPair[n14] = new NVPair(\"nc\", \"00000000\".substring(string4.length()) + string4, false);\n } else {\n arrnVPair[n14] = new NVPair(\"nc\", \"00000001\", false);\n }\n }\n arrstring = (String[])authorizationInfo.getExtraInfo();\n if (authorizationInfo2 != null && (n6 == -1 || !arrnVPair2[n6].getValue().equalsIgnoreCase(\"true\")) && n10 != -1 && arrnVPair[n10].getValue().equalsIgnoreCase(\"MD5-sess\")) {\n arrstring[1] = new MD5(arrstring[0] + \":\" + arrnVPair[n12].getValue() + \":\" + arrnVPair[n13].getValue()).asHex();\n authorizationInfo.setExtraInfo(arrstring);\n }\n authorizationInfo.setParams(arrnVPair);\n }\n object3 = n10 != -1 && arrnVPair[n10].getValue().equalsIgnoreCase(\"MD5-sess\") ? arrstring[1] : arrstring[0];\n string = roRequest.getMethod() + \":\" + arrnVPair[n].getValue();\n if (n18 != -1 && arrnVPair[n18].getValue().equalsIgnoreCase(\"auth-int\")) {\n object = new MD5();\n ((MD5)object).Update(roRequest.getData() == null ? NUL : roRequest.getData());\n string = string + \":\" + ((MD5)object).asHex();\n }\n string = new MD5(string).asHex();\n String string5 = n18 == -1 ? new MD5((String)object3 + \":\" + arrnVPair[n12].getValue() + \":\" + string).asHex() : new MD5((String)object3 + \":\" + arrnVPair[n12].getValue() + \":\" + arrnVPair[n14].getValue() + \":\" + arrnVPair[n13].getValue() + \":\" + arrnVPair[n18].getValue() + \":\" + string).asHex();\n arrnVPair[n11] = new NVPair(\"response\", string5);\n boolean bl2 = false;\n if (n7 != -1 && (arrnVPair2[n7].getValue() == null || arrnVPair2[n7].getValue().equalsIgnoreCase(\"true\"))) {\n bl2 = true;\n }\n if ((bl2 || n16 != -1) && roRequest.getStream() == null) {\n if (n16 == -1) {\n object2 = Util.resizeArray(arrnVPair, arrnVPair.length + 1);\n n16 = arrnVPair.length;\n } else {\n object2 = arrnVPair;\n }\n object2[n16] = new NVPair(\"digest\", DefaultAuthHandler.calc_digest(roRequest, arrstring[0], arrnVPair[n12].getValue()));\n if (n17 == -1) {\n n17 = ((NVPair[])object2).length;\n object2 = Util.resizeArray((NVPair[])object2, ((Object)object2).length + 1);\n object2[n17] = new NVPair(\"digest-required\", \"true\");\n }\n object = new AuthorizationInfo(authorizationInfo.getHost(), authorizationInfo.getPort(), authorizationInfo.getScheme(), authorizationInfo.getRealm(), (NVPair[])object2, arrstring);\n } else {\n object = bl2 ? null : new AuthorizationInfo(authorizationInfo.getHost(), authorizationInfo.getPort(), authorizationInfo.getScheme(), authorizationInfo.getRealm(), arrnVPair, arrstring);\n }\n if (n2 != -1) {\n object2 = null;\n try {\n object2 = new URI(roRequest.getConnection().getProtocol(), roRequest.getConnection().getHost(), roRequest.getConnection().getPort(), roRequest.getRequestURI());\n }\n catch (ParseException parseException) {\n // empty catch block\n }\n StringTokenizer stringTokenizer = new StringTokenizer(arrnVPair2[n2].getValue());\n while (stringTokenizer.hasMoreTokens()) {\n URI uRI;\n try {\n uRI = new URI((URI)object2, stringTokenizer.nextToken());\n }\n catch (ParseException parseException) {\n continue;\n }\n AuthorizationInfo authorizationInfo3 = AuthorizationInfo.getAuthorization(uRI.getHost(), uRI.getPort(), authorizationInfo.getScheme(), authorizationInfo.getRealm(), roRequest.getConnection().getContext());\n if (authorizationInfo3 == null) {\n arrnVPair[n] = new NVPair(\"uri\", uRI.getPath());\n authorizationInfo3 = new AuthorizationInfo(uRI.getHost(), uRI.getPort(), authorizationInfo.getScheme(), authorizationInfo.getRealm(), arrnVPair, arrstring);\n AuthorizationInfo.addAuthorization(authorizationInfo3);\n }\n if (bl) continue;\n authorizationInfo3.addPath(uRI.getPath());\n }\n } else if (!bl && authorizationInfo2 != null && (object2 = AuthorizationInfo.getAuthorization(authorizationInfo2.getHost(), authorizationInfo2.getPort(), authorizationInfo.getScheme(), authorizationInfo.getRealm(), roRequest.getConnection().getContext())) != null) {\n ((AuthorizationInfo)object2).addPath(\"/\");\n }\n return object;\n }", "public void setDigest(String digest) {\n this.digest = digest == null ? null : digest.trim();\n }", "public static final byte[] digest(final String string) {\n\t\treturn digest(string.getBytes());\n\t}", "public static String bytesToHex(byte[] raw) {\n if (raw == null) {\n return null;\n }\n final StringBuilder hex = new StringBuilder(2 * raw.length);\n for (final byte b : raw) {\n hex.append(Character.forDigit((b & 0xF0) >> 4, 16))\n .append(Character.forDigit((b & 0x0F), 16));\n }\n return hex.toString();\n }", "private static void compareSha(String filename) {\n\n\t\tMessageDigest md = null;\n\n\t\ttry (InputStream is = new BufferedInputStream(new FileInputStream(filename))) {\n\n\t\t\tbyte[] data = new byte[4096];\n\t\t\tint nRead;\n\t\t\tmd = MessageDigest.getInstance(\"SHA-256\");\n\n\t\t\twhile ((nRead = is.read(data)) != -1) {\n\t\t\t\tmd.update(data, 0, nRead);\n\t\t\t}\n\n\t\t} catch (FileNotFoundException exc) {\n\t\t\tSystem.out.println(\n\t\t\t\t\t\"File does not exist, is a directory rather than a regular file, or cannot be opened for reading because of some other reason\");\n\t\t\tSystem.exit(1);\n\n\t\t} catch (IOException exc) {\n\t\t\tSystem.out.println(\"Input stream couldn't be initialized.\");\n\t\t\tSystem.exit(1);\n\n\t\t} catch (NoSuchAlgorithmException e) {\n\t\t\tSystem.out.println(\"No provider supports a MessageDigestSpi implementation for the specified algorithm.\");\n\t\t\tSystem.exit(1);\n\t\t}\n\n\t\tString sha256Digest = Util.bytetohex(md.digest());\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tSystem.out.println(\"Please provide expected sha-256 digest for hw06part2.pdf: \");\n\t\tSystem.out.print(\">\");\n\t\tString expectedDigest = sc.nextLine();\n\t\tsc.close();\n\n\t\tif (sha256Digest.equals(expectedDigest)) {\n\t\t\tSystem.out.printf(\"Digesting completed. Digest of %s matches expected digest.\\n\", filename);\n\n\t\t} else {\n\t\t\tSystem.out.printf(\"Digesting completed. Digest of %s does not match the expected digest. Digest was: %s\\n\",\n\t\t\t\t\tfilename, sha256Digest);\n\t\t}\n\n\t}", "private static String md5(byte[] b) {\n try {\n MessageDigest md = MessageDigest.getInstance(\"MD5\");\n md.reset();\n md.update(b);\n byte[] digest = md.digest();\n StringBuffer sb = new StringBuffer();\n for (int i=0; i<digest.length; i++) {\n String a = Integer.toHexString(0xff & digest[i]);\n if (a.length() == 1) a = \"0\" + a;\n sb.append(a);\n }\n return sb.toString();\n }\n catch (NoSuchAlgorithmException e) { writeLog(e); }\n return null;\n }", "public byte[] makeDigest(String user, String pwd) throws NoSuchAlgorithmException {\n MessageDigest md = MessageDigest.getInstance(\"SHA\");\n md.update(user.getBytes());\n md.update(pwd.getBytes());\n return md.digest();\n }", "private static String sha256(String str) throws Exception {\n\t\tMessageDigest d = MessageDigest.getInstance(\"SHA-256\");\n\t\treturn new String(DatatypeConverter.printBase64Binary(d.digest(str.getBytes())));\n\t}", "@Override\n public String digestParams(RestInvocation restInvocation) {\n Params params = Params.of();\n restInvocation.getParamsMap().get(FormParam.class).asHttpHeaders().entrySet().stream()\n .filter(e -> !e.getKey().equalsIgnoreCase(\"signature\"))\n .forEach(e -> params.add(e.getKey(), e.getValue()));\n\n // Parse Query String\n byte[] queryString = params.asQueryString().trim().getBytes(UTF8);\n\n // Create And Return Signature\n return hex(getMac().doFinal(queryString));\n }", "public final void testSHA1AgainstMessageDigest() throws UnsupportedEncodingException,\n NoSuchAlgorithmException {\n final String[] inputs = {\n \"password\",\n \"saranghae\",\n \"aoeusnthaoeusnthaoeusnth \\0 12345098765432109876_!\"\n };\n \n final MessageDigest digest = MessageDigest.getInstance(\"SHA-1\");\n for (final String input : inputs) {\n final byte[] inputBytes = input.getBytes(\"US-ASCII\");\n \n final byte[] mdBytes = digest.digest(inputBytes);\n final byte[] ourBytes = NativeCrypto.sha1(inputBytes);\n assertTrue(\"MessageDigest hash is the same as NativeCrypto SHA-1 hash\",\n Arrays.equals(ourBytes, mdBytes));\n }\n }", "public interface DigestService {\n\t\n\tpublic String getMessageDigest(String message);\n\n}", "private void _resetDigest() {\n try {\n _digest = MessageDigest.getInstance(PicoStructure.HASH);\n _digestvalidto = 0L;\n } catch (NoSuchAlgorithmException nsae) {\n throw new RuntimeException(\"Failed to create hash.\", nsae);\n }\n }", "public static final String hash(final byte[] bytes) {\n\t\treturn Hex.fromByteArray(digest(bytes));\n\t}", "private String computeDigest(boolean paramBoolean, String paramString1, char[] paramArrayOfchar, String paramString2, String paramString3, String paramString4, String paramString5, String paramString6, String paramString7) throws NoSuchAlgorithmException {\n/* 470 */ String str1, str3, str5, str2 = this.params.getAlgorithm();\n/* 471 */ boolean bool = str2.equalsIgnoreCase(\"MD5-sess\");\n/* */ \n/* 473 */ MessageDigest messageDigest = MessageDigest.getInstance(bool ? \"MD5\" : str2);\n/* */ \n/* 475 */ if (bool) {\n/* 476 */ if ((str1 = this.params.getCachedHA1()) == null) {\n/* 477 */ str3 = paramString1 + \":\" + paramString2 + \":\";\n/* 478 */ String str7 = encode(str3, paramArrayOfchar, messageDigest);\n/* 479 */ String str6 = str7 + \":\" + paramString5 + \":\" + paramString6;\n/* 480 */ str1 = encode(str6, (char[])null, messageDigest);\n/* 481 */ this.params.setCachedHA1(str1);\n/* */ } \n/* */ } else {\n/* 484 */ String str = paramString1 + \":\" + paramString2 + \":\";\n/* 485 */ str1 = encode(str, paramArrayOfchar, messageDigest);\n/* */ } \n/* */ \n/* */ \n/* 489 */ if (paramBoolean) {\n/* 490 */ str3 = paramString3 + \":\" + paramString4;\n/* */ } else {\n/* 492 */ str3 = \":\" + paramString4;\n/* */ } \n/* 494 */ String str4 = encode(str3, (char[])null, messageDigest);\n/* */ \n/* */ \n/* 497 */ if (this.params.authQop()) {\n/* 498 */ str5 = str1 + \":\" + paramString5 + \":\" + paramString7 + \":\" + paramString6 + \":auth:\" + str4;\n/* */ }\n/* */ else {\n/* */ \n/* 502 */ str5 = str1 + \":\" + paramString5 + \":\" + str4;\n/* */ } \n/* */ \n/* */ \n/* 506 */ return encode(str5, (char[])null, messageDigest);\n/* */ }", "public static String encode2StringWithSHA(String origin) {\n return encode2String(origin, MD5Utils.SHA);\n }", "private void verifyMessageDigestAttribute()\n throws CMSException\n {\n ASN1Primitive validMessageDigest = getSingleValuedSignedAttribute(\n CMSAttributes.messageDigest, \"message-digest\");\n if (validMessageDigest == null)\n {\n if (signedAttributeSet != null)\n {\n throw new CMSException(\"the message-digest signed attribute type MUST be present when there are any signed attributes present\");\n }\n }\n else\n {\n if (!(validMessageDigest instanceof ASN1OctetString))\n {\n throw new CMSException(\"message-digest attribute value not of ASN.1 type 'OCTET STRING'\");\n }\n\n ASN1OctetString signedMessageDigest = (ASN1OctetString)validMessageDigest;\n\n if (!Arrays.constantTimeAreEqual(resultDigest, signedMessageDigest.getOctets()))\n {\n throw new CMSSignerDigestMismatchException(\"message-digest attribute value does not match calculated value\");\n }\n }\n }", "@Override\n public void update(byte[] in, int off, int len) {\n digest.update(in, off, len);\n }", "public final Blob\n getDigest(DigestAlgorithm digestAlgorithm) throws UnrecognizedDigestAlgorithmException\n {\n if (digestAlgorithm == DigestAlgorithm.SHA256) {\n return new Blob(Common.digestSha256(keyDer_.buf()), false);\n }\n else\n throw new UnrecognizedDigestAlgorithmException(\"Wrong format!\");\n }", "public static byte[] doubleDigest(byte[] input) {\n\t\treturn digest(digest(input));\n\t}", "public static byte[] digest(String digestAlgorithm, byte[] content1, byte[] content2) throws NoSuchAlgorithmException {\n return digest(digestAlgorithm, new byte[][] { content1, content2 });\n }", "public static byte[] digest(String digestAlgorithm, byte contents[][]) throws NoSuchAlgorithmException {\n CCNDigestHelper dh = new CCNDigestHelper(digestAlgorithm);\n for (int i = 0; i < contents.length; ++i) {\n if (null != contents[i]) dh.update(contents[i], 0, contents[i].length);\n }\n return dh.digest();\n }", "private byte[] digestMsg(byte[][] parsedMsg) {\n\n int a, b, c, d, e, f, g, h;\n int[] hashValues = new int[8];\n\n // Initialize hash values for the first iteration, as per section 5.3.3\n System.arraycopy(H, 0, hashValues, 0, 8);\n\n // Iterate through the input message blocks\n for (int i = 0; i < parsedMsg.length; i++) {\n // 1. Prepare message schedule\n fillWords(parsedMsg[i]);\n\n // 2. Initialize working variables with hash values of previous iteration\n a = hashValues[0];\n b = hashValues[1];\n c = hashValues[2];\n d = hashValues[3];\n e = hashValues[4];\n f = hashValues[5];\n g = hashValues[6];\n h = hashValues[7];\n\n // 3. Compute updated working variables\n for (int t = 0; t < 64; t++) {\n int T1 = h + Sum1(e) + Ch(e, f, g) + K[t] + words[t];\n int T2 = Sum0(a) + Maj(a, b, c);\n h = g;\n g = f;\n f = e;\n e = d + T1;\n d = c;\n c = b;\n b = a;\n a = T1 + T2;\n }\n\n // 4. Update hash values\n hashValues[0] = a + hashValues[0];\n hashValues[1] = b + hashValues[1];\n hashValues[2] = c + hashValues[2];\n hashValues[3] = d + hashValues[3];\n hashValues[4] = e + hashValues[4];\n hashValues[5] = f + hashValues[5];\n hashValues[6] = g + hashValues[6];\n hashValues[7] = h + hashValues[7];\n }\n\n\n // Finalize the hash value\n // Concatenate the hash values to one 256-bit output byte[]\n byte[] digest = new byte[32];\n for (int i = 0; i < 8; i++) {\n System.arraycopy(intToBytes(hashValues[i]), 0, digest, 4 * i, 4);\n }\n\n return digest;\n }", "String getDigestAlgorithm();", "private static String compactDigestName(String md) {\n switch (md) {\n case \"SHA-1\":\n return \"SHA1\";\n case \"SHA-224\":\n return \"SHA224\";\n case \"SHA-256\":\n return \"SHA256\";\n case \"SHA-384\":\n return \"SHA384\";\n case \"SHA-512\":\n return \"SHA512\";\n case \"SHA-512/224\":\n return \"SHA512/224\";\n case \"SHA-512/256\":\n return \"SHA512/256\";\n // RSA-PSS with SHA-3 does not yet have standard algorithm names, hence the naming is unclear.\n // For other algorithms names such as \"SHA3-224\", \"SHA3-256\", \"SHA3-384\" and \"SHA3-512\" are\n // not modified. E.g. SHA3-256withRSA is a valid algorithm name.\n default:\n return md;\n }\n }", "private String toHex(byte[] bytes) {\n StringBuilder s = new StringBuilder(bytes.length * 2);\n for (byte b : bytes) {\n s.append(String.format(\"%02x\", b));\n }\n return s.toString();\n }", "public static byte[] encodedDigest(String digestAlgorithm, byte[] content) throws CertificateEncodingException, NoSuchAlgorithmException {\n byte[] digest = digest(digestAlgorithm, content);\n return digestEncoder(digestAlgorithm, digest);\n }", "static String hexSha256Msg(String text) {\n String str=null;\n byte[] data = text.getBytes();\n try {\n MessageDigest md = MessageDigest.getInstance(\"SHA-256\");\n md.update(data);\n byte[] bytes = md.digest();\n str = byteToHex(bytes);\n }catch (NoSuchAlgorithmException e){\n e.printStackTrace();\n }\n System.out.println(str);\n return str ;\n }", "@Test\n public void testBytesToHexString() {\n String testHex = ByteUtils.bytesToHexString(testBytes); \n assertEquals(testHex.length(), testBytes.length * 2);\n }", "private String toHexString(byte[] bytes) {\n StringBuilder hexString = new StringBuilder();\n for (int i = 0; i < bytes.length; i++) {\n String hex = Integer.toHexString(0xFF & bytes[i]);\n if (hex.length() == 1) {\n hexString.append('0');\n }\n hexString.append(hex);\n }\n\n return hexString.toString().toUpperCase();\n }", "private String toHex(byte[] data) {\r\n char[] chars = new char[data.length * 2];\r\n for (int i = 0; i < data.length; i++) {\r\n chars[i * 2] = HEX_DIGITS[(data[i] >> 4) & 0xf];\r\n chars[i * 2 + 1] = HEX_DIGITS[data[i] & 0xf];\r\n }\r\n return new String(chars);\r\n}", "public static String encodeSHA256(byte[] data) {\n byte[] digest = MD_SHA_256.digest(data);\n return new HexBinaryAdapter().marshal(digest);\n }", "public static String encrypt(String strClearText,byte[] digest) throws Exception {\n \n \tString strData=\"\";\n byte [] encrypted = null;\n\n try {\n \t\n SecretKeySpec skeyspec=new SecretKeySpec(digest,\"AES\");\n Cipher cipher=Cipher.getInstance(\"AES\");\n cipher.init(Cipher.ENCRYPT_MODE, skeyspec);\n encrypted=cipher.doFinal(strClearText.getBytes());\n strData=new String(encrypted, \"ISO-8859-1\");\n \n\n } \n catch (Exception ex) {\n \t\n ex.printStackTrace();\n throw new Exception(ex);\n \n }\n \n return strData;\n }", "public static void main(String[] args) {\n Scanner in=new Scanner(System.in);\n String str=in.next();\n try\n {\n MessageDigest md = MessageDigest.getInstance(\"MD5\");\n byte[] bytes=md.digest(str.getBytes());\n \n for(byte b:bytes)\n System.out.format(\"%02x\",b);\n }\n catch(Exception e)\n {\n System.out.print(e);\n }\n }", "private static String CalHash(byte[] passSalt) throws NoSuchAlgorithmException, UnsupportedEncodingException {\n //get the instance value corresponding to Algorithm selected\n MessageDigest key = MessageDigest.getInstance(\"SHA-256\");\n //Reference:https://stackoverflow.com/questions/415953/how-can-i-generate-an-md5-hash\n //update the digest using specified array of bytes\n key.update(passSalt);\n String PassSaltHash = javax.xml.bind.DatatypeConverter.printHexBinary(key.digest());\n return PassSaltHash;\n }", "public interface MessageDigest {\n /**\n * Feeds a batch of bytes into the hash.\n * \n * @param data\n * the byte values.\n * @param offset\n * the first byte index to take.\n * @param length\n * the number of bytes to take.\n */\n void update(byte[] data, int offset, int length);\n\n /**\n * Feeds a byte into the hash.\n * \n * @param data\n * the byte value\n */\n void update(byte data);\n\n /**\n * Consolidates the input, and re-initialises the hash.\n * \n * @return the hash value\n */\n byte[] digest();\n}", "protected String digestPassword(String pwd, String passwordDigestAlgoritm, String encoding) throws IllegalArgumentException, NoSuchAlgorithmException, UnsupportedEncodingException {\n StringBuffer password = new StringBuffer();\n password.append(\"{\").append(passwordDigestAlgoritm).append(\"}\");\n password.append(Text.digest(passwordDigestAlgoritm, pwd.getBytes(encoding)));\n return password.toString();\n }", "public static String getImageWithDigest(ServiceSpec serviceSpec, String digest) throws HyscaleException {\n if (serviceSpec == null) {\n return null;\n }\n Image image = serviceSpec.get(HyscaleSpecFields.image, Image.class);\n if (image == null) {\n return null;\n }\n StringBuilder stringBuilder = new StringBuilder();\n stringBuilder.append(getImageWithoutTag(image));\n if (StringUtils.isNotBlank(digest)) {\n stringBuilder.append(ToolConstants.AT_SIGN).append(digest);\n }\n return stringBuilder.toString();\n }", "@Test\n public void stringFromBytesArray() {\n byte[] input = new byte[]{\n 12,\n -68,\n 102,\n 17,\n -11,\n 84,\n 11,\n -48,\n -128,\n -102,\n 56,\n -115,\n -55,\n 90,\n 97,\n 91\n };\n\n assertEquals(\n \"0cbc6611f5540bd0809a388dc95a615b\",\n JdkHashTools.getStringFromByteArray(input)\n );\n }", "@java.lang.Override\n public POGOProtos.Rpc.AssetDigestEntryProtoOrBuilder getDigestOrBuilder() {\n return getDigest();\n }", "public static String convert(byte[] bytes) {\n/* 34 */ StringBuffer sb = new StringBuffer(bytes.length * 2);\n/* 35 */ for (int i = 0; i < bytes.length; i++) {\n/* 36 */ sb.append(hexs[bytes[i] >> 4 & 0xF]);\n/* 37 */ sb.append(hexs[bytes[i] & 0xF]);\n/* */ } \n/* 39 */ return sb.toString();\n/* */ }", "private String makeHex(byte[] buffer) {\n byte current;\n int length = buffer.length;\n String blank = \"\"; // it's easier to change\n StringBuffer ret = new StringBuffer(2*length);\n\n // do for each half byte\n for(int i=0;i<(2*length);i++)\n {\n\t// mask half byte and move it to the right\n\tcurrent = i%2==1 ? (byte) (buffer[(i/2)] & 0x0F)\n\t : (byte) ((buffer[(i/2)] >> 4) & 0x0F);\n\t\n\t// convert half byte to ASCII char\t\t \n\tret.append((char) (current < 0x0A ? current+0x30 : current+0x37) + (i%2==1 ? blank : \"\"));\n }\n return ret.toString();\n }", "@Override\n public void reset() {\n digest.reset();\n }", "private String calculateCheckSum(File file2) {\n\t\tStringBuffer sb = new StringBuffer(\"\");\n\t\ttry {\n\t\t\tMessageDigest messageDigest = MessageDigest.getInstance(\"SHA1\");\n\n\t\t\tFileInputStream finput = new FileInputStream(file2);\n\t\t\tbyte[] dataBytes = new byte[1024];\n\n\t\t\tint bytesRead = 0;\n\n\t\t\twhile ((bytesRead = finput.read(dataBytes)) != -1) {\n\t\t\t\tmessageDigest.update(dataBytes, 0, bytesRead);\n\t\t\t}\n\n\t\t\tbyte[] digestBytes = messageDigest.digest();\n\n\t\t\tfor (int i = 0; i < digestBytes.length; i++) {\n\t\t\t\tsb.append(Integer.toString((digestBytes[i] & 0xff) + 0x100, 16).substring(1));\n\t\t\t}\n\t\t\tSystem.out.println(\"file check sum value is \" + sb.toString());\n\t\t\tfinput.close();\n\t\t} catch (Exception ex) {\n\t\t\t// TODO: handle exception\n\t\t\tLogger.getLogger(FileTransferClient.class.getName()).log(Level.SEVERE, null, ex);\n\t\t}\n\n\t\treturn sb.toString();\n\t}", "@java.lang.Override\n public POGOProtos.Rpc.AssetDigestEntryProto getDigest() {\n return digest_ == null ? POGOProtos.Rpc.AssetDigestEntryProto.getDefaultInstance() : digest_;\n }", "public static String getFileChecksum(MessageDigest digest, String filePath) throws IOException {\n\t\tFileInputStream fis = new FileInputStream(filePath);\n\n\t\t// Create byte array to read data in chunks\n\t\tbyte[] byteArray = new byte[1024];\n\t\tint bytesCount = 0;\n\n\t\t// Read file data and update in message digest\n\t\twhile ((bytesCount = fis.read(byteArray)) != -1) {\n\t\t\tdigest.update(byteArray, 0, bytesCount);\n\t\t}\n\t\t;\n\n\t\t// close the stream; We don't need it now.\n\t\tfis.close();\n\n\t\t// Get the hash's bytes\n\t\tbyte[] bytes = digest.digest();\n\n\t\t// This bytes[] has bytes in decimal format;\n\t\t// Convert it to hexadecimal format\n\t\tStringBuilder sb = new StringBuilder();\n\t\tfor (int i = 0; i < bytes.length; i++) {\n\t\t\tsb.append(Integer.toString((bytes[i] & 0xff) + 0x100, 16).substring(1));\n\t\t}\n\n\t\t// return complete hash\n\t\treturn sb.toString();\n\t}", "private static String getValue(String rawValue) {\n\t\trawValue = rawValue.trim();\n\t\tString f1 = \"\";\n\t\tString f2 = \"\";\n\t\tfor (int t = 1; t < rawValue.length() - 1; t++) {\n\t\t\tf1 += rawValue.charAt(t);\n\t\t}\n\t\tfor (int t = 0; t < f1.length() && t < 16; t++) {\n\t\t\tf2 += f1.charAt(t);\n\t\t}\n\t\treturn f2;\n\t}", "private static String bytesToHex(byte[] bytes) {\n char[] hexChars = new char[bytes.length * 2];\n for (int j = 0; j < bytes.length; j++) {\n int v = bytes[j] & 0xFF;\n hexChars[j * 2] = hexArray[v >>> 4];\n hexChars[j * 2 + 1] = hexArray[v & 0x0F];\n }\n return new String(hexChars);\n }", "public static void getClassDigest(Class<?> cl, MessageDigest digest) {\n \t\tDigestOutputStream out = new DigestOutputStream(NullOutputStream.getInstance(), digest);\n \t\ttry {\n \t\t\twriteClassToStream(cl, out);\n \t\t} catch (IOException e) {\n \t\t\te.printStackTrace();\n \t\t\tthrow new UnexpectedException(e);\n \t\t}\n \t}", "public static String prettyHex(final byte[] data) {\n return prettyHex(data, 0, data.length);\n }", "private void computeEncoding()\n{\n source_encoding = IvyFile.digestString(current_node.getKeyText());\n}" ]
[ "0.70442206", "0.6425569", "0.62304103", "0.6220347", "0.6220347", "0.6207382", "0.61586696", "0.5850282", "0.58445895", "0.5660524", "0.5638666", "0.54491854", "0.5391702", "0.53626555", "0.5342244", "0.53074694", "0.5272783", "0.52463603", "0.52406687", "0.52146894", "0.51618147", "0.5156219", "0.5105689", "0.50976527", "0.50869715", "0.5081486", "0.5050379", "0.5040276", "0.4999094", "0.49907568", "0.49827388", "0.49810967", "0.4967621", "0.4965258", "0.4935389", "0.49081174", "0.48914552", "0.48781437", "0.48718166", "0.48685881", "0.48438102", "0.4843525", "0.48412728", "0.48044002", "0.48003072", "0.4786524", "0.4784147", "0.4770079", "0.4766842", "0.47639757", "0.4744113", "0.47274372", "0.47250253", "0.47199506", "0.47161385", "0.4715166", "0.47140417", "0.4713014", "0.47111782", "0.46988446", "0.46950853", "0.46906438", "0.46640044", "0.46495047", "0.46475244", "0.464673", "0.46466768", "0.46298978", "0.4627901", "0.46273458", "0.46245906", "0.46197528", "0.4613085", "0.46125004", "0.46005443", "0.45984632", "0.4582786", "0.45803952", "0.45687002", "0.45667374", "0.45565242", "0.45552856", "0.4541521", "0.45401573", "0.4532725", "0.4530026", "0.45245844", "0.45232114", "0.45223424", "0.45173332", "0.45140788", "0.45053276", "0.45040137", "0.44973925", "0.44919807", "0.44897538", "0.44855264", "0.44717637", "0.44698793", "0.44676474" ]
0.6126118
7
Test isAccountValid Test if session is not active get an exception
@Test (expected = AuthorizationException.class) public void test_if_isSessionActive_returnsFalse_an_authorizationException_is_thrown(){ //Arrange List accountList = new LinkedList(); when(mockUserService.isSessionActive()).thenReturn(false); //Act try{ accountList = sut.findMyAccounts(); }finally{ verify(mockAccountDAO, times(0)).findAccountsByOwnerId("valid"); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n\t void testAccountNonExpired() {\n\t\tassertTrue(user.isAccountNonExpired());\n\t}", "@Test\n\tpublic void testIsAccountNonExpired() {\n\t\tassertTrue(user.isAccountNonExpired());\n\t}", "@Test\n\t void testAccountNonLocked() {\n\t\tassertTrue(user.isAccountNonLocked());\n\t}", "boolean isAccountNonExpired();", "boolean isAccountNonExpired();", "@Test\n\tpublic void testIsAccountNonLocked() {\n\t\tassertTrue(user.isAccountNonLocked());\n\t}", "boolean validateAccount(String Account) {\n\t\treturn true;\n\n\t}", "@Test\n\t void testCredentialsNonExpired() {\n\t\tassertTrue(user.isCredentialsNonExpired());\n\t}", "@Override\r\n public boolean isAccountNonExpired() {\r\n return true;\r\n }", "@Override\n public boolean isAccountNonExpired() {\n return true;\n }", "@Override\n public boolean isAccountNonExpired() {\n return true;\n }", "@Override\n public boolean isAccountNonExpired() {\n return true;\n }", "@Override\npublic boolean isAccountNonExpired() {\n\treturn true;\n}", "@Override\n public boolean isAccountNonExpired() {\n return false;\n }", "@Override\n public boolean isAccountNonExpired() {\n return false;\n }", "@Override\n public boolean isAccountNonExpired() {\n return false;\n }", "@Override\r\n\tpublic boolean isAccountNonExpired() {\n\t\treturn false;\r\n\t}", "@Override\r\n\tpublic boolean isAccountNonExpired() {\n\t\treturn false;\r\n\t}", "@Override\npublic boolean isAccountNonExpired() {\n\treturn false;\n}", "@Override\n public boolean isAccountNonExpired () {\n return true;\n }", "boolean hasAccount();", "boolean hasAccount();", "boolean hasAccount();", "public void testMissingOrInvalidAccount() throws Exception {\n\n client = new PaysafeApiClient(merchantApiKey, merchantApiPassword, Environment.TEST);\n\n try {\n SingleUseToken sObjResponse = client.customerVaultService().createSingleUseToken(\n SingleUseToken.builder()\n .card()\n .holderName(\"Mr. John Smith\")\n .cardNum(\"4917480000000008\")\n .cardExpiry()\n .month(7)\n .year(2019)\n .done()\n .billingAddress()\n .street(\"100 Queen Street West\")\n .street2(\"Unit 201\")\n .city(\"Toronto\")\n .country(\"CA\")\n .state(\"ON\")\n .zip(\"M5H 2N2\")\n .done()\n .done()\n .build());\n\n } catch (IOException ioExp) {\n // Log IO Exception\n if(Constants.DEBUG_LOG_VALUE)\n Utils.debugLog(\"EXCEPTION TEST: \" + ioExp.getMessage());\n } catch (PaysafeException oExp) {\n // Log Paysafe Exception\n Utils.debugLog(\"EXCEPTION TEST: Missing or Invalid Account: \" + oExp.getMessage());\n Assert.assertNotNull(\"Missing or Invalid Account.\", oExp.getMessage());\n } catch (Exception e) {\n // Log Exception\n if(Constants.DEBUG_LOG_VALUE)\n Utils.debugLog(\"EXCEPTION TEST: \" + e.getMessage());\n }\n }", "@Override\n\t\t\t\tpublic boolean isAccountNonExpired() {\n\t\t\t\t\treturn false;\n\t\t\t\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn false;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn false;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn false;\n\t}", "@Test\n\tpublic void loginWithInvalidCredentials(){\n\t\tapp.loginScreen().waitUntilLoaded();\n\t\tapp.loginScreen().logIn(Credentials.USER_INVALID.username, Credentials.USER_INVALID.password);\n\t\tassertTrue(app.loginScreen().isActive());\n\t}", "@Test\n\tpublic void testIsCredentialsNonExpired() {\n\t\tassertTrue(user.isCredentialsNonExpired());\n\t}", "@Override\n\tpublic boolean isAccountNonExpired()\n\t{\n\t\treturn true;\n\t}", "@Override\r\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\r\n\t}", "@Override\r\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\r\n\t}", "private boolean validLogin() {\n\t\tObject principal = SecurityContextHolder.getContext().getAuthentication().getPrincipal();\r\n\t\tif(principal.equals(IConstant.LOGIN_STATUS.ANONYMOUS_USER)) {\r\n\t\t\treturn false;\r\n\t\t} else {\r\n\t\t\tUserDetails userDetails = (UserDetails) principal;\r\n\t\t\treturn userDetails.isAccountNonExpired() &&\r\n\t\t\t\t\tuserDetails.isAccountNonLocked() &&\r\n\t\t\t\t\tuserDetails.isCredentialsNonExpired() &&\r\n\t\t\t\t\tuserDetails.isEnabled();\r\n\t\t}\r\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "boolean hasAccountId();", "boolean hasAccountId();", "boolean hasAccountId();", "boolean hasAccountId();", "boolean hasAccountId();", "boolean hasAccountId();", "boolean hasAccountId();", "public boolean isAccountNonExpired() {\n\t\treturn false;\r\n\t}", "public boolean isAccountValidated(GuruModel model) {\n\t\tquery = \"select id from guru where email=? and pwd=? and validate_email=?\";\n\t\tList<GuruModel> list = this.jdbcTemplate.query(query,new Object[]{model.getEmail(),this.edutility.getSHA256(model.getPwd()),true},\n\t\t\t\tBeanPropertyRowMapper.newInstance(GuruModel.class));\n\t\t\n\t\tif(list.size() == 0)\n\t\t\t\treturn false;\n\t\telse\n\t\t\treturn true;\n\t\t\n\t}", "@Test\n\tpublic void loginWithValidCredentials(){\n\t\tapp.loginScreen().waitUntilLoaded();\n\t\tapp.loginScreen().logIn(Credentials.USER_VALID.username, Credentials.USER_VALID.password);\n\t\tassertTrue(app.userDashboardScreen().isActive());\n\t}", "@Test\n\tpublic void testLoginAdminAccountWithInvalidCredentials() {\n\t\tassertEquals(2, adminAccountService.getAllAdminAccounts().size());\n\n\t\tString error = null;\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.loginAdminAccount(USERNAME2, PASSWORD1);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"Username or password incorrect. Please try again.\", error);\n\t}", "public boolean isInvalidAccountId() {\n return invalidAccountId;\n }", "@Ignore\n @Test (expected = InvalidRequestException.class)\n public void test_if_isSessionActive_returnsFalse_throw_InvalidRequestException(){\n\n //Arrange\n List accountList = new LinkedList();\n AppUser validUser = new AppUser(\"id\", \"valid\", \"valid\", \"valid\", \"valid\", \"valid\");\n Account dummyAccount = new Account();\n when(mockUserService.isSessionActive()).thenReturn(true);\n when(mockUserService.getSessionUser()).thenReturn(validUser);\n\n\n //Act\n try{\n sut.createNewAccount(dummyAccount);\n }finally{\n verify(mockAccountDAO, times(0)).save(dummyAccount);\n }\n\n }", "public boolean isAccountNonExpired() {\n\t\treturn true;\r\n\t}", "@Test\n\tpublic void testLoginStandardAccExist() {\n\t\tAccount acc1 = new Account(00000, \"acc1\", true, 1000.00, 0, false);\n\t\taccounts.add(acc1);\n\n\t\ttransactions.add(0, new Transaction(10, \"acc1\", 00000, 0, \"\"));\n\t\ttransactions.add(1, new Transaction(00, \"acc1\", 00000, 0, \"\"));\n\n\t\ttransHandler = new TransactionHandler(accounts, transactions);\n\t\toutput = transHandler.HandleTransactions();\n\n\t\tif (outContent.toString().contains(\"Session Started Standard\")) {\n\t\t\ttestResult = true;\n\t\t} else {\n\t\t\ttestResult = false;\n\t\t}\n\t\tassertTrue(\"unable to find that standard account\", testResult);\n\t}", "boolean isAccountNonLocked();", "boolean isAccountNonLocked();", "@Override\r\n\tpublic boolean isAccountExist(Account account) {\n\t\treturn false;\r\n\t}", "public boolean isAccountNonExpired() {\n\t\treturn false;\n\t}", "public boolean isAccountNonExpired() {\n\t\treturn false;\n\t}", "private boolean accountChecks(Account account){\n // ie. if the account has to be personal for the round-up service to apply\n account.getName(); // check personal\n return true;\n }", "@Test\n\tpublic void testLoginAdminAccExist() {\n\t\tAccount acc1 = new Account(00000, \"ADMIN\", true, 1000.00, 0, false);\n\t\taccounts.add(acc1);\n\n\t\ttransactions.add(0, new Transaction(10, \"ADMIN\", 00000, 0, \"A\"));\n\t\ttransactions.add(1, new Transaction(00, \"ADMIN\", 00000, 0, \"A\"));\n\n\t\ttransHandler = new TransactionHandler(accounts, transactions);\n\t\toutput = transHandler.HandleTransactions();\n\n\t\tif (outContent.toString().contains(\"Session Started Admin\")) {\n\t\t\ttestResult = true;\n\t\t} else {\n\t\t\ttestResult = false;\n\t\t}\n\n\t\tassertTrue(\"unable to find that admin account\", testResult);\n\t}", "@Test\n\tpublic void testAuthenticateAdminAccountWithInvalidToken() {\n\n\t\tString error = null;\n\t\tAdminAccount user = null;\n\t\ttry {\n\t\t\tuser = adminAccountService.authenticateAdminAccount(USERNAME2);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"An error occured. Please try again.\", error);\n\n\t}", "@Override\r\n\tpublic boolean checkLogin(int accNo) throws EwalletException {\n\t\ttemp =dao.loginuser(accNo);\r\n\t\tif(temp!=null)\r\n\t\treturn true;\r\n\t\telse \r\n\t\t\treturn false;\r\n\t}", "@Override\n public boolean isAccountNonExpired() {\n return !locked;\n }", "public boolean isAccountNonExpired() {\n\t\treturn true;\n\t}", "boolean hasHasAccount();", "@Test\r\n\tpublic void testValidationSuccess() {\r\n\t\tAccountTransferRequest accountTransferRequest = new AccountTransferRequest();\r\n\t\taccountTransferRequest.setUsername(VALID_USERNAME);\r\n\t\taccountTransferRequest.setPassword(VALID_PASSWORD);\r\n\t\taccountTransferRequest.setSenderAccount(VALID_SENDER_ACCOUNT_NUMBER);\r\n\t\taccountTransferRequest.setReceiverAccount(VALID_RECEIVER_ACCOUNT_NUMBER);\r\n\t\taccountTransferRequest.setTransferAmount(400.0);\t\t\r\n\t\ttry {\r\n\t\t\ttransferValidationUnit.validate(accountTransferRequest);\r\n\t\t} catch (ValidationException e) {\r\n\t\t\tAssert.fail(\"Found_Exception\");\r\n\t\t}\r\n\t}", "public boolean validate(Account acc) throws ValidateException {\n\t\tif(acc == null){\n\t\t\tthrow new ValidateException(\"A conta nao pode ser nula\");\n\t\t}\t\n\t\treturn true;\n\t}", "private String isValid(Account account) {\n String result = \"\";\n if (!AccountUtil.isValidMail(account.getEmail())) {\n result = ErrorConstants.ERROR_VALIDMAIL;\n } else if (!AccountUtil.isValidPassword(account.getPassword())) {\n result = ErrorConstants.ERROR_PASS;\n } else if (authenticationRepo.checkAccountExistByEmail(account.getEmail())) {\n result = ErrorConstants.ERROR_EMAILUSED;\n }\n return result;\n }", "public boolean validateAccount(String accessKey, String secretKey) throws EC2ServiceException {\n String oldApiKey = null;\n String oldSecretKey = null;\n\n if (accessKey == null || secretKey == null) {\n return false;\n }\n\n // okay, instead of using the getApi() nonsense for validate, we are going to manage _eng\n if (_eng == null) {\n _eng = new CloudStackApi(managementServer, cloudAPIPort, false);\n }\n\n try {\n oldApiKey = _eng.getApiKey();\n oldSecretKey = _eng.getSecretKey();\n } catch (Exception e) {\n // we really don't care, and expect this\n }\n try {\n _eng.setApiKey(accessKey);\n _eng.setSecretKey(secretKey);\n List<CloudStackAccount> accts = _eng.listAccounts(null, null, null, null, null, null, null, null);\n if (oldApiKey != null && oldSecretKey != null) {\n _eng.setApiKey(oldApiKey);\n _eng.setSecretKey(oldSecretKey);\n }\n if (accts == null) {\n return false;\n }\n return true;\n } catch (Exception e) {\n logger.error(\"Validate account failed!\");\n throw new EC2ServiceException(ClientError.AuthFailure, \"User not authorised\");\n }\n }", "boolean isSessionValid(Object session);", "public boolean isAccountValid(String accountNumber, BankFusionEnvironment env) {\n boolean isAccountValid = false;\n errorMessage = CommonConstants.EMPTY_STRING;\n try {\n IBOAttributeCollectionFeature accValues = (IBOAttributeCollectionFeature) env.getFactory().findByPrimaryKey(\n IBOAttributeCollectionFeature.BONAME, accountNumber);\n isAccountValid = true;\n BusinessValidatorBean accountValidator = new BusinessValidatorBean();\n if (accountValidator.validateAccountClosed(accValues, env)) {\n isAccountValid = false;\n errorMessage = accountValidator.getErrorMessage().getLocalisedMessage();\n }\n else if (accountValidator.validateAccountStopped(accValues, env)) {\n isAccountValid = false;\n errorMessage = accountValidator.getErrorMessage().getLocalisedMessage();\n }\n\n }\n catch (FinderException exception) {\n errorMessage = \"Invalid Main Account\";\n }\n catch (BankFusionException exception) {\n errorMessage = \"Invalid Main Account\";\n }\n\n return isAccountValid;\n }", "@Test(expected=com.cg.demo.exceptions.InvalidAccountException.class)\n\tpublic void ifTheAccountNoIsInvalidSystemShouldThrowException() throws InvalidAccountException{\n\t\t\n\t\tservice.showBalance(1);\n\n\t}", "public boolean isAccountNonExpired() {\n\t\t// TODO Auto-generated method stub\n\t\treturn true;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn accountNonExpired;\n\t}", "@Override\n\tpublic boolean isAccountNonExpired() {\n\t\treturn isAccountNonExpired;\n\t}", "@Test\n public void checkForNonExistingUserCredential() {\n UserLogin userLogin = new UserLogin();\n userLogin.setUserLogin(\"+380680000000\");\n userLogin.setUserPassword(\"12345\");\n\n boolean isThrow = false;\n try {\n UserResponse userResponse = loginsService.checkLoginSignInSignUp(userLogin, \"SignIn\");\n } catch (ApplicationException e) {\n isThrow = true;\n }\n assertThat(isThrow);\n }", "@Test\n public void isExpired() throws Exception {\n // session was just created so it should not be expired as long\n // as the test does not take hours to complete\n assertFalse(session.isExpired());\n }", "@Test\n\tvoid testCreateAccount() {\n\t\t\n\t\t// Data Object for unregister user\n\t\tUser user = new User(\"Create AccountExample\", \"CreateAccount\", \"[email protected]\");\n\t\t\n\t\t// Prepare data\n\t\tUserDAO dao = new UserDAO();\n\t\tboolean exist = false;\n\t\t\n\t\ttry {\n\t\t\t// Creating User in DB\n\t\t\tdao.createAccount(user, \"CreateAccountPassword\");\n\t\t\t\n\t\t\t// Boolean confirming if exist\n\t\t\texist = !dao.availabilityUsername(user.getUsername());\n\t\t\t\n\t\t\t// Deleting account\n\t\t\tdao.deleteAccount(user.getUsername());\n\t\t\t\n\t\t} catch (ClassNotFoundException | UnsupportedEncodingException | SQLException | GeneralSecurityException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\t// Asserting that the create account works\n\t\tassertTrue(exist);\n\t}", "@Test\n\tpublic void testAuthenticateAdminAccountWithNonExistingUser() {\n\n\t\tString username = \"Catherine\";\n\t\tString error = null;\n\t\tAdminAccount user = null;\n\t\ttry {\n\t\t\tuser = adminAccountService.authenticateAdminAccount(username);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"The user cannot be found.\", error);\n\t}", "@Test\n\tpublic void testAuthenticateAdminAccountSuccessfully() {\n\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.authenticateAdminAccount(USERNAME1);\n\t\t} catch (InvalidInputException e) {\n\t\t\tfail();\n\t\t}\n\t\tassertNotNull(user);\n\t\tassertNotEquals(0, user.getToken());\n\t}", "@Test\n public void nonExistingUser() {\n boolean result = auth.authenticateUser(\"Spiderman\", \"fido\", 0); \n //Then\n assertThat(result, is(false));\n }", "@Test\n\tpublic void testLoginAdminAccountWithNonExistingUser() {\n\t\tassertEquals(2, adminAccountService.getAllAdminAccounts().size());\n\n\t\tString username = \"Catherine\";\n\t\tString password = \"password\";\n\t\tString error = null;\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.loginAdminAccount(username, password);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"The user cannot be found. Please sign up if you do not have an account yet.\", error);\n\t}", "@Test\n public void usernameTestFalse () {\n Accounts test = null;\n test.createAccounts();\n test = Accounts.getByUsername(\"john\");\n assertNull(test);\n\n }", "@Test\n public void noUser() {\n assertEquals(false, testBase.signIn(\"wrong\", \"false\"));\n }", "@Test\n\tpublic void testLoginAdminAccountSuccessfully() {\n\t\tassertEquals(2, adminAccountService.getAllAdminAccounts().size());\n\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.loginAdminAccount(USERNAME2, PASSWORD2);\n\t\t} catch (InvalidInputException e) {\n\t\t\tfail();\n\t\t}\n\n\t\tassertNotNull(user);\t\t\t\n\t\tassertEquals(USERNAME2, user.getUsername());\n\t\tassertEquals(PASSWORD2, user.getPassword());\n\t\tassertEquals(NAME2, user.getName());\n\t}", "public Boolean existCheckingAccountId(long accountId) throws Exception {\r\n try {\r\n CheckingAccountDAO checkingAccountDAO = new CheckingAccountDAO();\r\n checkingAccountDAO.selectById(accountId);\r\n checkingAccountDAO.close();\r\n return true;\r\n } catch (Exception e) {\r\n return false;\r\n }\r\n }", "@Test\n public void wrongUsernamePassword() {\n assertEquals(false, testBase.signIn(\"user2\", \"testPassword\"));\n }", "public void testInvalidAuthenticationCredentials() throws Exception {\n client = new PaysafeApiClient(\"username\", \"password\", Environment.TEST, merchantAccountNumber);\n\n try {\n SingleUseToken sObjResponse = client.customerVaultService().createSingleUseToken(\n SingleUseToken.builder()\n .card()\n .holderName(\"Mr. John Smith\")\n .cardNum(\"4917480000000008\")\n .cardExpiry()\n .month(7)\n .year(2019)\n .done()\n .billingAddress()\n .street(\"100 Queen Street West\")\n .street2(\"Unit 201\")\n .city(\"Toronto\")\n .country(\"CA\")\n .state(\"ON\")\n .zip(\"M5H 2N2\")\n .done()\n .done()\n .build());\n\n Assert.assertEquals(\"5279\", sObjResponse.getError().getCode());\n Assert.assertEquals(\"The authentication credentials are invalid.\",\n sObjResponse.getError().getMessage());\n\n } catch (IOException ioExp) {\n // Log IO Exception\n if(Constants.DEBUG_LOG_VALUE)\n Utils.debugLog(\"EXCEPTION TEST: \" + ioExp.getMessage());\n } catch (PaysafeException oExp) {\n // Log Paysafe Exception\n if(Constants.DEBUG_LOG_VALUE)\n Utils.debugLog(\"EXCEPTION TEST: \" + oExp.getMessage());\n } catch (Exception e) {\n // Log Exception\n if(Constants.DEBUG_LOG_VALUE)\n Utils.debugLog(\"EXCEPTION TEST: \" + e.getMessage());\n }\n }", "public void checkAccountExpiration() throws MessagingException{\r\n\t\tList<Account> accounts = accountRepository.findAll();\r\n\t\tSimpleDateFormat sdf = new SimpleDateFormat(\"yyyy-MM-dd HH:mm:ss.SSS\");\r\n\t\t\r\n\t\t//Username Password does not exist its only for faking user to system default\r\n\t\tUsernamePasswordAuthenticationToken authRequest = new UsernamePasswordAuthenticationToken(\"[email protected]\",\r\n\t\t\t\t\"Test1234@\");\r\n\t\tSecurityContextHolder.getContext().setAuthentication(authRequest);\r\n\t\t\r\n\t\tfor( Account acc: accounts)\t{\r\n\t\t\tif(acc.getAlwaysActive() == false && acc.getActive() == true){\r\n\t\t\t\tDate expiration = acc.getExpirationDate() != null ? acc.getExpirationDate() :\r\n\t\t\t\t\tDateUtil.toDate(DateUtil.adjustDate(DateUtil.fromDate(acc.getStartDate()), Calendar.DAY_OF_MONTH, acc.getType() == AccountType.TRIAL ? getTrial.getTrialDays() : PREMIUM_EXPIRATION_DAYS));\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\tif (DateUtil.getDaysRemaining(expiration) <= -1){\r\n\t\t\t\t\tacc.setActive(false);\r\n\t\t\t\t\tacc.setExpirationDate(new Date());\r\n\t\t\t\t\tacc.setCurrency(\"SGD\");\r\n\t\t\t\t\tUser user = new User();\r\n\t\t\t\t\tuser.setId(1L);\r\n\t\t\t\t\tacc.setLastModifiedBy(user);\r\n\t\t\t\t\tacc.setLastModifiedDate(new Date());\r\n\t\t\t\t\taccountRepository.save(acc);\r\n\t\t\t\t\ttry{\r\n\t\t\t\t\tsendTrialExpiredEmail(acc.getUser().getUsername());\r\n\t\t\t\t\t\r\n\t\t\t\t\t}\r\n\t\t\t\t\tcatch(MessagingException e){\r\n\t\t\t\t\t\tlog.error(\"exception while sending email to \"+acc.getUser().getUsername());\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t}", "public int checkLogin(Account formAccount) {\n Account account = getAccountByAccountNo(formAccount.getAccountNo());\n //return 1 if account not found\n if (account == null) {\n return 1;\n } else if (account.getLocked() == 1) {\n return 3; // return 3 if account is locked\n } else if (account.getPin() != formAccount.getPin()) {\n if (account.getIncorrectAttempts() < 2) {\n account.setIncorrectAttempts(account.getIncorrectAttempts() + 1);\n saveOrUpdate(account);\n return 2; //return 2 if incorrect pin but account is not locked yet\n } else {\n account.setIncorrectAttempts(account.getIncorrectAttempts() + 1);\n account.setLocked(1);\n saveOrUpdate(account);\n return 3; //lock account on 3rd incorrect attempt and return 3\n }\n\n } else {\n return 0; // return 0 if login successful\n }\n\n }", "@Override\n\tpublic boolean mayILogin(Account account) {\n\t\tSession session = sf.openSession();\n\t\tQuery query = session.createQuery(\"from cn.edu.shou.staff.model.Account acc\" +\n\t\t\t\t\" where acc.uname=:u and acc.passwd=:v\");\n\t\tquery.setString(\"u\", account.getUname());\n\t\tquery.setString(\"v\", account.getPasswd());\n\t\tList list = query.list();\n\t\treturn list.size()>0;\n\t}" ]
[ "0.7286051", "0.7054337", "0.6971798", "0.69419825", "0.69419825", "0.6806473", "0.66076726", "0.6558226", "0.65201104", "0.64973074", "0.64973074", "0.64973074", "0.6485258", "0.64805853", "0.64805853", "0.64805853", "0.647438", "0.647438", "0.64734894", "0.6447237", "0.6435258", "0.6435258", "0.6435258", "0.641856", "0.641428", "0.6406826", "0.6406826", "0.6406826", "0.64056486", "0.6403161", "0.64028394", "0.6394258", "0.6394258", "0.6356366", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.6342925", "0.63096225", "0.63096225", "0.63096225", "0.63096225", "0.63096225", "0.63096225", "0.63096225", "0.62917423", "0.626468", "0.62530136", "0.6223618", "0.62227184", "0.6222462", "0.6221445", "0.6209231", "0.620619", "0.620619", "0.62032247", "0.620195", "0.620195", "0.6197885", "0.61753017", "0.6172995", "0.6148377", "0.61245286", "0.6123601", "0.61154664", "0.6110172", "0.60891265", "0.6080966", "0.6073538", "0.6067814", "0.6062106", "0.60518736", "0.60449237", "0.6022777", "0.6019475", "0.59916127", "0.59805745", "0.5979235", "0.59173435", "0.5894756", "0.58935314", "0.58777744", "0.5877199", "0.5874966", "0.5869815", "0.58600175", "0.5846986", "0.58422893", "0.58371836", "0.5836251", "0.5830786" ]
0.0
-1
Test if session is active, a list is given. Test if session is not active get an exception
@Test //(expected = RuntimeException.class) public void test_if_isSessionActive_returns_throws_exception_if_no_accounts(){ //Arrange List<Account> accountList = new LinkedList<>(); List<Account> secondList = new LinkedList<>(); Account appAccount = new Account(); AppUser validUser = new AppUser("id", "valid", "valid", "valid", "valid", "valid"); secondList.add(appAccount); when(mockUserService.isSessionActive()).thenReturn(true); when(mockUserService.getSessionUser()).thenReturn(validUser); when(mockAccountDAO.findAccountsByOwnerId(mockUserService.getSessionUser().getId())).thenReturn(secondList); //Act try{ accountList = sut.findMyAccounts(); }finally{ Assert.assertNotNull(accountList); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "boolean hasSession();", "private boolean isInSession()\n {\n return EngagementActivityManager.getInstance().getCurrentActivityAlias() != null;\n }", "int getActiveSessions();", "public int getActiveSessions();", "private Boolean isInSession(String token, String username) {\n \treturn true;\n }", "public boolean inAnySession() {\n\t\treturn getSession(player).isPresent();\n\t}", "public ArrayList<Session> getActiveSessions()\r\n\t{\r\n\t\treturn this.activeSessions;\r\n\t}", "boolean isSessionValid(Object session);", "RunningTasks getActiveHarvestingSessions() throws RepoxException;", "protected final boolean isSessionOpen() {\n return sessionTracker.getOpenSession() != null;\n }", "@Override\n public boolean isSessionAlive() {\n return sessionFactory.getCurrentSession() != null && sessionFactory.getCurrentSession().isOpen();\n }", "public abstract String getSessionList();", "public boolean isSessionValid() {\n\t\treturn stateMachine.getCurrent() instanceof SessionValid;\n\t}", "private void updateList() {\r\n\t\ttry {\r\n\t \t// Reset the list\r\n\t\t\tsipSessions.clear();\r\n\t \t\r\n\t \t// Get list of pending sessions\r\n\t \tList<IBinder> sessions = sipApi.getSessions();\r\n\t\t\tfor (IBinder session : sessions) {\r\n\t\t\t\tISipSession sipSession = ISipSession.Stub.asInterface(session);\r\n\t\t\t\tsipSessions.add(sipSession);\r\n\t\t\t}\r\n\t\t\tif (sipSessions.size() > 0){\r\n\t\t String[] items = new String[sipSessions.size()]; \r\n\t\t for (int i = 0; i < items.length; i++) {\r\n\t\t\t\t\titems[i]=sipSessions.get(i).getSessionID();\r\n\t\t }\r\n\t\t\t\tsetListAdapter(new ArrayAdapter<String>(SessionsList.this, android.R.layout.simple_list_item_1, items));\r\n\t\t\t} else {\r\n\t\t\t\tsetListAdapter(null);\r\n\t\t\t}\r\n\t\t} catch (Exception e) {\r\n\t\t\tUtils.showMessageAndExit(SessionsList.this, getString(R.string.label_session_failed));\r\n\t\t}\r\n }", "SessionStatus getStatus();", "boolean hasSessionTemplate();", "public boolean isInactive();", "boolean hasSessionId();", "boolean hasSessionId();", "boolean hasSessionId();", "boolean hasSessionId();", "boolean hasSessionId();", "boolean hasSessionId();", "public boolean CheckSession(String session) { return validSessions.containsKey(session); }", "boolean hasActive();", "public List<Session> getListSessionApprenant() {// OK\r\n\r\n\t\tif (utilisateur.getListeSessionsApprenantAccessible().isEmpty()) {\r\n\t\t\tList<Session> liste = new ArrayList<Session>();\r\n\t\t\tliste = getListeSessionsParam(\"sessionsAcc\", \"role\", \"apprenant\");\r\n\t\t\tutilisateur.setListeSessionsApprenantAccessible(liste);\r\n\t\t\treturn liste;\r\n\t\t} else {\r\n\t\t\treturn utilisateur.getListeSessionsApprenantAccessible();\r\n\t\t}\r\n\t}", "public boolean hasSession() {\n return ((bitField0_ & 0x00000002) == 0x00000002);\n }", "public boolean hasSession() {\n return ((bitField0_ & 0x00000002) == 0x00000002);\n }", "public void getTestSessions(){\n TestSessionDAO sessionsManager = DAOFactory.getTestSessionDAO();\n //populate with values from the database\n if(!sessionsManager.readInactiveTestSessions(testSessions)){\n //close the window due to read failure\n JOptionPane.showMessageDialog(rootPanel, \"Failed to read test sessions from database. Please check your internet connection and try again.\");\n System.exit(-2);\n }\n }", "public boolean isInList();", "@Override\n\tpublic boolean isInactive();", "public List<String> getSessionList(){\r\n \t\r\n \tList<String> sessionIds = new ArrayList<String>();\r\n \tfor (Entry<String, AccessDetailVO> curPage : pageAccess.entrySet()) {\r\n \t\tAccessDetailVO currLock = curPage.getValue();\r\n \t\tif(!sessionIds.contains(currLock.getSessionId())){\r\n \t\t\tsessionIds.add(currLock.getSessionId());\r\n \t\t}\t\r\n \t}\r\n \t\r\n \treturn sessionIds;\r\n }", "boolean hasUserList();", "public boolean isActive(){\n return (registeredParticipants.size() == connections().size());\n }", "public List<User> getActiveUsers(boolean active);", "@Test\n\tpublic void testIsSession() {\n\t\t\n\t\tclub.CreerSession();\n\t\tassertNotNull(\"Aucune session n'a été pas créée\", club.getSession());\n\t\t\n\t}", "boolean isSetSessionID();", "@Test\r\n void checkSession() {\n }", "public boolean getActive();", "public boolean getActive();", "public boolean isSession() {\n\t\treturn config.getBoolean(QuestConfigurationField.SESSION.getKey(), \n\t\t\t\t(boolean) QuestConfigurationField.SESSION.getDefault());\n\t}", "@Test\n public void testsetPlayerList() {\n ArrayList<Player> players = new ArrayList<>();\n // Make 2 players.\n Player lars = new Player(\"127.0.0.1\", \"Lars\");\n Player remco = new Player(\"127.0.1.1\", \"Remco\");\n // Add the 2 players to the list.\n players.add(lars);\n players.add(remco);\n // Now set the player list to the session.\n session.setPlayerList(players);\n // Check if the list has a size of 2.\n assertEquals(2, session.getPlayers().size());\n }", "java.util.List<com.mwr.jdiesel.api.Protobuf.Message.Session> \n getSessionsList();", "boolean hasServiceList();", "@Override\n public boolean isValid() {\n return (connection != null && session != null && session.isOpen());\n }", "@Override\n\tpublic boolean loginService(List<Object> paraments) {\n\t\t\n\t\t\n\t\tboolean flag = false;\n\t\t\n\t\tString sql = \"select * from user where user_id=? and password=?\";\n\t\ttry{\n\t\t\t\n\t\t\tmJdbcUtil.getConnetion();\n\t\t\tMap<String,Object> map= mJdbcUtil.findSimpleResult(sql, paraments);\n\t\t\tflag = map.isEmpty()?false:true;\n\t\t\tSystem.out.println(\"-flag-->>\" + flag);\n\t\t\t\n\t\t}catch(Exception e){\n\t\t\te.printStackTrace();\n\t\t}finally{\n\t\t\tmJdbcUtil.releaseConn();\n\t\t}\n\t\t\n\t\t\n\t\treturn flag;\n\t}", "@RequestMapping(value = \"/active\", method = RequestMethod.GET)\r\n\tpublic static ClearList getActiveList() {\r\n\t\tClearList clist = new ClearList();\r\n\t\tArrayList<ClearList> lists = new ArrayList<>();\r\n\t\tlists.addAll(ClearListController.getAllClearlists());\r\n\t\tfor (ClearList list:lists) {\r\n\t\t\tif(list.isActive() == true) {\r\n\t\t\t\tclist = list;\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn clist;\r\n\t}", "@Test\n public void testGetTasksForSession() {\n\n List<Task> tasks;\n\n tasks = Session.getTasks(Session.NAME.PRE, 1);\n\n assertNotNull(tasks);\n assertTrue(\"Pre should have two tasks.\", tasks.size() == 2);\n assertEquals(\"Unique name for the task should be DASS_21\", \"DASS21_AS\", tasks.get(0).getName());\n assertEquals(\"First task should be named Status Questionnaire\", \"Status Questionnaire\", tasks.get(0).getDisplayName());\n assertEquals(\"First task should point to the DASS21 questionniare\", Task.TYPE.questions, tasks.get(0).getType());\n assertEquals(\"First task should point to the DASS21 questionniare\",\"questions/DASS21_AS\", tasks.get(0).getRequestMapping());\n assertTrue(\"First task should be completed\",tasks.get(0).isComplete());\n assertFalse(\"First task should not be current\",tasks.get(0).isCurrent());\n assertFalse(\"Second task should not be completed\",tasks.get(1).isComplete());\n assertTrue(\"Second task should be current\",tasks.get(1).isCurrent());\n\n Session s = new Session();\n s.setTasks(tasks);\n assertEquals(\"Second task is returned when current requested\", tasks.get(1), s.getCurrentTask());\n\n }", "public boolean checkActive() {\n\t\treturn active;\n\t}", "public boolean canLogin(Session session);", "boolean hasList();", "boolean isActive();", "boolean isActive();", "boolean isActive();", "public static void setSessions(ArrayList<Session> _sessions) {\r\n\t\tsessions = _sessions;\r\n\t}", "public Session[] findSessions();", "public Long get_activelist() throws Exception {\n\t\treturn this.activelist;\n\t}", "public SessionManager ()\r\n\t{\r\n\t\tactiveSessions = new ArrayList<Session>();\r\n\t}", "private boolean isSessionLost( )\n {\n return _listFormColumn == null || _listFormFilterDisplay == null || _listFormColumnDisplay == null || _listFormPanelDisplay == null\n || _formPanelDisplayActive == null;\n }", "private boolean isSessionAuthenticated(Session userSession) {\n\t\treturn accountIdsByUserSession.containsKey(userSession);\n\t}", "public static boolean estaVacia(ArrayList lista){\n if(lista.isEmpty()){\n System.out.println(\"No hay usuarios u objetos registrados por el momento\");\n return true;\n }\n else{\n return false;\n }\n }", "private boolean read() {\r\n\t\tboolean rtn = false;\r\n\t\ttry {\r\n\t\t\tif (_data.has(QueryBuilder.DATA_ORDERBY)) {\r\n\t\t\t\t\r\n\t\t\t}\r\n\t\t\tJSONArray sessionlist = SessionMgr.getSessionsAsJSON();\r\n\t\t\t_jwriter.writePair(\"data\", sessionlist);\r\n\t\t\trtn = true;\r\n\t\t} catch (Exception e) {\r\n\t\t\tsetError(e);\r\n\t\t}\r\n\t\treturn rtn;\r\n\t}", "int isActive();", "Session begin();", "public abstract I_SessionInfo[] getSessions();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "public boolean isActive();", "@Override\r\n\tpublic List<ServicesDto> list() {\r\n\t\treturn sessionFactory.getCurrentSession().createQuery(\"FROM ServicesDto WHERE active = TRUE\").list();\r\n}", "@Test\n public void getNotExistingSession() throws Exception {\n addDevice();\n assertEquals(\"Session should be created\", snmpSession, snmpController.getSession(device.deviceId()));\n assertEquals(\"Map should contain session\", 1, snmpController.snmpDeviceMap.size());\n assertEquals(\"Session should be fetched from map\", snmpSession, snmpController.getSession(device.deviceId()));\n }", "Session getCurrentSession();", "Session getCurrentSession();", "public boolean startSession() {\n boolean success = true;\n if (sc == null) {\n sc = new Scanner(System.in);\n }\n if (sqlMngr == null) {\n sqlMngr = SQLController.getInstance();\n }\n try {\n success = sqlMngr.connect(this.getCredentials());\n } catch (ClassNotFoundException e) {\n success = false;\n System.err.println(\"Establishing connection triggered an exception!\");\n e.printStackTrace();\n sc = null;\n sqlMngr = null;\n }\n return success;\n }", "@Test\n\tpublic void testIsActive() {\n\t\tresetTestVars();\n\t\tuser1.setID(\"1\");\n\t\tuser2.setID(\"2\");\n\t\tsn.addUser(user1);\n\t\tsn.addUser(user2);\n\t\t\n\t\ttry {\n\t\t\tsn.isActive(null, null, null, null);\n\t\t} catch (NullPointerException np) {\n\t\t\tSystem.out.println(\"EXPECTED(4/4): Null arguments\");\n\t\t} catch (UninitializedObjectException uo) {\n\t\t\tSystem.out.println(\"UNEXPECTED: shouldnt be thrown\");\n\t\t}\n\t\t\n\t\ttry {\n\t\t\tassertFalse(\"No such link exists\", sn.isActive(\"1\", \"2\", early, status));\n\t\t\tsn.establishLink(\"1\", \"2\", early, status);\n\t\t\tassertTrue(\"Link is valid and active on date\", sn.isActive(\"1\", \"2\", early, status));\n\t\t\tsn.tearDownLink(\"1\", \"2\", mid, status);\n\t\t\tassertFalse(\"Link is inactive on date\", sn.isActive(\"1\", \"2\", late, status));\n\t\t} catch (UninitializedObjectException e) {\n\t\t\tSystem.out.println(\"UNEXPECTED: shouldnt be thrown\");\n\t\t}\n\t}", "Boolean isCurrentListDoneList();", "private void checkSessionState() {\n // get logged in mUser\n mUser = getStoredUser();\n // check if valid\n mIsLoggedIn = (mUser != null && mUser.getId() != null);\n }", "public List getAllSessionList(){\n \tList l=null;\n try {\n Criteria crit=new Criteria();\n l=LecturePeer.doSelect(crit);\n } catch(Exception e) { ServerLog.log(\"Exception in Lecture select \"+e.getMessage());}\n \treturn l;\n }", "public boolean isActive() {\n return !isSuspended() && !isExpired();\n }", "public void testIsLive() {\n boolean result = true;\n \n sessionControl.expectAndReturn(session.isLive(), result);\n sessionControl.replay();\n sfControl.replay();\n \n assertEquals(jt.isLive(), result);\n }", "public SessionList() { \n sessions = ExpiringMap.builder().variableExpiration().build();\n }", "public Boolean isActive();", "public boolean isActive() {\n/* 165 */ DatagramChannel ch = javaChannel();\n/* 166 */ return (ch.isOpen() && ((((Boolean)this.config\n/* 167 */ .getOption(ChannelOption.DATAGRAM_CHANNEL_ACTIVE_ON_REGISTRATION)).booleanValue() && isRegistered()) || ch\n/* 168 */ .socket().isBound()));\n/* */ }", "public boolean setupStartSession() { \n\t\tthis.showNamedMessage(\"Initiating session with server...\");\n\t\ttry {\n\t\t\twhile (!this.requestSession()) {\n\t\t\t\ttextUI.getBoolean(\"Try again?\");\n\t\t\t}\n\t\t} catch (IOException | PacketException | UtilDatagramException e) {\n\t\t\ttextUI.showError(\"Something went wrong while starting the session: \" \n\t\t\t\t\t+ e.getLocalizedMessage());\n\t\t}\n\t\t\n\t\treturn this.sessionActive;\n\t}", "@Test\r\n public void testInitSession() {\r\n System.out.println(\"initSession\");\r\n assertNotNull(sm);\r\n \r\n boolean result = sm.initSession(\"test1\", programsHome, programsHome + \"files1/\", requester);\r\n assertFalse(result);\r\n \r\n result = sm.initSession(\"test2\", programsHome, programsHome + \"files2/\", requester);\r\n assertFalse(result);\r\n \r\n result = sm.initSession(\"test3\", programsHome, programsHome + \"files3/\", requester);\r\n assertFalse(result);\r\n \r\n result = sm.initSession(\"test4\", programsHome, programsHome + \"files4/\", requester);\r\n assertTrue(result);\r\n \r\n sm.removeSession(\"test4\");\r\n }", "public static boolean isActive(Transaction tx)\n {\n if (tx == null) return false;\n int status;\n try\n {\n status = tx.getStatus();\n return status == Status.STATUS_ACTIVE;\n }\n catch (SystemException e)\n {\n return false;\n }\n }", "@Override\n public boolean enforceAccessWindowsForActiveSessions() throws GuacamoleException {\n return getProperty(\n MySQLGuacamoleProperties.MYSQL_ENFORCE_ACCESS_WINDOWS_FOR_ACTIVE_SESSIONS,\n true);\n }", "List<Session> getAllSessions();", "boolean hasClientSessionID();", "public boolean exerciseInSession(String exercise){\n\t\t\tboolean inSide = false;\n\t\t\ttry {\n\t\t\t\tClass.forName(\"com.mysql.jdbc.Driver\");\n\t\t\t\tConnection con = DriverManager.getConnection(DB_URL, USER, PASS);\n\t\t\t\tPreparedStatement statement = (PreparedStatement) con.prepareStatement(\"SELECT name FROM EXECUTEDEXERCISE WHERE name = ?\");\n\t\t\t\tstatement.setString(1, exercise);\n\t\t\t\tResultSet result = statement.executeQuery();\n\t\t\t\tif(result.first()){\n\t\t\t\t\tinSide = true;\n\t\t\t\t\tSystem.out.println(\"In session\");\n\t\t\t\t}\n\t\t\t\telse{\n\t\t\t\t\tSystem.out.println(\"Not in session\");\n\t\t\t\t}\n\t\t\t\tcon.close();\n\t\t\t} catch (Exception e) {\n\t\t\t\t// TODO Auto-generated catch block\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\treturn inSide;\n\t\t}" ]
[ "0.6545741", "0.6242562", "0.6226486", "0.6036144", "0.59427613", "0.5910864", "0.590964", "0.5860631", "0.58316046", "0.58164907", "0.5789449", "0.5700559", "0.568391", "0.56228006", "0.5615661", "0.5584403", "0.55455303", "0.554139", "0.554139", "0.554139", "0.554139", "0.554139", "0.554139", "0.55337936", "0.55208796", "0.5496158", "0.547343", "0.54504305", "0.54460233", "0.5438773", "0.5430688", "0.5407337", "0.5399538", "0.5384028", "0.5378565", "0.5360869", "0.5347233", "0.53304315", "0.53126353", "0.53126353", "0.5296169", "0.52785075", "0.52636814", "0.52601177", "0.5253095", "0.52506185", "0.5246984", "0.5239982", "0.52395576", "0.5238464", "0.5231657", "0.5230446", "0.5230446", "0.5230446", "0.5229601", "0.5223689", "0.52228314", "0.520293", "0.51955146", "0.5192045", "0.51863265", "0.51672935", "0.5163086", "0.51566786", "0.5154845", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.51495516", "0.5135842", "0.51344", "0.51166743", "0.51166743", "0.5110519", "0.51050216", "0.51039076", "0.50999004", "0.50993234", "0.50919884", "0.5082276", "0.50752467", "0.50705385", "0.50618714", "0.50480235", "0.5046994", "0.5045925", "0.50291604", "0.50219357", "0.50193715", "0.5003534" ]
0.0
-1
Test createNewAccount Test Throws InvalidRequest if account is not valid
@Ignore @Test (expected = InvalidRequestException.class) public void test_if_isSessionActive_returnsFalse_throw_InvalidRequestException(){ //Arrange List accountList = new LinkedList(); AppUser validUser = new AppUser("id", "valid", "valid", "valid", "valid", "valid"); Account dummyAccount = new Account(); when(mockUserService.isSessionActive()).thenReturn(true); when(mockUserService.getSessionUser()).thenReturn(validUser); //Act try{ sut.createNewAccount(dummyAccount); }finally{ verify(mockAccountDAO, times(0)).save(dummyAccount); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Account create();", "@Test\n\tpublic void addAccountTestSuccess() {\n\t\tAccount account = new Account();\n\t\taccount.setName(\"Vikas\");\n\t\taccount.setAmount(2000);\n\t\tString requestBody = gson.toJson(account);\n\n\t\tRequestSpecification request = RestAssured.given();\n\t\trequest.body(requestBody);\n\t\tResponse response = request.post(\"/account\");\n\t\tAssertions.assertNotNull(response.asString());\n\t}", "@Test\n public void createDuplicateAccount() {\n final String username1 = \"[email protected]\";\n final String username2 = \"[email protected]\";\n final String username3 = \"[email protected]\";\n final String firstname = \"william\";\n final String lastname = \"shakespeare\";\n final String address = \"@iaeste.org\";\n\n final CreateUserRequest request1 = new CreateUserRequest(username1, firstname, lastname);\n final CreateUserResponse response1 = administration.createUser(token, request1);\n assertThat(response1, is(not(nullValue())));\n assertThat(response1.isOk(), is(true));\n assertThat(response1.getUser(), is(not(nullValue())));\n assertThat(response1.getUser().getAlias(), is(firstname + '.' + lastname + address));\n\n final CreateUserRequest request2 = new CreateUserRequest(username2, firstname, lastname);\n final CreateUserResponse response2 = administration.createUser(token, request2);\n assertThat(response2, is(not(nullValue())));\n assertThat(response2.isOk(), is(true));\n assertThat(response2.getUser(), is(not(nullValue())));\n assertThat(response2.getUser().getAlias(), is(firstname + '.' + lastname + 2 + address));\n\n final CreateUserRequest request3 = new CreateUserRequest(username3, firstname, lastname);\n final CreateUserResponse response3 = administration.createUser(token, request3);\n assertThat(response3, is(not(nullValue())));\n assertThat(response3.isOk(), is(true));\n assertThat(response3.getUser(), is(not(nullValue())));\n assertThat(response3.getUser().getAlias(), is(firstname + '.' + lastname + 3 + address));\n }", "int createAccount(Account account);", "public void createUserAccount(UserAccount account);", "public void testMissingOrInvalidAccount() throws Exception {\n\n client = new PaysafeApiClient(merchantApiKey, merchantApiPassword, Environment.TEST);\n\n try {\n SingleUseToken sObjResponse = client.customerVaultService().createSingleUseToken(\n SingleUseToken.builder()\n .card()\n .holderName(\"Mr. John Smith\")\n .cardNum(\"4917480000000008\")\n .cardExpiry()\n .month(7)\n .year(2019)\n .done()\n .billingAddress()\n .street(\"100 Queen Street West\")\n .street2(\"Unit 201\")\n .city(\"Toronto\")\n .country(\"CA\")\n .state(\"ON\")\n .zip(\"M5H 2N2\")\n .done()\n .done()\n .build());\n\n } catch (IOException ioExp) {\n // Log IO Exception\n if(Constants.DEBUG_LOG_VALUE)\n Utils.debugLog(\"EXCEPTION TEST: \" + ioExp.getMessage());\n } catch (PaysafeException oExp) {\n // Log Paysafe Exception\n Utils.debugLog(\"EXCEPTION TEST: Missing or Invalid Account: \" + oExp.getMessage());\n Assert.assertNotNull(\"Missing or Invalid Account.\", oExp.getMessage());\n } catch (Exception e) {\n // Log Exception\n if(Constants.DEBUG_LOG_VALUE)\n Utils.debugLog(\"EXCEPTION TEST: \" + e.getMessage());\n }\n }", "@Test\n @Order(4)\n void create_account_2() {\n Account empty = service.createAccount(client.getId());\n Assertions.assertEquals(client.getId(), empty.getClientId());\n Assertions.assertNotEquals(-1, empty.getId());\n Assertions.assertEquals(0, empty.getAmount());\n client.addAccount(empty);\n }", "@Test\n\tpublic void test_Create_Account() throws DatabaseException, BadParameterException, NotFoundException, CreationException {\n\t\ttry (MockedStatic<ConnectionUtil> mockedConnectionUtil = mockStatic(ConnectionUtil.class)) {\n\t\t\tmockedConnectionUtil.when(ConnectionUtil::connectToDB).thenReturn(mockConn);\n\t\t\t\n\t\t\tAccount actual = accountService.createAccount(\"1\", new AccountDTO(10101010, 100.50, \"Savings\"));\n\t\t\t\n\t\t\tAccount expected = new Account(\"Savings\", 10101010, 100.50);\n\t\t\t\n\t\t\tassertEquals(expected, actual);\n\t\t}\n\t}", "@Test\n\tpublic void createAccount() {\t\n\t\t\n\t\tRediffOR.setCreateAccoutLinkClick();\n\t\tRediffOR.getFullNameTextField().sendKeys(\"Kim Smith\");\n\t\tRediffOR.getEmailIDTextField().sendKeys(\"Kim Smith\");\n\t\t\t\t\t\n\t\t\n\t}", "private void createNewAccount() {\n\n // if user has not provided valid data, do not create an account and return from method\n if (!validateData()) {\n return;\n }\n\n // If flag value is false, that means email provided by user doesn't exists in database\n // so initialize the loader to create a new account\n if (!mEmailExistsFlag) {\n getLoaderManager().initLoader(CREATE_NEW_ACCOUNT_LOADER_ID, null, this);\n } else {\n // If flag is true, that means email provided by user already exists in database\n // so restart the loader and allow user to enter new email address for account\n getLoaderManager().restartLoader(CREATE_NEW_ACCOUNT_LOADER_ID, null, this);\n }\n\n }", "public abstract void createAccount(JSONObject account);", "public void createAccount() {\n System.out.println(\"Would you like to create a savings or checking account?\");\n String AccountRequest = input.next().toLowerCase().trim();\n createAccount(AccountRequest);\n\n }", "@Test\n\tpublic void testCreateAdminAccountWithTakenUsername() {\n\n\t\tString error = null;\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.createAdminAccount(USERNAME1, PASSWORD1, NAME1);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"This username is not available.\", error);\n\t}", "@Test\n\tpublic void testCreateAdminAccountSuccessfully() {\n\t\tassertEquals(2, adminAccountService.getAllAdminAccounts().size());\n\n\t\tString username = \"newUsername\";\n\t\tAdminAccount user = null;\n\t\ttry {\n\t\t\tuser = adminAccountService.createAdminAccount(username, PASSWORD1, NAME1);\n\t\t} catch (InvalidInputException e) {\n\t\t\tfail();\n\t\t}\n\t\tassertNotNull(user);\n\t\tassertEquals(username, user.getUsername());\n\t\tassertEquals(PASSWORD1, user.getPassword());\n\t\tassertEquals(NAME1, user.getName());\n\t}", "@POST\r\n @Path(\"/create\")\r\n @Consumes(MediaType.APPLICATION_FORM_URLENCODED)\r\n @Produces(MediaType.APPLICATION_JSON)\r\n public NewAccount createNewCustomerAccount(@FormParam(\"accountNumber\") int accountNumber,\r\n @FormParam(\"accountType\") String accountType,\r\n @FormParam(\"accountBalance\") double accountBalance\r\n ){\r\n return newaccountservice.createNewAccount(accountNumber, accountType, accountBalance);\r\n }", "Account create(Context context);", "public void createAccount() {\n\t\tSystem.out.print(\"Enter Name: \");\n\t\tString name = nameCheck(sc.next());\n\t\tSystem.out.print(\"Enter Mobile No.: \");\n\t\tlong mobNo = mobCheck(sc.nextLong());\n\t\tlong accNo = mobNo - 1234;\n\t\tSystem.out.print(\"Enter Balance: \"); \n\t\tfloat balance = amountCheck(sc.nextFloat());\n\t\tuserBean BeanObjCreateAccountObj = new userBean(accNo, name, mobNo, balance);\n\t\tSystem.out.println(\"Account created with Account Number: \" +accNo);\n\t\tServiceObj.bankAccountCreate(BeanObjCreateAccountObj);\n\t\t\n\t\n\t}", "@Test\n\tvoid testCreateAccount() {\n\t\t\n\t\t// Data Object for unregister user\n\t\tUser user = new User(\"Create AccountExample\", \"CreateAccount\", \"[email protected]\");\n\t\t\n\t\t// Prepare data\n\t\tUserDAO dao = new UserDAO();\n\t\tboolean exist = false;\n\t\t\n\t\ttry {\n\t\t\t// Creating User in DB\n\t\t\tdao.createAccount(user, \"CreateAccountPassword\");\n\t\t\t\n\t\t\t// Boolean confirming if exist\n\t\t\texist = !dao.availabilityUsername(user.getUsername());\n\t\t\t\n\t\t\t// Deleting account\n\t\t\tdao.deleteAccount(user.getUsername());\n\t\t\t\n\t\t} catch (ClassNotFoundException | UnsupportedEncodingException | SQLException | GeneralSecurityException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t\t\n\t\t// Asserting that the create account works\n\t\tassertTrue(exist);\n\t}", "private void createAccount()\n {\n // check for blank or invalid inputs\n if (Utils.isEmpty(edtFullName))\n {\n edtFullName.setError(\"Please enter your full name.\");\n return;\n }\n\n if (Utils.isEmpty(edtEmail) || !Utils.isValidEmail(edtEmail.getText().toString()))\n {\n edtEmail.setError(\"Please enter a valid email.\");\n return;\n }\n\n if (Utils.isEmpty(edtPassword))\n {\n edtPassword.setError(\"Please enter a valid password.\");\n return;\n }\n\n // check for existing user\n AppDataBase database = AppDataBase.getAppDataBase(this);\n User user = database.userDao().findByEmail(edtEmail.getText().toString());\n\n if (user != null)\n {\n edtEmail.setError(\"Email already registered.\");\n return;\n }\n\n user = new User();\n user.setId(database.userDao().findMaxId() + 1);\n user.setFullName(edtFullName.getText().toString());\n user.setEmail(edtEmail.getText().toString());\n user.setPassword(edtPassword.getText().toString());\n\n database.userDao().insert(user);\n\n Intent intent = new Intent(this, LoginActivity.class);\n intent.putExtra(\"user\", user);\n startActivity(intent);\n }", "private void validateCreateAccountRequest(CreateUserAccountRequest request) {\n if (isNullOrEmpty(request.getOwnerUsername())\n || isNullOrEmpty(request.getOwnerEmail())\n || isNull(request.getOwnerAge())) {\n throw new CommonBadRequestException(msgSource.ERR001); //err001=Dane wymagane do realizacji żądania są niekompletne.\n }\n if (isIncorrectEmail(request.getOwnerEmail())) {\n throw new CommonBadRequestException(msgSource.ERR002); //Podaj poprawny adres e-mail.\n }\n if (isIncorrectAge(request.getOwnerAge())) {\n throw new CommonBadRequestException(msgSource.ERR003); //Wiek powinien mieścić się w zakresie od 1 do 100.\n }\n }", "@Test\n\tpublic void createAccTest() {\n\t\tCustomer cus = new Customer(\"wgl\", myDate, \"Beijing\");\n\t\tbc.createAccount(cus, 1);\n\t\tassertEquals(1, cus.getAccList().size());\n\t}", "@Test\n public void testAddAccount() {\n Assert.assertEquals(\"Initial size of reporter list is incorrect\", 1,\n theModel.getAccountList().size());\n try {\n theModel.addAccountInfo(new Account(1, \"[email protected]\", \"mbills2\", Credential.MANAGER));\n theModel.addAccountInfo(new Account(2, \"madie\", \"madie\", Credential.USER));\n theModel.addAccountInfo(new Account(3, \"sbills3\", \"sbills3\", Credential.ADMIN));\n } catch (Exception e) {\n e.printStackTrace();\n Assert.fail(\"Should not have thrown exception here\");\n }\n Assert.assertEquals(\"Total account list size wrong after adding\", 4,\n theModel.getAccountList().size());\n }", "@Test\n public void testCreateUserWithExistingUsername() {\n final String username = \"[email protected]\";\n final CreateUserRequest request1 = new CreateUserRequest(username, \"Michael\", \"Pickelbauer\");\n final CreateUserRequest request2 = new CreateUserRequest(username, \"Hugo\", \"Mayer\");\n\n // Now let's create the two user accounts\n final CreateUserResponse response1 = administration.createUser(token, request1);\n final CreateUserResponse response2 = administration.createUser(token, request2);\n\n // The first request should work like a charm\n assertThat(response1, is(not(nullValue())));\n assertThat(response1.isOk(), is(true));\n\n // The second request should fail, as we already have a user with this\n // username in the system\n assertThat(response2, is(not(nullValue())));\n assertThat(response2.isOk(), is(false));\n assertThat(response2.getError(), is(IWSErrors.USER_ACCOUNT_EXISTS));\n assertThat(response2.getMessage(), is(\"An account for the user with username \" + username + \" already exists.\"));\n }", "@Test\n\tpublic void createAccountSavingTest() {\n\t\tsetChequingRadioDefaultOff();\n\t\trdbtnSaving.setSelected(true);\n\t\tdata.setRdbtnSaving(rdbtnSaving);\n\t\tAccount account = data.createNewAccount();\n\t\taccountTest = new Account(TEST_ACCOUNT_NAME, bankTest,\n\t\t\t\tAccount.Types.SAVING.getAccountType());\n\t\tassertEquals(accountTest, account);\n\t}", "@Test\n public void testCreateAccountWithoutPassword() {\n final CreateUserRequest createUserRequest = new CreateUserRequest();\n createUserRequest.setUsername(\"[email protected]\");\n createUserRequest.setFirstname(\"Beta\");\n createUserRequest.setLastname(\"Gamma\");\n\n // Now, perform the actual test - create the Account, and verify that\n // the response is ok, and that a Notification was sent\n final Response result = administration.createUser(token, createUserRequest);\n assertThat(result.isOk(), is(true));\n // Creating a new User should generate an Activate User notification\n final NotificationType type = NotificationType.ACTIVATE_NEW_USER;\n assertThat(spy.size(type), is(1));\n final String activationCode = spy.getNext(type).getFields().get(NotificationField.CODE);\n assertThat(activationCode, is(not(nullValue())));\n\n // Check that the user is in the list of members\n final String memberGroupId = findMemberGroup(token).getGroupId();\n token.setGroupId(memberGroupId);\n final FetchGroupRequest groupRequest = new FetchGroupRequest(memberGroupId);\n final FetchGroupResponse groupResponse = administration.fetchGroup(token, groupRequest);\n assertThat(groupResponse, is(not(nullValue())));\n }", "@Test\n public void testGiveAccount() {\n System.out.println(\"giveAccount\");\n String name = \"Gert Hansen\";\n String address = \"Grønnegade 12\";\n String phone = \"98352010\";\n CustomerCtr instance = new CustomerCtr();\n int customerID = instance.createCustomer(name, address, phone);\n String type = \"Visa\";\n int regNo = 39292492;\n int cardNo = 457153253;\n instance.giveAccount(customerID, type, regNo, cardNo);\n Account result = instance.getCustomer(customerID).getAccount();\n assertNotNull(result);\n assertEquals(\"Visa\", result.getType());\n assertEquals(39292492, result.getRegNr());\n assertEquals(457153253, result.getCardNr());\n // TODO review the generated test code and remove the default call to fail.\n// fail(\"The test case is a prototype.\");\n }", "void createCustomerAccount(String mobileNumber) throws Exception;", "public abstract void createAccount(final GDataAccount account)\n throws ServiceException;", "@Test\r\n\tpublic void testValidationSuccess() {\r\n\t\tAccountTransferRequest accountTransferRequest = new AccountTransferRequest();\r\n\t\taccountTransferRequest.setUsername(VALID_USERNAME);\r\n\t\taccountTransferRequest.setPassword(VALID_PASSWORD);\r\n\t\taccountTransferRequest.setSenderAccount(VALID_SENDER_ACCOUNT_NUMBER);\r\n\t\taccountTransferRequest.setReceiverAccount(VALID_RECEIVER_ACCOUNT_NUMBER);\r\n\t\taccountTransferRequest.setTransferAmount(400.0);\t\t\r\n\t\ttry {\r\n\t\t\ttransferValidationUnit.validate(accountTransferRequest);\r\n\t\t} catch (ValidationException e) {\r\n\t\t\tAssert.fail(\"Found_Exception\");\r\n\t\t}\r\n\t}", "@Test\n\tpublic void testCreateAdminAccountWithEmptyName() {\n\t\tString name = \"\";\n\t\tString username = \"Catherine\";\n\t\tString error = null;\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.createAdminAccount(username, PASSWORD1, name);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"Name cannot be empty.\", error);\n\t}", "UserAccount createUserAccount(User user, double amount);", "@Test\n public void testValidateDuplicateAccountsDifferentAccount() {\n // Same account\n Long accountId = 123l;\n BankAccount bankAccountRequest = new BankAccountImpl();\n bankAccountRequest.setAccountId(accountId);\n Locale locale = Locale.getDefault();\n ErrorMessageResponse errorMessageResponse = new ErrorMessageResponse();\n List<BankAccount> bankAccountList = new ArrayList<>();\n\n // ACCOUNT HELD BY DIFFERENT CUSTOMER\n BankAccount bankAccount = new BankAccountImpl();\n bankAccount.setAccountId(accountId);\n bankAccount.setActivatedDate(new Date());\n bankAccountList.add(bankAccount);\n\n // Older activation means it will not be first in the list\n bankAccount = new BankAccountImpl();\n bankAccount.setAccountId(12345l);\n bankAccount.setActivatedDate(new Date(new Date().getTime() - 1000));\n bankAccountList.add(bankAccount);\n\n BankHelper\n .validateDuplicateAccounts(bankAccountRequest, locale, errorMessageResponse, bankAccountList, account);\n assertTrue(errorMessageResponse.hasErrors());\n }", "@Test\n public void testInvalidInput() {\n LocalUserManager ua = new LocalUserManager();\n try {\n ua.createUser(\"gburdell1\", \"buzz\", \"[email protected]\", \"George\", \"Burdell\", \"SUPERHUMAN\");\n } catch (Exception e) {\n Assert.assertEquals(0, ua.getUsers().size());\n return;\n }\n Assert.fail();\n }", "@POST\n @Consumes(MediaType.APPLICATION_JSON)\n @Produces(MediaType.TEXT_PLAIN)\n public Response createAccount(\n AccountModel input, @Context HttpServletResponse response) {\n if (input.getEmail() == null || input.getEmail().equals(\"\") || input.getPassword() == null || input.getPassword().isEmpty()\n || input.getUserName() == null || input.getUserName().isEmpty()) {\n return Response.status(Response.Status.BAD_REQUEST).build();\n }\n Customer customer = new Customer();\n customer.setEmail(input.getEmail());\n customer.setPassword(input.getPassword());\n customer.setUserName(input.getUserName());\n String sendToken = TokenUtil.getToken(input.getEmail(), input.getPassword());\n customer.setToken(sendToken);\n Long id = customerRef.save(customer);\n if (id != null || id > 0) {\n response.setHeader(\"AuthHeader\", sendToken);\n return Response.status(Response.Status.CREATED).build();\n }\n return Response.status(Response.Status.NOT_IMPLEMENTED).build();\n\n }", "@Test\n\tpublic void createNewAccountWithOpeningBalanceSavingTest() {\n\t\tcreateAccountSavingTest();\n\t\tcreateNewAccountWithOpeningBalanceHelper();\n\t}", "@Test(expected=MalException.class)\n\tpublic void testSaveWithoutCustomersAccount() throws MalBusinessException{\n\t \n\t\tsetUpDriverForAdd();\n\t\texternalAccount = new ExternalAccount();\n\t\tdriver = driverService.saveOrUpdateDriver(externalAccount, driverGrade, driver, generateAddresses(driver, 1), generatePhoneNumbers(driver, 1), userName, null);\n\t}", "@Test\n public void testValidateDuplicateAccounts() {\n // Same account\n Long accountId = 123l;\n BankAccount bankAccountRequest = new BankAccountImpl();\n bankAccountRequest.setAccountId(accountId);\n Locale locale = Locale.getDefault();\n ErrorMessageResponse errorMessageResponse = new ErrorMessageResponse();\n List<BankAccount> bankAccountList = new ArrayList<>();\n // EMPTY LIST no duplicate accounts held\n BankHelper\n .validateDuplicateAccounts(bankAccountRequest, locale, errorMessageResponse, bankAccountList, account);\n assertFalse(errorMessageResponse.hasErrors());\n\n // ACCOUNT ONLY HELD BY CUSTOMER\n BankAccount bankAccount = new BankAccountImpl();\n bankAccount.setAccountId(accountId);\n bankAccount.setActivatedDate(new Date(new Date().getTime() - 1000));\n bankAccountList.add(bankAccount);\n\n bankAccount = new BankAccountImpl();\n bankAccount.setAccountId(accountId);\n bankAccount.setActivatedDate(new Date());\n bankAccountList.add(bankAccount);\n\n BankHelper\n .validateDuplicateAccounts(bankAccountRequest, locale, errorMessageResponse, bankAccountList, account);\n assertFalse(errorMessageResponse.hasErrors());\n\n }", "@Test\n\tpublic void test_create_new_user_success(){\n\t\tUser user = new User(null, \"create_user\", \"[email protected]\", \"12345678\");\n\t\tResponseEntity<User> response = template.postForEntity(REST_SERVICE_URI + ACCESS_TOKEN + token, user, User.class);\n\t\tUser newUser = response.getBody();\n\t\tassertThat(newUser.getName(), is(\"create_user\"));\n\t\tassertThat(response.getStatusCode(), is(HttpStatus.CREATED));\n\t\tvalidateCORSHttpHeaders(response.getHeaders());\n\t}", "@Test\n public void createNewUserByExternalTokenAndCheckIt() throws Exception {\n UserLogin userLogin = new UserLogin();\n userLogin.setUserToken(UUID.randomUUID().toString());\n boolean isThrow = false;\n try {\n UserResponse userResponse = loginsService.checkLoginSignInSignUp(userLogin, \"SignUp\");\n } catch (ApplicationException e) {\n isThrow = true;\n }\n assertThat(isThrow);\n\n //Add login and expect new user successful registration\n userLogin.setUserLogin(\"[email protected]\");\n UserResponse userResponse = loginsService.checkLoginSignInSignUp(userLogin, \"SignUp\");\n assertThat(userResponse.getUserMail().equals(userLogin.getUserLogin()));\n assertThat(userResponse.getUserPoints()).size().isEqualTo(5);\n }", "@Test\n\tpublic void getAccountTestSuccess() {\n\n\t\tString accountNumber = createAccount(\"viaks\",1000);\n\t\tMap<String, String> parametersMap = new HashMap<>();\n\t\tparametersMap.put(\"accountNumber\", accountNumber);\n\n\t\tRestAssured.given().when().parameters(parametersMap).get(\"/account\").then().assertThat().statusCode(200);\n\t}", "@Test\n\tpublic void moneyTrnasferExcetionAccountNumberWrong() {\n\t\t\n\t\tint accountNumberNotExist = 1820;\n\t\tString accountNumberTo = createAccount(\"ram\",2000);\n\t\tdouble amountToBeTranfered = 40000.0;\n\t\tMoneyTransfer moneyTransfer = new MoneyTransfer();\n\t\tmoneyTransfer.setAccountNumberFrom(accountNumberNotExist);\n\t\tmoneyTransfer.setAccountNumberTo(Integer.parseInt(accountNumberTo));\n\t\tmoneyTransfer.setAmount(amountToBeTranfered);\n\t\t\n\t\tString requestBody = gson.toJson(moneyTransfer);\n\t\t\n\t\tRequestSpecification request = RestAssured.given();\n\t\trequest.body(requestBody);\n\t\tResponse response = request.put(\"/transfer\");\n\t\t\n\t\t// This logic is required due to response has been set as mix of Message and return data value. - START\n\t\tStringBuilder sb = new StringBuilder();\n\t\tsb.append(\"Account not found with Account Number : \");\n\t\tsb.append(accountNumberNotExist);\n\t\t// This logic is required due to response has been set as mix of Message and return data value. - END\n\t\t\n\t\tAssertions.assertEquals(sb.toString(), response.asString());\n\t\t\n\t}", "@Test(expected = OperationNotPermittedException.class)\n public void testCreateOnBehalfUser_notActingOn() throws Exception {\n idService.createOnBehalfUser(customer2.getOrganizationId(), \"\");\n }", "@Test\n public void deleteNewAccount() {\n final CreateUserRequest createUserRequest = new CreateUserRequest();\n createUserRequest.setUsername(\"[email protected]\");\n createUserRequest.setFirstname(\"Gamma\");\n createUserRequest.setLastname(\"Beta\");\n\n // First, we create the User account that we wish to delete\n final CreateUserResponse response = administration.createUser(token, createUserRequest);\n assertThat(response.isOk(), is(true));\n\n // Now, try to delete the account\n final UserRequest request = new UserRequest();\n request.setUser(response.getUser());\n request.setNewStatus(UserStatus.DELETED);\n final Response deletedUserResponse = administration.controlUserAccount(token, request);\n\n assertThat(deletedUserResponse, is(not(nullValue())));\n assertThat(deletedUserResponse.isOk(), is(true));\n }", "@PostMapping(\"/account\")\n Account updateOrCreateAccount(@RequestBody @Valid AccountRequest accountRequest) {\n if (accountRequest.getUserId() == null) {\n ensureAdminAccess();\n // create account\n // validate password\n if (StringUtils.hasText(accountRequest.getPassword())) {\n throw new IllegalArgumentException(\"Account password must be present.\");\n }\n // validate username\n if (accountRepository.existsByUsername(accountRequest.getUsername())) {\n throw new IllegalArgumentException(\"Account already exists.\");\n }\n // build account\n Account account = new Account();\n account.setUsername(accountRequest.getUsername());\n account.setPassword(accountRequest.getPassword());\n account.setAdmin(false);\n accountRepository.save(account);\n return account;\n } else {\n Account currentAccount = SecurityContextHolder.getContext().getAccount();\n // update account\n boolean isAdmin = currentAccount.isAdmin();\n if (!currentAccount.getId().equals(accountRequest.getUserId()) && !isAdmin) {\n throw new IllegalStateException(\"Permission denied.\");\n }\n // update account\n if (isAdmin && currentAccount.getId().equals(accountRequest.getUserId())) {\n // if admin want to update himself/herself\n throw new IllegalArgumentException(\"Do not try to update adminself.\");\n }\n // update username\n Account updatingAccount = accountRepository.getById(accountRequest.getUserId());\n if (StringUtils.hasText(accountRequest.getUsername()) && !accountRequest.getUsername().equals(updatingAccount.getUsername())) {\n // validate username\n if (accountRepository.existsByUsername(accountRequest.getUsername())) {\n throw new IllegalArgumentException(\"Account already exists.\");\n }\n }\n // update account\n updatingAccount.setUsername(accountRequest.getUsername());\n return accountRepository.save(updatingAccount);\n }\n }", "AccountModel add(AccountModel account) throws AccountException;", "public int createAccount(User user) throws ExistingUserException,\n UnsetPasswordException;", "AionAddress createAccount(String password);", "@Test\n public void testCreateAccountWithPassword() {\n final CreateUserRequest createUserRequest = new CreateUserRequest();\n createUserRequest.setUsername(\"[email protected]\");\n createUserRequest.setPassword(\"beta\");\n createUserRequest.setFirstname(\"Alpha\");\n createUserRequest.setLastname(\"Gamma\");\n\n // Now, perform the actual test - create the Account, and verify that\n // the response is ok, and that a Notification was sent\n final CreateUserResponse result = administration.createUser(token, createUserRequest);\n assertThat(result.isOk(), is(true));\n assertThat(result.getUser(), is(not(nullValue())));\n assertThat(result.getUser().getUserId(), is(not(nullValue())));\n // Creating a new User should generate an Activate User notification\n final NotificationType type = NotificationType.ACTIVATE_NEW_USER;\n assertThat(spy.size(type), is(1));\n final String activationCode = spy.getNext(type).getFields().get(NotificationField.CODE);\n assertThat(activationCode, is(not(nullValue())));\n }", "@Test\n public void createUser() {\n Response response = regressionClient.createUser();\n dbAssist.responseValidation(response);\n }", "@Test(expected=com.cg.demo.exceptions.InvalidAccountException.class)\n\tpublic void ifTheAccountNoIsInvalidSystemShouldThrowException() throws InvalidAccountException{\n\t\t\n\t\tservice.showBalance(1);\n\n\t}", "@Test(expected = AppException.class)\n public void testCreateEmailIncorrect() {\n User user = new User(\"login\", \"login(at)example.com\", \"Login Name\", \n \"12345678\");\n userService.create(user);\n }", "@Test\n public void createNewUserAndCheckIt() {\n UserLogin userLogin = new UserLogin();\n userLogin.setUserLogin(\"068-068-68-68\");\n userLogin.setUserPassword(\"12345\");\n boolean isThrow = false;\n try {\n UserResponse userResponse = loginsService.checkLoginSignInSignUp(userLogin, \"SignUp\");\n } catch (ApplicationException e) {\n isThrow = true;\n }\n assertThat(isThrow);\n\n //Successful registration\n userLogin.setUserPasswordNew(\"12345\");\n UserResponse userResponse = loginsService.checkLoginSignInSignUp(userLogin, \"SignUp\");\n\n assertThat(userResponse.getUserPhone().equals(usersService.normalizeAndCheckPhoneFormat(userLogin.getUserLogin())));\n assertThat(userResponse.getUserPoints()).size().isEqualTo(5);\n }", "@When(\"^I fill in valid Email address and click on create an account$\")\n\tpublic void I_fill_in_valid_Email_address_and_click_on_create_an_account() throws Throwable {\n\n\t\trandomNumber r = new randomNumber();\n\t\tString emailString = \"Example\" + r.gen();\n\t\tString emailAddress = emailString + \"@gmail.com\";\n\t\tdriver.findElement(By.id(\"email_create\")).sendKeys(emailAddress);\n\t\tdriver.findElement(By.id(\"SubmitCreate\")).submit();\n\t}", "@Test\n\tpublic void testCreateAdminAccountWithEmptyUsername() {\n\t\tString username = \"\";\n\t\tString error = null;\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.createAdminAccount(username, PASSWORD1, NAME1);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"Username cannot be empty.\", error);\n\t}", "public void create(UserValidator account) {\n Account validated = new Account();\n validated.setUsername(account.getUsername());\n validated.setPassword(passwordEncoder.encode(account.getPassword()));\n validated.setFirstName(account.getFirstName());\n validated.setLastName(account.getLastName());\n validated.getAuthorities().add(\"USER\");\n\n this.accountRepository.save(validated);\n }", "@Test\n\tpublic void testCreateAdminAccountWithEmptyPassword() {\n\t\tString username = \"Catherine\";\n\t\tString password = \"\";\n\t\tString error = null;\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.createAdminAccount(username, password, NAME1);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"Password cannot be empty.\", error);\n\t}", "@Test\n public void testCreateOnBehalfUser() throws Exception {\n String password = \"abcdef\";\n VOUserDetails result = idService\n .createOnBehalfUser(customer.getOrganizationId(), password);\n checkCreatedUser(result, customer, password, false);\n }", "@Test\n public void whenAccountCreationSucceeds() throws Exception {\n Mockito.when(view.getName()).thenReturn(USERNAME);\n Mockito.when(view.getEmail()).thenReturn(VALID_EMAIL);\n Mockito.when(view.getPassword()).thenReturn(VALID_PASSWORD);\n Mockito.when(view.getPasswordConfirmation()).thenReturn(VALID_PASSWORD);\n\n presenter.onCreateAccountClick();\n\n Mockito.verify(view).startProfilePageActivity();\n }", "@Test\n public void AddAccountInvalid1()\n {\n acc_db.addAccount(acc2);\n\n acc3 = new Account(2,\"Jacob&Leon3\",4000);\n\n Assert.assertEquals(false,acc_db.addAccount(acc3));\n }", "@Test\n public void testStudentsCreateStudentAccount() {\n // If the normal token is used for this test - then it causes problems\n // for other tests. If the student account is added via the admin\n // method, then no problem occurs, but via the student method... no so\n // much luck!\n final AuthenticationToken myToken = login(\"[email protected]\", \"spain\");\n final Students students = new StudentClient();\n // Create the new User Request Object\n final String username = \"[email protected]\";\n final String password = \"myPassword\";\n final CreateUserRequest createUserRequest = new CreateUserRequest(username, password, \"Student\", \"Graduate\");\n\n final FetchStudentsRequest fetchStudentsRequest = new FetchStudentsRequest();\n final FetchStudentsResponse beforeStudentsResponse = students.fetchStudents(myToken, fetchStudentsRequest);\n\n // Now, perform the actual test - create the Account, and verify that\n // the response is ok, and that a Notification was sent\n final CreateUserResponse created = students.createStudent(myToken, createUserRequest);\n assertThat(created.isOk(), is(true));\n\n // Verify that the Students exists\n final FetchStudentsResponse afterFetchStudentsResponse = students.fetchStudents(myToken, fetchStudentsRequest);\n assertThat(afterFetchStudentsResponse.isOk(), is(true));\n assertThat(afterFetchStudentsResponse.getStudents().size(), is(beforeStudentsResponse.getStudents().size() + 1));\n logout(myToken);\n }", "@Override\r\n\tpublic boolean createAccount(Account account) {\n\t\treturn dao.createAccount(account);\r\n\t}", "@Test\r\n\tpublic void testSenderAccountNumberLength() {\r\n\t\tAccountTransferRequest accountTransferRequest = new AccountTransferRequest();\r\n\t\taccountTransferRequest.setUsername(VALID_USERNAME);\r\n\t\taccountTransferRequest.setPassword(VALID_PASSWORD);\r\n\t\taccountTransferRequest.setSenderAccount(\"1234567\");\r\n\t\taccountTransferRequest.setReceiverAccount(VALID_RECEIVER_ACCOUNT_NUMBER);\r\n\t\taccountTransferRequest.setTransferAmount(400.0);\t\t\r\n\t\ttry {\r\n\t\t\ttransferValidationUnit.validate(accountTransferRequest);\r\n\t\t\tAssert.fail(\"Exception_Expected\");\r\n\t\t} catch (ValidationException exception) {\r\n\t\t\tAssert.assertNotNull(exception);\r\n\t\t\tAssert.assertEquals(\"Invalid_Sender_And_Receiver_AccountNumber\", exception.getMessage());\r\n\r\n\t\t}\r\n\t}", "@Test\n void createUserReturnsNull() {\n Address address = new Address(\"Earth\", \"Belgium\", \"City\", \"Street\", 0);\n User user = new User(\"Mira\", \"Vogelsang\", \"0412345678\", \"maarten@maarten\", \"pass\", address);\n\n assertNull(controller.createUser(user));\n }", "@Test\n public void createBaasAccountUsingPostTest() throws ApiException {\n BaasAccountCO baasAccountCO = null;\n BaasAccountVO response = api.createBaasAccountUsingPost(baasAccountCO);\n\n // TODO: test validations\n }", "@Test\n public final void testCreateUserInJSONUserAlreadyExists() {\n \n try {\n \tUserAPI fixture = new UserAPI();\n String input = \"{\\\"userName\\\":\\\"Txuso\\\", \\\"password\\\": \\\"213\\\"}\";\n \tfixture.createUserInJSON(input);\n } catch (WebApplicationException e) {\n \tassertNotNull(Response.Status.NOT_ACCEPTABLE.getStatusCode());\n }\n }", "@Test(groups = \"Transactions Tests\", description = \"Create new transaction\")\n\tpublic void createNewTransaction() {\n\t\tMainScreen.clickAccountItem(\"Income\");\n\t\tSubAccountScreen.clickSubAccountItem(\"Salary\");\n\t\tTransactionsScreen.clickAddTransactionBtn();\n\t\tTransactionsScreen.typeTransactionDescription(\"Extra income\");\n\t\tTransactionsScreen.typeTransactionAmount(\"300\");\n\t\tTransactionsScreen.clickTransactionType();\n\t\tTransactionsScreen.typeTransactionNote(\"Extra income from this month\");\n\t\tTransactionsScreen.clickSaveBtn();\n\t\tTransactionsScreen.transactionItem(\"Extra income\").shouldBe(visible);\n\t\tTransactionsScreen.transactionAmout().shouldHave(text(\"$300\"));\n\t\ttest.log(Status.PASS, \"Sub-account created successfully and the value is correct\");\n\n\t\t//Testing if the transaction was created in the 'Double Entry' account, if the value is correct and logging the result to the report\n\t\treturnToHomeScreen();\n\t\tMainScreen.clickAccountItem(\"Assets\");\n\t\tSubAccountScreen.clickSubAccountItem(\"Current Assets\");\n\t\tSubAccountScreen.clickSubAccountItem(\"Cash in Wallet\");\n\t\tTransactionsScreen.transactionItem(\"Extra income\").shouldBe(visible);\n\t\tTransactionsScreen.transactionAmout().shouldHave(text(\"$300\"));\n\t\ttest.log(Status.PASS, \"'Double Entry' account also have the transaction and the value is correct\");\n\n\t}", "@Test\n\tpublic void createNewAccountWithOpeningBalanceCashTest() {\n\t\tcreateAccountCashTest();\n\t\tcreateNewAccountWithOpeningBalanceHelper();\n\t}", "@Test\n\tpublic void createAccountCashTest() {\n\t\tsetChequingRadioDefaultOff();\n\t\trdbtnCash.setSelected(true);\n\t\tdata.setRdbtnCash(rdbtnCash);\n\t\tAccount account = data.createNewAccount();\n\t\taccountTest = new Account(TEST_ACCOUNT_NAME, bankTest,\n\t\t\t\tAccount.Types.CASH.getAccountType());\n\t\tassertEquals(accountTest, account);\n\n\t}", "public boolean\tnewAccount(String type, String name, float balance) throws IllegalArgumentException;", "@Test(expected = AccountNotFoundException.class)\npublic void testValidateAccount() throws AccountNotFoundException {\n List<Account> accounts = new ArrayList<>();\n Account account = new Account();\n account.setAccountId(1,\"4\");\n accounts.add(account);\n\n Account capturedAccount = sut.validateAccount(accounts,1);\n\n assertSame(account,capturedAccount);\n\n}", "@Test(priority=1, dataProvider=\"User Details\")\n\t\tpublic void registration(String firstname,String lastname,String emailAddress,\n\t\t\t\tString telephoneNum,String address1,String cityName,String postcodeNum,\n\t\t\t\tString country,String zone,String pwd,String confirm_pwd) throws Exception{\n\t\t\t\n\t\t\thomePage = new HomePage(driver);\n//'**********************************************************\t\t\t\n//Calling method to click on 'Create Account' link\n\t\t\tregistraionPageOC = homePage.clickCreateAccount();\n//'**********************************************************\t\t\t\n//Calling method to fill user details in Registration page and verify account is created\n\t\t\tregistraionPageOC.inputDetails(firstname,lastname,emailAddress,telephoneNum,address1,cityName,postcodeNum,country,zone,pwd,confirm_pwd);\n\t\t\ttry{\n\t\t\tAssert.assertEquals(\"Your Account Has Been Created!\", driver.getTitle(),\"Titles Not Matched: New Account Not Created\");\n\t\t\textentTest.log(LogStatus.PASS, \"Registration: New User Account is created\");\n\t\t\t}catch(Exception e){\n\t\t\t\textentTest.log(LogStatus.FAIL, \"Registration is not successful\");\n\t\t\t}\n\t\t}", "public void createAccount(){\n System.out.println(\"vi skal starte \");\n }", "@Test\n public void accountCustomConstructor_isCorrect() throws Exception {\n\n int accountId = 100;\n int userId = 101;\n String accountName = \"account Test Name\";\n double balance = 1000.00;\n\n // Create custom account\n Account account = new Account(accountId, userId, accountName, balance);\n\n // Verify values\n assertEquals(accountId, account.getAccountId());\n assertEquals(userId, account.getUserId());\n assertEquals(accountName, account.getAccountName());\n assertEquals(balance, account.getBalance(), 0);\n }", "@Test\n\tpublic void testAdminCreate() {\n\t\tAccount acc1 = new Account(00000, \"ADMIN\", true, 1000.00, 0, false);\n\t\taccounts.add(acc1);\n\n\t\ttransactions.add(0, new Transaction(10, \"ADMIN\", 00000, 0, \"A\"));\n\t\ttransactions.add(1, new Transaction(05, \"new acc\", 00001, 100.00, \"A\"));\n\t\ttransactions.add(2, new Transaction(00, \"ADMIN\", 00000, 0, \"A\"));\n\n\t\ttransHandler = new TransactionHandler(accounts, transactions);\n\t\toutput = transHandler.HandleTransactions();\n\n\t\tif (outContent.toString().contains(\"Account Created\")) {\n\t\t\ttestResult = true;\n\t\t} else {\n\t\t\ttestResult = false;\n\t\t}\n\n\t\tassertTrue(\"unable to create account as admin\", testResult);\n\t}", "@Test\n @DisplayName(\"Should return 400 exception if accounts list is null in InviteRegisteredResource for POST /bills/{billId}/accounts\")\n void shouldReturnExceptionIfListEmailsNullInInviteRegisteredResourceGivenPost() throws Exception {\n final var inviteRegisteredResource = InviteRegisteredResourceFixture.getDefault();\n final var user = UserFixture.getDefault();\n inviteRegisteredResource.setAccounts(null);\n final var existentBillId = 1000L;\n final var path = String.format(BILL_BILLID_ACCOUNTS_ENDPOINT, existentBillId);\n final var authorities = new ArrayList<GrantedAuthority>();\n authorities.add(new SimpleGrantedAuthority(\"RESPONSIBLE_\" + existentBillId));\n\n //When/Then\n final MvcResult result = performMvcPostRequestWithoutBearer(path, inviteRegisteredResource, 400, user.getUsername(), authorities);\n final ApiError error = verifyInvalidInputs(result, 1);\n assertThat(error.getErrors().get(0).getMessage()).isEqualTo(MUST_NOT_BE_EMPTY);\n }", "@Test\n\tpublic void testCreateAdminAccountWithSpacesInUsername() {\n\t\tString username = \"This is a bad username\";\n\t\tString error = null;\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.createAdminAccount(username, PASSWORD1, NAME1);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"Username cannot contain spaces.\", error);\n\t}", "private void createAccount() {\n mAuth.createUserWithEmailAndPassword(mTextEmail.getText().toString(), mTextPassword.getText().toString()).addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {\n @Override\n public void onComplete(@NonNull Task<AuthResult> task) {\n Log.d(TAG, \"createUserWithEmail:onComplete:\" + task.isSuccessful());\n\n if(!task.isSuccessful()){\n Toast.makeText(SignInActivity.this, \"Account creation failed!\", Toast.LENGTH_SHORT).show();\n } else {\n Toast.makeText(SignInActivity.this, \"Account creation success!\", Toast.LENGTH_SHORT).show();\n }\n }\n });\n }", "public static void registerTestNetAccount(KeyPair pair) throws Exception{\n String friendBotUrl = String.format(\n \"https://horizon-testnet.stellar.org/friendbot?addr=%s\",\n pair.getAccountId());\n InputStream response = new URL(friendBotUrl).openStream();\n String body = new Scanner(response, \"UTF-8\").useDelimiter(\"\\\\A\").next();\n System.out.println(\"SUCCESS! You have a new account :)\\n\" + body);\n\n }", "@Test\n public void createUserTestTest()\n {\n HashMap<String, Object> values = new HashMap<String, Object>();\n values.put(\"age\", \"22\");\n values.put(\"dob\", new Date());\n values.put(\"firstName\", \"CreateFName\");\n values.put(\"lastName\", \"CreateLName\");\n values.put(\"middleName\", \"CreateMName\");\n values.put(\"pasword\", \"user\");\n values.put(\"address\", \"CreateAddress\");\n values.put(\"areacode\", \"CreateAddressLine\");\n values.put(\"city\", \"CreateCity\");\n values.put(\"country\", \"CreateCountry\");\n values.put(\"road\", \"CreateRoad\");\n values.put(\"suberb\", \"CreateSuberb\");\n values.put(\"cell\", \"CreateCell\");\n values.put(\"email\", \"user\");\n values.put(\"homeTell\", \"CreateHomeTell\");\n values.put(\"workTell\", \"CreateWorkTell\");\n createUser.createNewUser(values);\n\n Useraccount useraccount = useraccountCrudService.findById(ObjectId.getCurrentUserAccountId());\n Assert.assertNotNull(useraccount);\n\n Garage garage = garageCrudService.findById(ObjectId.getCurrentGarageId());\n Assert.assertNotNull(garage);\n\n Saleshistory saleshistory = saleshistoryCrudService.findById(ObjectId.getCurrentSalesHistoryId());\n Assert.assertNotNull(saleshistory);\n }", "@Test\n\tpublic void testCreateAdminAccountWithSpacesInPassword() {\n\t\tString username = \"Catherine\";\n\t\tString password = \"this is a bad password\";\n\t\tString error = null;\n\t\tAdminAccount user = null; \n\t\ttry {\n\t\t\tuser = adminAccountService.createAdminAccount(username, password, NAME1);\n\t\t} catch (InvalidInputException e) {\n\t\t\terror = e.getMessage();\n\t\t}\n\n\t\tassertNull(user);\n\t\t// check error\n\t\tassertEquals(\"Password cannot contain spaces.\", error);\n\t}", "@Test\n public void testInvalidEmail() {\n email = \"[email protected]\";\n registerUser(username, password, password, email, email, forename, surname, null);\n assertNull(userService.getUser(username));\n }", "@Test\r\n\tpublic void testSenderAccountNumberEmpty() {\r\n\t\tAccountTransferRequest accountTransferRequest = new AccountTransferRequest();\r\n\t\taccountTransferRequest.setUsername(VALID_USERNAME);\r\n\t\taccountTransferRequest.setPassword(VALID_PASSWORD);\r\n\t\taccountTransferRequest.setSenderAccount(\"\");\r\n\t\taccountTransferRequest.setReceiverAccount(VALID_RECEIVER_ACCOUNT_NUMBER);\r\n\t\taccountTransferRequest.setTransferAmount(400.0);\t\t\r\n\t\ttry {\r\n\t\t\ttransferValidationUnit.validate(accountTransferRequest);\r\n\t\t\tAssert.fail(\"Exception_Expected\");\r\n\t\t} catch (ValidationException exception) {\r\n\t\t\tAssert.assertNotNull(exception);\r\n\t\t\tAssert.assertEquals(\"Sender_Account_Cannot_Be_Null_Or_Empty\", exception.getMessage());\r\n\r\n\t\t}\r\n\t}", "public void TestAccount1() {\n\n AccountCreator account = new AccountCreator();\n account.setFirstName(\"Bob\");\n account.setLastName(\"Smith\");\n account.setAddress(\"5 Rain Road\");\n account.setPIN();\n account.setTestBalance(300);\n accountList.add(account);\n\n }", "@Test\n @DisplayName(\"Should return 200 when adding one existing user not part of Bill in Invite Registered Person to Bill\")\n void shouldReturn200ForNormalCaseOneUserInviteRegisteredGivenPost() throws Exception {\n final var inviteRegisteredResource = InviteRegisteredResourceFixture.getDefault();\n final var user = UserFixture.getDefaultWithEmailAndPassword(\"[email protected]\", \"notEncrypted\");\n final var accountNotInBill = \"[email protected]\";\n final var existentBillId = 1000L;\n inviteRegisteredResource.setAccounts(List.of(accountNotInBill));\n final var path = String.format(BILL_BILLID_ACCOUNTS_ENDPOINT, existentBillId);\n final var authorities = new ArrayList<GrantedAuthority>();\n authorities.add(new SimpleGrantedAuthority(\"RESPONSIBLE_\" + existentBillId));\n\n //When\n final var mvcResult = performMvcPostRequestWithoutBearer(path, inviteRegisteredResource, 200, user.getUsername(), authorities);\n final String content = mvcResult.getResponse().getContentAsString();\n final BillSplitResource response = mapper.readValue(content, BillSplitResource.class);\n\n //Then\n assertThat((int) response.getInformationPerAccount().stream().map(ItemAssociationSplitResource::getAccount).map(AccountResource::getEmail)\n .filter(acc -> acc.equals(accountNotInBill)).count())\n .isEqualTo(1);\n }", "@Test\n public void shouldGive400ResponseCodeIfTryToCreatePaymentWithInvalidDataViaPost() throws Exception {\n String invalidData = \"invalid data\";\n //when: we try to create the payment via post:\n HttpEntity<String> entity = getHttpEntityForTestRequest(invalidData);\n ResponseEntity<String> response = restTemplate.postForEntity(paymentsUrl, entity, String.class);\n //then: the response status should be 400\n assertEquals(HttpStatus.BAD_REQUEST, response.getStatusCode());\n }", "@Override\r\n\tpublic boolean createAccount(Account account) throws Exception {\n\t\tboolean flag = false;\r\n\t\ttry {\r\n\t\t\tflag = this.dao.createAccount(account);\r\n\t\t}catch(Exception e) {\r\n\t\t\tthrow e;\r\n\t\t}finally {\r\n\t\t\tthis.dbc.close();\r\n\t\t}\r\n\t\treturn flag;\r\n\t}", "@Test\n\tpublic void createNewAccountWithOpeningBalanceDebitTest() {\n\t\tcreateAccountDebtsTest();\n\t\tcreateNewAccountWithOpeningBalanceHelper();\n\t}", "@Test\r\n\tpublic void testSenderAndReceiverAccountNumberSame() {\r\n\t\tAccountTransferRequest accountTransferRequest = new AccountTransferRequest();\r\n\t\taccountTransferRequest.setUsername(VALID_USERNAME);\r\n\t\taccountTransferRequest.setPassword(VALID_PASSWORD);\r\n\t\taccountTransferRequest.setSenderAccount(\"123456\");\r\n\t\taccountTransferRequest.setReceiverAccount(\"123456\");\r\n\t\taccountTransferRequest.setTransferAmount(400.0);\t\t\r\n\t\ttry {\r\n\t\t\ttransferValidationUnit.validate(accountTransferRequest);\r\n\t\t\tAssert.fail(\"Exception_Expected\");\r\n\t\t} catch (ValidationException exception) {\r\n\t\t\tAssert.assertNotNull(exception);\r\n\t\t\tAssert.assertEquals(\"Invalid_Sender_And_Receiver_AccountNumber\", exception.getMessage());\r\n\r\n\t\t}\r\n\t}", "@Test\r\n\tpublic void testSenderAccountNumberPattern() {\r\n\t\tAccountTransferRequest accountTransferRequest = new AccountTransferRequest();\r\n\t\taccountTransferRequest.setUsername(VALID_USERNAME);\r\n\t\taccountTransferRequest.setPassword(VALID_PASSWORD);\r\n\t\taccountTransferRequest.setSenderAccount(\"&*546abc\");\r\n\t\taccountTransferRequest.setReceiverAccount(VALID_RECEIVER_ACCOUNT_NUMBER);\r\n\t\taccountTransferRequest.setTransferAmount(400.0);\t\t\r\n\t\ttry {\r\n\t\t\ttransferValidationUnit.validate(accountTransferRequest);\r\n\t\t\tAssert.fail(\"Exception_Expected\");\r\n\t\t} catch (ValidationException exception) {\r\n\t\t\tAssert.assertNotNull(exception);\r\n\t\t\tAssert.assertEquals(\"Invalid_Sender_And_Receiver_AccountNumber\", exception.getMessage());\r\n\r\n\t\t}\r\n\t}", "@Override\n\tpublic String createAccount() {\n\t\treturn \"Created Saving Account Sucessfully\";\n\t}", "@Test(expected=IllegalArgumentException.class)\r\n\tpublic void testInvalidCreateRandomCustomer() throws IllegalArgumentException{\r\n\t\t\r\n\t\tfinal int NO_FLOORS = -1;\r\n\t\t\r\n\t\tCustomer c = custFact.createRandomCustomer(NO_FLOORS);\r\n\r\n\t}", "@POST\n @Path(\"Signup\")\n public Response signup(JpaAccount account,\n @Context HttpServletRequest request) {\n Response r;\n if (this.checkEmailString(account.getEmail())) {\n if (account.getUsername().equals(\"\") || !this.checkExistingUsername(account.getUsername())) {\n User user;\n Subject subject = SecurityUtils.getSubject();\n\n if (subject.isAuthenticated() && accountFacade.find((Long) subject.getPrincipal()) instanceof GuestJpaAccount) {\n GuestJpaAccount from = (GuestJpaAccount) accountFacade.find((Long) subject.getPrincipal());\n subject.logout();\n userFacade.upgradeGuest(from, account);\n r = Response.status(Response.Status.CREATED).build();\n } else {\n // Check if e-mail is already taken and if yes return a localized error message:\n try {\n accountFacade.findByEmail(account.getEmail());\n String msg = detectBrowserLocale(request).equals(\"fr\") ? \"Cette adresse e-mail est déjà prise.\" : \"This email address is already taken.\";\n r = Response.status(Response.Status.BAD_REQUEST).entity(WegasErrorMessage.error(msg)).build();\n } catch (WegasNoResultException e) {\n // GOTCHA\n // E-Mail not yet registered -> proceed with account creation\n user = new User(account);\n userFacade.create(user);\n r = Response.status(Response.Status.CREATED).build();\n }\n }\n } else {\n String msg = detectBrowserLocale(request).equals(\"fr\") ? \"Ce nom d'utilisateur est déjà pris.\" : \"This username is already taken.\";\n r = Response.status(Response.Status.BAD_REQUEST).entity(WegasErrorMessage.error(msg)).build();\n }\n } else {\n String msg = detectBrowserLocale(request).equals(\"fr\") ? \"Cette adresse e-mail n'est pas valide.\" : \"This e-mail address is not valid.\";\n r = Response.status(Response.Status.BAD_REQUEST).entity(WegasErrorMessage.error(msg)).build();\n }\n return r;\n }", "protected void createAccount(JSONArray args, final CallbackContext callbackContext) {\n\t\tLog.d(TAG, \"CREATEACCOUNT\");\n\t\ttry {\n\t\t\tString email = args.getString(0);\n\t\t\tString password = args.getString(1);\n\t\t\tString userName = null;\n\t\t\tif (args.length() == 3) {\n\t\t\t\tuserName = args.optString(2);\n\t\t\t}\n\t\t\tNotificare.shared().createAccount(email, password, userName, new NotificareCallback<Boolean>() {\n\n\t\t\t\t@Override\n\t\t\t\tpublic void onSuccess(Boolean result) {\n\t\t\t\t\tif (callbackContext == null) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tcallbackContext.success();\n\t\t\t\t}\n\n\t\t\t\t@Override\n\t\t\t\tpublic void onError(NotificareError error) {\n\t\t\t\t\tif (callbackContext == null) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tcallbackContext.error(error.getLocalizedMessage());\n\t\t\t\t}\n\t\t\t});\n\t\t} catch (JSONException e) {\n\t\t\tcallbackContext.error(\"JSON parse error\");\n\t\t}\n\t}", "@Override\n public void insertAccount() throws Exception {\n\n }", "@Test(expected = AppException.class)\n public void testCreateNameEmpty() {\n User user = new User(\"login\", \"[email protected]\", null, \n \"12345678\");\n userService.create(user);\n }", "@Test\r\n\tpublic void testReceiverAccountNumberEmpty() {\r\n\t\tAccountTransferRequest accountTransferRequest = new AccountTransferRequest();\r\n\t\taccountTransferRequest.setUsername(VALID_USERNAME);\r\n\t\taccountTransferRequest.setPassword(VALID_PASSWORD);\r\n\t\taccountTransferRequest.setSenderAccount(VALID_SENDER_ACCOUNT_NUMBER);\r\n\t\taccountTransferRequest.setReceiverAccount(\"\");\r\n\t\taccountTransferRequest.setTransferAmount(400.0);\t\t\r\n\t\ttry {\r\n\t\t\ttransferValidationUnit.validate(accountTransferRequest);\r\n\t\t\tAssert.fail(\"Exception_Expected\");\r\n\t\t} catch (ValidationException exception) {\r\n\t\t\tAssert.assertNotNull(exception);\r\n\t\t\tAssert.assertEquals(\"Receiver_Account_Cannot_Be_Null_Or_Empty\", exception.getMessage());\r\n\r\n\t\t}\r\n\t}", "@Test\n\tpublic void createNewAccountWithOpeningBalanceChequingTest() {\n\t\tcreateAccountChequingTest();\n\t\tcreateNewAccountWithOpeningBalanceHelper();\n\t}", "@Test\n\tpublic void registerUserTest3() throws Exception {\n\t\tSignUpRequest signUpRequest = new SignUpRequest(\"Marko\", \"Troskot\", \"MTro\", \"[email protected]\", \"pass123\", \"pass123\");\n\n\t\tMockito.when(userService.existsByUsername(ArgumentMatchers.anyString())).thenReturn(false);\n\t\tMockito.when(userService.existsByEmail(ArgumentMatchers.anyString())).thenReturn(true);\n\n\t\tmockMvc.perform(post(\"/api/auth/signup\").contentType(MediaType.APPLICATION_JSON).content(objectMapper.writeValueAsString(signUpRequest)).characterEncoding(\"UTF-8\"))\n\t\t\t\t.andDo(print()).andExpect(status().is(400)).andExpect(status().reason(emailTaken));\n\t}", "@Test\n public void testInvalidBirthDate() {\n registerUser(username, password, password, email, email, forename, surname, \"01011990\");\n assertNull(userService.getUser(username));\n }", "@RequestMapping(\n value = \"/accounts\",\n method = RequestMethod.POST,\n produces = MediaType.APPLICATION_JSON_VALUE,\n consumes = MediaType.APPLICATION_JSON_VALUE\n )\n public ResponseEntity<?> createAccount(@RequestBody User user) {\n ResponseEntity<?> response = null;\n\n try {\n User userE = accountManagementService.createUser(user);\n response = new ResponseEntity<>(userE, HttpStatus.OK);\n } catch (UserAccountAlreadyExistException ue) {\n response = new ResponseEntity<>(new Message(Message.Status.ERROR, ue.getMessage()), HttpStatus.BAD_REQUEST);\n }\n\n return response;\n }" ]
[ "0.7260212", "0.71478134", "0.70865506", "0.7032187", "0.68601507", "0.681096", "0.6790846", "0.6772391", "0.667247", "0.6664295", "0.66564065", "0.6648947", "0.65644145", "0.6538307", "0.6526998", "0.65168697", "0.6503159", "0.64933735", "0.6454717", "0.64470863", "0.64173627", "0.63917005", "0.6352052", "0.63415104", "0.6317098", "0.6294818", "0.62716013", "0.6255451", "0.6242677", "0.6238223", "0.6218259", "0.62173957", "0.6214596", "0.6213999", "0.6188979", "0.618683", "0.6179482", "0.617733", "0.6171922", "0.61717856", "0.6169155", "0.61682045", "0.61618155", "0.6154589", "0.6136845", "0.6131997", "0.61257565", "0.6124648", "0.61114913", "0.6108691", "0.6104913", "0.609884", "0.6098402", "0.60866547", "0.60767704", "0.6076621", "0.6070449", "0.60576856", "0.6047609", "0.6032517", "0.60304385", "0.6018693", "0.6008101", "0.6007374", "0.60002214", "0.5978448", "0.59687924", "0.5968635", "0.5952773", "0.5945014", "0.5944636", "0.59392864", "0.59351486", "0.5907281", "0.59068686", "0.5905028", "0.59011066", "0.5895418", "0.58936685", "0.58837724", "0.58806723", "0.58803606", "0.58765185", "0.5860946", "0.585945", "0.5853236", "0.5846276", "0.58232766", "0.58207935", "0.5819327", "0.5818918", "0.5813725", "0.5806482", "0.5796491", "0.5795117", "0.5792051", "0.57891196", "0.57890093", "0.5787995", "0.5786554" ]
0.5926612
73
/ constructors Accessed by persistence provider.
protected SecurityObject() { // Used by JPA provider. LOGGER.debug("SecurityObject#co"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Persistence() {}", "public void initializeOnInstantiation() \n\t\t\t\tthrows PersistenceException{\n\n\t}", "public Persistence() {\n\t\tconn = dbConnection();\n\t}", "abstract void initPersistance();", "protected CompanyJPA() {\n\t}", "public void initializeOnCreation() \n\t\t\t\tthrows PersistenceException{\n\n\t}", "public DataPersistence() {\n storage = new HashMap<>();\n idCounter = 0;\n }", "private EntityManagerProvider(){}", "private AttendantDatabase() {}", "public SourceDataFileJpa() {\n // n/a\n }", "public MoviesDatabase()\n {\n file = new FileOperation();\n menu = new Menu();\n validation = new Validation();\n }", "private DatabaseContext() {\r\n datastore = createDatastore();\r\n init();\r\n }", "public PersistenciaCMT() {\n\n }", "private DatabaseManager() {\n // Default constructor\n }", "private DatabaseManager() {}", "private DatabaseManager() {\r\n }", "private static void init() {\n\t\tif (factory == null) {\n\t\t\tfactory = Persistence.createEntityManagerFactory(\"hibernatePersistenceUnit\");\n\t\t}\n\t\tif (em == null) {\n\t\t\tem = factory.createEntityManager();\n\t\t}\n\t}", "private AdminEntity() {\n \tsuper();\n\n this.emf = Persistence.createEntityManagerFactory(\"entityManager\");\n\tthis.em = this.emf.createEntityManager();\n\tthis.tx = this.em.getTransaction();\n }", "public Model() {\n this(Persistence.createEntityManagerFactory(PERSISTENCE_UNIT_NAME), new TextRepository());\n }", "private SimpleRepository() {\n \t\t// private ct to disallow external object creation\n \t}", "public DBManager() {\n\t\t\n\t}", "public KVDatabase() {\n //private constructor to prevent instantiation.\n }", "public DatabaseOperations(){\n\n }", "public EpAssetsDAOImpl() {\n super();\n }", "public OnibusDAO() {}", "public ExpertiseEntity() {\n }", "private EntityFactory() {}", "public void testCtor() {\r\n new FileSystemPersistence();\r\n }", "private DataManager() {\n }", "public sqlDatabase() {\n }", "private DatabaseOperations() {\n }", "public AbstractEntity() {\r\n\t}", "private LabelDbmsDao() {\r\n }", "protected JpaModule() {\n }", "private DatabaseContract() {}", "public Database()\r\n\t{\r\n\t\tinitializeDatabase();\r\n\t\t\r\n\t}", "private Catalog() {\r\n }", "private PurchaseDB() {}", "public Database(Context context) { \n\t\tsuper( context, database_MEF, null, 2); \n\t}", "public Store() {\n }", "public SPManager() {\n \tmyCon = new DBManager();\n }", "private ArticleMgr() {\r\n\r\n\t}", "public DB() {\r\n\t\r\n\t}", "private DatabaseContract()\n {\n }", "public ExcursionEntity() {\n\t}", "public DaoConnection() {\n\t\t\n\t}", "public ArticleDao() {\n super(Article.ARTICLE, cn.edu.kmust.flst.domain.flst.tables.pojos.Article.class);\n }", "public Database() {\n if (init) {\n\n //creating Transaction data\n Transaction transactionOne\n = new Transaction(1, \"Debit\", \"Spar Grocery\", 54.68,1);\n\n transactionDB.add(transactionOne);\n\n // Creating an Account data\n Account accountOne = new Account(1, 445, 111111111, \"Savings\",\n 1250.24, transactionDB);\n\n accountDB.add(accountOne);\n\n //creating withdrawal data\n Withdrawal withdrawalOne = new Withdrawal(1, 64422545, 600.89);\n withdrawalDB.add(withdrawalOne);\n\n //creating transfer data\n Transfer transferOne = new Transfer(1, 25252525, 521.23);\n transferDB.add(transferOne);\n\n //creating lodgement data\n Lodgement lodgementOne = new Lodgement(1, 67766666, 521.23);\n lodgementDB.add(lodgementOne);\n\n //add Customer data \n Customer customerOne\n = new Customer(1, \"Darth Vader\", \"[email protected]\",\n \"Level 5, Suit Dark\", \"darkSideIsGoodStuff\",\n accountDB, withdrawalDB, transferDB, lodgementDB);\n\n customerDB.add(customerOne);\n\n init = false;\n }\n }", "private DAOJPAFactory() {\r\n }", "protected AbstractDao()\n {\n\n }", "@SuppressWarnings(\"LawOfDemeter\")\n public AccessoryBO() throws PersistenceException {\n this.dao = DAOFactory.getDAOFactory().getAccessoryDAO();\n }", "private DBContract() {}", "private DBContract() {}", "private ObjectRepository() {\n\t}", "public AddressDaoImpl()\n {\n \t//Initialise the related Object stores\n \n }", "private Db() {\n super(Ke.getDatabase(), null);\n }", "public JStore()\n {\n //put code in here\n }", "protected void entityInit() {}", "public ProfesorDAOImpl() {\n super();\n }", "private Store() {\n\t}", "public PacienteDAO(){ \n }", "private DaoManager() {\n }", "public LocationTripViewPersistenceContract()\n\t{\n\t}", "public ContextDaoImpl() {\n Set<Commissioner> commissionerSet = new HashSet<>();\n List<String> logins = new ArrayList<>();\n commissionerSet.add(new Commissioner(\"victor.net\", \"25345Qw&&\", true));\n commissionerSet.add(new Commissioner(\"egor.net\", \"3456eR&21\", false));\n commissionerSet.add(new Commissioner(\"igor.net\", \"77??SDSw23\", false));\n logins.add(\"[email protected]\");\n logins.add(\"[email protected]\");\n logins.add(\"[email protected]\");\n Database.setCandidateSet(new HashSet<>());\n Database.setVoterSet(new HashSet<>());\n Database.setLogins(logins);\n Database.setCommissionerSet(commissionerSet);\n }", "public ModeOfPurchaseDAOImpl() {\r\n\r\n }", "public DataManager() {\n\t\tthis(PUnit == null ? \"eElectionsDB\" : PUnit);\n\t}", "public MapEntity() {\n\t}", "public Session(){\n\t\tdb = ALiteOrmBuilder.getInstance().openWritableDatabase();\n\t\texternalsCallbacks = new ArrayList<EntityListener>();\n\t}", "public BOEmpresa() {\r\n\t\tdaoEmpresa = new DAOEmpresaJPA();\r\n\t}", "public Database() {\n //Assign instance variables.\n this.movies = new ArrayList<>();\n this.users = new ArrayList<>();\n }", "private DatabaseRepository() {\n try {\n // connect to database\n\n DB_URL = \"jdbc:sqlite:\"\n + this.getClass().getProtectionDomain()\n .getCodeSource()\n .getLocation()\n .toURI()\n .getPath().replaceAll(\"[/\\\\\\\\]\\\\w*\\\\.jar\", \"/\")\n + \"lib/GM-SIS.db\";\n connection = DriverManager.getConnection(DB_URL);\n mapper = ObjectRelationalMapper.getInstance();\n mapper.initialize(this);\n }\n catch (SQLException | URISyntaxException e) {\n System.out.println(e.toString());\n }\n }", "public MultaDAO() {\r\n super(MultaDAO.class);\r\n }", "private TMDBContract() {\n }", "public LocalResidenciaColaborador() {\n //ORM\n }", "public ProduktRepositoryImpl() {\n this.conn = DatabaseConnectionManager.getDatabaseConnection();\n }", "public Article() {\n\t}", "public ParcoursDataService() {\n this.repository = new JeeRepository();\n }", "public DaoFactory()\n\t{\n\n\t}", "private CommentDAO() {\n\n\t}", "public RepoSQL() { // constructor implicit\r\n\t\t super();\r\n\t }", "public EntityFactoryImpl() {\n\t\tsuper();\n\t}", "public DatabaseTable() { }", "public itemDBContract(){}", "public DataManage() {\r\n\t\tsuper();\r\n\t}", "private InternalStorage() {}", "public ProductDAO() {\n }", "public ServiceCacheDB()\n\t{\n\t\tthis(0);\n\t}", "public DataManager(String PUnit) throws PersistenceException {\n\t\tDataManager.PUnit = PUnit;\n\t\tif (emf == null || !emf.isOpen())\n\t\t\temf = Persistence.createEntityManagerFactory(PUnit);\n\t}", "private BookmarkStore() {\n }", "Constructor() {\r\n\t\t \r\n\t }", "public SqliteModelFactoryImpl()\n {\n super();\n }", "EMInitializer() {\r\n try {\r\n emf = Persistence.createEntityManagerFactory(\"pl.polsl_MatchStatist\"\r\n + \"icsWeb_war_4.0-SNAPSHOTPU\");\r\n em = emf.createEntityManager();\r\n } catch (Exception e) {\r\n em = null;\r\n emf = null;\r\n }\r\n\r\n }", "public LPMapdataDaoImpl() {\r\n\t\t\r\n\t}", "public Store() {\r\n\t\tsuper();\r\n\t}", "public Storage() {\n\n }", "private PurchaseDAO(){\n }", "public ProtocoloDAO() {\n }", "private DepartmentManager() {\n }", "public DerivedPartOfPerspectivesFKDAOJDBC() {\n \t\n }", "public DescritoresDAO() {\n\t\t\n\t}", "private ReportRepository() {\n ConnectionBD BD = ConnectionBD.GetInstance();\n this.con = BD.GetConnection();\n this.itemInfoFactory = ItemInfoFactory.GetInstance();\n }" ]
[ "0.7936671", "0.73514533", "0.7336566", "0.73043853", "0.71776044", "0.71132946", "0.70586324", "0.70286953", "0.7005958", "0.6945958", "0.6822129", "0.68004376", "0.67985743", "0.6797105", "0.6769412", "0.67536867", "0.67449325", "0.67400485", "0.6725626", "0.6701872", "0.6690136", "0.6684516", "0.6680121", "0.6630355", "0.6628972", "0.66233695", "0.6606819", "0.6603976", "0.65998214", "0.6596412", "0.65951216", "0.65904087", "0.6579423", "0.65708584", "0.6555065", "0.65545595", "0.6545765", "0.6545641", "0.6538962", "0.6527717", "0.6523332", "0.6520997", "0.65158796", "0.64885", "0.6484933", "0.64831775", "0.6481276", "0.64812577", "0.64781755", "0.646904", "0.64658266", "0.64563674", "0.64563674", "0.6450161", "0.64424413", "0.6438002", "0.64371157", "0.64193535", "0.64132035", "0.6412456", "0.640604", "0.64030635", "0.6398702", "0.6382066", "0.63726914", "0.6367073", "0.63622314", "0.6350437", "0.6349486", "0.6349192", "0.6343054", "0.63364756", "0.63354576", "0.6324491", "0.6321557", "0.6321061", "0.6316547", "0.6314163", "0.6308364", "0.62935853", "0.6290908", "0.6287426", "0.6287177", "0.6285928", "0.6275998", "0.62753785", "0.6264487", "0.62638885", "0.6257938", "0.6256741", "0.6251043", "0.62453544", "0.62434584", "0.62421405", "0.6240475", "0.62371695", "0.62233675", "0.6222122", "0.62177056", "0.6211546", "0.62043256" ]
0.0
-1
Create a new SecurityObject with a name.
public SecurityObject(String name) { this.name = name; LOGGER.debug("SecurityObject#co [name=" + name + "]"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static Security_I create()\r\n\t\t{\r\n\t\treturn new Security();\r\n\t\t}", "public SecurityObject(@NotNull final String name, String description) {\n\t\tLOGGER.debug(\"SecurityObject#co [name=\" + name + \", description=\" + description + \"]\");\n\n\t\tthis.name = name;\n\t\tthis.description = description;\n\t}", "private static Principal getPrincipal(String name) {\n return new Principal() {\n @Override\n public String getName() {\n return name;\n }\n };\n }", "FutureSecureMap<KeyType, ValueType> create(String name);", "public Permission( String objName )\n {\n this.objName = objName;\n }", "public void setName(final String name) {\n\t\tLOGGER.debug(\"SecurityObject#setName [name=\" + name + \"]\");\n\n\t\tthis.name = name;\n\t}", "public Service(final @org.jetbrains.annotations.NotNull software.constructs.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String name) {\n super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);\n software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, \"scope is required\"), java.util.Objects.requireNonNull(name, \"name is required\") });\n }", "public Object ejbCreateObject(final String name) throws CreateException {\n final StringTokenizer st = new StringTokenizer(name, \" \");\n setFirstName(st.nextToken());\n setLastName(st.nextToken());\n return null;\n }", "public static Object createObject(String className) throws Exception {\n return createObject(Class.forName(className));\n }", "private Security() { }", "public Student( String name ) {\n sname=name;\n }", "public IAuthorizationPrincipal newPrincipal(String key, Class type);", "public Student(String name) {\n\n this.name = name;\n }", "public MyObject(String objectName){\n\n this.objectName = objectName;\n }", "PlayerBean create(String name);", "public Student(String name) {\n this.name = name;\n }", "private static Object createObject(String className, String namespace) {\n try {\n // get constructor\n Constructor<?> constructor = Class.forName(className).getConstructor(new Class[] {String.class});\n // create object\n return constructor.newInstance(new Object[] {namespace});\n } catch (ClassNotFoundException cnfe) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", cnfe);\n } catch (NoSuchMethodException nsme) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", nsme);\n } catch (InstantiationException ie) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", ie);\n } catch (IllegalAccessException iae) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", iae);\n } catch (InvocationTargetException ite) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", ite);\n }\n }", "public Factory(NamedObj container, String name)\n\t\t\t\tthrows IllegalActionException, NameDuplicationException {\n\t\t\tsuper(container, name);\n\t\t}", "SecurityScope createSecurityScope();", "@ServiceMethod(returns = ReturnType.SINGLE)\n public SecurityOperatorInner createOrUpdate(String pricingName, String securityOperatorName) {\n return createOrUpdateWithResponse(pricingName, securityOperatorName, Context.NONE).getValue();\n }", "public static Object create(String className) throws CreateObjectException {\r\n\t\treturn create(className, null, null);\r\n\r\n\t}", "public UserPrincipal(String name) {\n if (name == null)\n throw new NullPointerException(\"illegal null input\");\n\n this.name = name;\n }", "public Student(String name) { // constructor\n\t\tthis.name = name; \n\t}", "public static Object createObject(String className) {\n try {\n Class<?> aClass = Class.forName(className);\n return createObject(aClass);\n } catch (ClassNotFoundException e) {\n e.printStackTrace();\n }\n return null;\n }", "public User(String n) { // constructor\r\n name = n;\r\n }", "public Yng_Security findByName(String name) {\n\t\treturn securityDao.findByName(name);\r\n\t}", "public MuseologicalObject createObject(String name, Calendar date) {\r\n\t\tthis.name = name;\r\n\t\tthis.date = date;\r\n\t\treturn this;\r\n\t}", "public void createStudent(String name, String ID){}", "public Identificador(String name) {\r\n this.name = name;\r\n }", "WithCreate withSecurityToken(SourceControlSecurityTokenProperties securityToken);", "private static Player create(String playername) throws GameException {\n\t\ttry {\n\t\t\treturn (Player) createObject(playername);\n\t\t} catch (Exception e) {\n\t\t\tthrow new GameException(\"Player \" + playername + \" not found\");\n\t\t}\n\t}", "@Test\r\n public void testCtorLegalName1() throws IllegalUserNameLengthException,\r\n IllegalUserUsernameLengthException, IllegalUserNameException, IllegalUserRoleException,\r\n IllegalUserUsernameException {\r\n new User(\"username\", Role.DONOR, \"ed\");\r\n }", "public static Object createObject( String className )\n throws WfControllerException\n {\n Object object = null;\n try\n {\n Class classDefinition = Class.forName( className );\n object = classDefinition.newInstance();\n }\n catch ( InstantiationException e )\n {\n WfControllerException controlException = new WfControllerException( e.getMessage() );\n throw controlException;\n }\n catch ( IllegalAccessException e )\n {\n WfControllerException controlException = new WfControllerException( e.getMessage() );\n throw controlException;\n }\n catch ( ClassNotFoundException e )\n {\n WfControllerException controlException = new WfControllerException( e.getMessage() );\n throw controlException;\n }\n return object;\n }", "public User(String name){\n this.name = name;\n }", "Student createStudent();", "Object create(Object source);", "OBJECT createOBJECT();", "public ProductoCreable newInstance(int codigo, String nombre){\r\n \r\n }", "ResourceInstance createResource(String type) {\n Map<Resource.Type, String> mapIds = new HashMap<>();\n mapIds.put(Resource.Type.Cluster, clusterName);\n mapIds.put(Resource.Type.ClusterKerberosDescriptor, type);\n return createResource(Resource.Type.ClusterKerberosDescriptor, mapIds);\n }", "public MetaUser createMetaUser(String sName) throws IOException;", "WithCreate withSecurityProfile(SecurityProfile securityProfile);", "public static Object newInstance(String classname) {\n return newInstance(classname, Object.class);\n }", "protected Object createObject( final String objectName, final String type )\n throws AntException\n {\n try\n {\n final Class clazz = Class.forName( objectName );\n return clazz.newInstance();\n }\n catch( final IllegalAccessException iae )\n {\n throw new AntException( \"Non-public constructor for \" + type + \" \" + objectName, \n iae );\n }\n catch( final InstantiationException ie )\n {\n throw new AntException( \"Error instantiating class for \" + type + \" \" + objectName, \n ie );\n }\n catch( final ClassNotFoundException cnfe )\n {\n throw new AntException( \"Could not find the class for \" + type + \" \" + objectName, \n cnfe );\n }\n }", "Student(String name){\n this.name = name;\n }", "public abstract ServiceLocator create(String name);", "static boolean registerStudent(String name, String id, String username, String password, String major) {\r\n Student student = new Student();\r\n if (!StudentSystem.accounts.containsKey(username)) {\r\n student.setName(name);\r\n student.setId(id);\r\n student.setUsername(username);\r\n student.setPassword(password);\r\n student.setMajor(major);\r\n student.setAccountType(1);\r\n\r\n accounts.put(username, student);\r\n return true;\r\n }\r\n return false;\r\n }", "private UserRole(String name) {\n\t\tthis.name = name;\n\t}", "public Service(final @org.jetbrains.annotations.NotNull software.constructs.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String name, final @org.jetbrains.annotations.Nullable imports.k8s.ServiceOptions options) {\n super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);\n software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, \"scope is required\"), java.util.Objects.requireNonNull(name, \"name is required\"), options });\n }", "public Student(String name) {\n this.nameProp.set(name);\n }", "public Object createNew(String typename, Object... args) \n\t\tthrows \tIllegalAccessException, \n\t\t\tInstantiationException, \n\t\t\tClassNotFoundException,\n\t\t\tNoSuchMethodException,\n\t\t\tInvocationTargetException \n\t{\n\t\tswitch(args.length) \n\t\t{\n\t\tcase 1 : return Class.forName(typename).getConstructor(args[0].getClass()).newInstance(args[0]);\n\t\tcase 2 : return Class.forName(typename).getConstructor(args[0].getClass(), args[1].getClass()).\n\t\t\tnewInstance(args[0], args[1]);\n\t\t}\n\t\treturn null;\n\t}", "public Permission( String objName, String opName )\n {\n this.objName = objName;\n this.opName = opName;\n }", "public User(String name) {\r\n\t\tthis.name = name;\r\n\t}", "License createLicense();", "protected ObjectName createObjectName() throws IOException {\n Hashtable map = new Hashtable(connectorName.getKeyPropertyList());\n map.put(\"Type\", \"Connection\");\n map.put(\"Connection\", connectionId);\n try {\n return new ObjectName(connectorName.getDomain(), map);\n }\n catch (Throwable e) {\n throw IOExceptionSupport.create(e);\n }\n }", "public static void main(String[] args) throws InstantiationException, IllegalAccessException, ClassNotFoundException, NoSuchMethodException, SecurityException, IllegalArgumentException, InvocationTargetException, CloneNotSupportedException {\n\t\tStudent st = new Student();\n\t\tst.setName(\"Madan\");\n\t\t\n\t\t//2 Using new instance method of class\n\t\tStudent st1 = (Student) Class.forName(\"com.home.Student\").newInstance();\n\t\tst1.setName(\"Mohan\");\n\t\t\n\t\t\n\t\t//3 using new instance of constructor\n\t\tConstructor<Student> cs = Student.class.getConstructor();\t\t\n\t\tStudent st2 = cs.newInstance();\n\t\tst2.setName(\"Nautiyal\");\n\t\t\n\t\t//4 using clone method\n\t\tStudent st3 = (Student) st.clone();\n\t\t\n\t\t\n\t\tSystem.out.println(\"Object 1 \" + st.getName());\n\t\tSystem.out.println(\"Object 2 \"+ st1.getName());\n\t\tSystem.out.println(\"Object 3 \"+st2.getName());\n\t\tSystem.out.println(\"Object 4 \"+st3.getName());\n\n\t\t\n\t}", "public TeamObject(String name) {\n\t\tthis();\t\t//call the first constructor to build the lock buttons\n\t\tteamName = name;\n\t}", "public Person(String inName)\n {\n name = inName;\n }", "public Permission( String objName, String opName, String objId )\n {\n this.objName = objName;\n this.opName = opName;\n this.objId = objId;\n }", "public Student(String requiredStudentName)\n {\n studentName = requiredStudentName;\n }", "private String createUser(String name) {\n\t\treturn null;\n\t}", "Student(int i, String n) {\n id = i;\n name = n;\n }", "public User(String name) {\n this(UUID.randomUUID().toString(), name, String.format(\"User account for %s\", name) );\n }", "OctetString getSecurityName();", "public void createInstance(String className, String instanceName)\r\n\t{\r\n\t\t\r\n\t\tOntClass c = obtainOntClass(className);\r\n\t\t\r\n\t\tString longName;\r\n\t\tif(instanceName.contains(\"#\"))\r\n\t\t\tlongName = instanceName;\r\n\t\tif(instanceName.contains(\":\"))\r\n\t\t\tlongName= ONT_MODEL.expandPrefix(instanceName);\r\n\t\telse\r\n\t\t\tlongName = BASE_NS + instanceName;\r\n\t\t\r\n\t\tc.createIndividual(longName);\r\n\t}", "public Clone(String name) {\n this(name, null);\n }", "private PoliticalSystem(String name) {\n\t\tthis.name = name;\n\t}", "public ImmutableObject modifiedName(String name) {\n return new ImmutableObject(this.id, name);\n }", "private ConfigurationObject createObject(String name, String type) throws Exception {\r\n ConfigurationObject object = new DefaultConfigurationObject(name);\r\n object.setPropertyValue(PROPERTY_TYPE, type);\r\n\r\n return object;\r\n }", "public Car createCar(String name, String modelName, String type) {\r\n return new Car(name, modelName, type);\r\n }", "private static FuncionalidadeCustos create(String id, String name) {\n FuncionalidadeCustos result = new FuncionalidadeCustos(id, name);\n addToMap(id, result);\n return result;\n }", "public CoinbaseAccount createCoinbaseAccount(String name) throws IOException {\n\n class Payload {\n @JsonProperty\n String name;\n Payload(String name) {\n this.name = name;\n }\n }\n \n Payload payload = new Payload(name);\n\n String path = \"/v2/accounts\";\n String apiKey = exchange.getExchangeSpecification().getApiKey();\n BigDecimal timestamp = coinbase.getTime(Coinbase.CB_VERSION_VALUE).getData().getEpoch();\n String body = new ObjectMapper().writeValueAsString(payload);\n String signature = getSignature(timestamp, HttpMethod.POST, path, body);\n showCurl(HttpMethod.POST, apiKey, timestamp, signature, path, body);\n \n return coinbase.createAccount(MediaType.APPLICATION_JSON, Coinbase.CB_VERSION_VALUE, apiKey, signature, timestamp, payload).getData();\n }", "public void create(){}", "public Company(String s)\n\t{\n\t\tname = s;\n\t}", "Student(String name) {\n\t\tthis.name = name;\n\t\tregisteredCourses = new Course[30];\n\t}", "public Name() {\n\n }", "public CourseRegInstance getInstance(String name) throws IOException;", "public ElytronPermission(final String name) {\n this(Name.of(name));\n }", "private Customer createCustomerInstance(String name, String email, String phoneNumber) {\n Customer customer = new Customer();\n customer.setName(name);\n customer.setEmail(email);\n customer.setPhoneNumber(phoneNumber);\n return customer;\n }", "public CyberPet ( String str )\r\n {\r\n name = str;\r\n }", "public EC2SecurityGroup createSecurityGroup(String groupName, String groupDesc) {\n EC2SecurityGroup sg = new EC2SecurityGroup();\n try {\n CloudStackSecurityGroup grp = getApi().createSecurityGroup(groupName, null, groupDesc, null);\n if (grp != null && grp.getId() != null) {\n sg.setId(grp.getId());\n }\n } catch (Exception e) {\n logger.error(\"EC2 CreateSecurityGroup - \", e);\n handleException(e);\n }\n return sg;\n }", "public Student(String name, String SSN) {\n this.name = name;\n this.SSN = SSN;\n System.out.println(\"Student: \" + name + \", email: \" + generateEmail(name) + \", ID: \" + generateID(SSN));\n }", "public NamedEntity(String name) { this(name, \"\"); }", "Account create();", "public Stripes(String name)\r\n {\r\n super(name);\r\n\t}", "public static GenericRoleVoter createInstance(RolePermission namedRole) {\n // Never null (called from be.atbash.ee.security.octopus.provider.NamedRoleProducer#getVoter()\n\n GenericRoleVoter result = new GenericRoleVoter();\n result.subject = CDIUtils.retrieveInstance(Subject.class);\n result.permission = namedRole;\n return result;\n }", "private Filter makeFilter(String filterName) {\r\n Class c = null;\r\n Filter f = null;\r\n try {\r\n c = Class.forName(filterName);\r\n f = (Filter) c.newInstance();\r\n } catch (Exception e) {\r\n System.out.println(\"There was a problem to load the filter class: \"\r\n + filterName);\r\n }\r\n return f;\r\n }", "public void testCreateKeyWithName() {\n Key key = KeyFactory.createKey(kind, name);\n assertEquals(name, key.getName());\n assertEquals(kind, key.getKind());\n assertEquals(0L, key.getId());\n }", "public Employee(String Name) {\r\n this.Name = Name;\r\n }", "<U extends T> U create(String name, Class<U> type) throws InvalidUserDataException;", "public Card(String name) {\n setValue(name);\n }", "protected Gate( String n ) {\n name = n;\n }", "public Customer(String name) {\n this.name=name;\n }", "public static Account createNewAccount(String GID, String name) {\r\n\t\t\r\n\t\tString[] emailParts = GID.split(\"@\"); \r\n\t\t\r\n\t\t//Check if this Account is already stored\r\n\t\tString fileName = name + \"_\" + emailParts[0] + \"_\" + emailParts[1]; \r\n\t\t\r\n\t\tFile f = new File(fileName);\r\n\t\t\r\n\t\tif(f.exists()) {\r\n\t\t try {\r\n\t\t //use buffering\r\n\t\t InputStream file = new FileInputStream(fileName);\r\n\t\t InputStream buffer = new BufferedInputStream(file);\r\n\t\t ObjectInput input = new ObjectInputStream(buffer);\r\n\t\t \r\n\t\t try {\r\n\t\t\t //deserialize the Account object\r\n\t\t\t Account recoveredAccount = (Account)input.readObject();\r\n\t\t\t currentAccount = recoveredAccount;\r\n\t\t\t return recoveredAccount;\r\n\t\t }\r\n\t\t \r\n\t\t finally {\r\n\t\t \tinput.close();\r\n\t\t }\r\n\t\t }\r\n\t\t \r\n\t\t catch(ClassNotFoundException ex){\r\n\t\t \tSystem.out.println(\"Cannot perform input. Class not found.\");\r\n\t\t \treturn createAndStoreAccount(fileName, GID, name);\r\n\t\t }\r\n\t\t catch(IOException ex){\r\n\t\t System.out.println(\"Cannot perform input.\");\r\n\t\t return createAndStoreAccount(fileName, GID, name);\r\n\t\t }\r\n\t\t \r\n\t\t} else {\r\n\t\t\treturn createAndStoreAccount(fileName, GID, name);\r\n\t\t}\r\n\t}", "protected ObjectName createObjectName(String mBeanName) throws Exception \n {\n ObjectName objectName = new ObjectName(mBeanName);\n return objectName;\n }", "public static RegistryOperations createInstance(String name, Configuration conf) {\n Preconditions.checkArgument(conf != null, \"Null configuration\");\n RegistryOperationsClient operations =\n new RegistryOperationsClient(name);\n operations.init(conf);\n return operations;\n }", "public Customer(String name) {\n this.name = name;\n }", "public CourseRegInstance newInstance(String edma_name, SchoolInfo schoolInfo) throws IOException;", "public Name createName() {\n\t\treturn null;\n\t}", "private Customer createCustomerInstanceWithId(String name, String email, String phoneNumber) {\n Customer customer = new Customer();\n customer.setId(1000L);\n customer.setName(name);\n customer.setEmail(email);\n customer.setPhoneNumber(phoneNumber);\n return customer;\n }", "public static GenericRoleVoter createInstance(ApplicationRole namedRole) {\n if (namedRole == null) {\n throw new AtbashIllegalActionException(\"(OCT-DEV-008) namedRole can't be null\");\n }\n\n GenericRoleVoter result = new GenericRoleVoter();\n result.subject = CDIUtils.retrieveInstance(Subject.class);\n result.permission = new RolePermission(namedRole.name());\n return result;\n }" ]
[ "0.6593724", "0.63103855", "0.597164", "0.5959388", "0.58507514", "0.58419734", "0.5774224", "0.56211835", "0.5616928", "0.552338", "0.5517071", "0.54293174", "0.54093784", "0.54000336", "0.539542", "0.53804576", "0.5366242", "0.5361068", "0.5353097", "0.5331079", "0.532976", "0.529907", "0.5288825", "0.5275623", "0.5268593", "0.52653784", "0.5241583", "0.5224365", "0.5221821", "0.5207235", "0.5203565", "0.519984", "0.5189464", "0.5189378", "0.51867855", "0.5182814", "0.5164265", "0.516275", "0.5134267", "0.51238215", "0.5123676", "0.51176965", "0.5110827", "0.51020074", "0.5098326", "0.5074782", "0.50702405", "0.5063906", "0.5058062", "0.5055795", "0.50504225", "0.5046689", "0.5042491", "0.503913", "0.50188565", "0.50143135", "0.500642", "0.5006139", "0.50042516", "0.5002338", "0.49919495", "0.4982434", "0.49809164", "0.4977982", "0.49676389", "0.49661213", "0.49606496", "0.49573553", "0.4949625", "0.4937079", "0.49324894", "0.49310285", "0.49271697", "0.49269187", "0.49232656", "0.4922688", "0.4918413", "0.49155417", "0.49122888", "0.49100688", "0.4904687", "0.49029487", "0.490239", "0.489149", "0.4891305", "0.4890615", "0.48876125", "0.4877149", "0.48754844", "0.48744097", "0.48723304", "0.48696905", "0.4861284", "0.485619", "0.48492303", "0.48467436", "0.48453346", "0.4841291", "0.48355556", "0.4830507" ]
0.7758968
0
Create a new SecurityObject with name and description.
public SecurityObject(@NotNull final String name, String description) { LOGGER.debug("SecurityObject#co [name=" + name + ", description=" + description + "]"); this.name = name; this.description = description; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public SecurityObject(String name) {\n\t\tthis.name = name;\n\n\t\tLOGGER.debug(\"SecurityObject#co [name=\" + name + \"]\");\n\t}", "public static Security_I create()\r\n\t\t{\r\n\t\treturn new Security();\r\n\t\t}", "public EC2SecurityGroup createSecurityGroup(String groupName, String groupDesc) {\n EC2SecurityGroup sg = new EC2SecurityGroup();\n try {\n CloudStackSecurityGroup grp = getApi().createSecurityGroup(groupName, null, groupDesc, null);\n if (grp != null && grp.getId() != null) {\n sg.setId(grp.getId());\n }\n } catch (Exception e) {\n logger.error(\"EC2 CreateSecurityGroup - \", e);\n handleException(e);\n }\n return sg;\n }", "private Security() { }", "WithCreate withSecurityProfile(SecurityProfile securityProfile);", "License createLicense();", "WithCreate withDescription(String description);", "WithCreate withDescription(String description);", "public Permission( String objName )\n {\n this.objName = objName;\n }", "OBJECT createOBJECT();", "WithCreate withSecurityToken(SourceControlSecurityTokenProperties securityToken);", "protected SecurityObject() {\n\t\t// Used by JPA provider.\n\n\t\tLOGGER.debug(\"SecurityObject#co\");\n\t}", "public abstract String createNewObject(OwResource resource_p, String strObjectClassName_p, OwPropertyCollection properties_p, OwPermissionCollection permissions_p, OwContentCollection content_p, OwObject parent_p, String strMimeType_p,\r\n String strMimeParameter_p) throws Exception;", "public ProductoCreable newInstance(int codigo, String nombre){\r\n \r\n }", "Student createStudent();", "public SecurityUser() {\n\t\tsuper();\n\t}", "FutureSecureMap<KeyType, ValueType> create(String name);", "public void create(){}", "SecurityScope createSecurityScope();", "public SecurityMB() {\n }", "private static Object createObject(String className, String namespace) {\n try {\n // get constructor\n Constructor<?> constructor = Class.forName(className).getConstructor(new Class[] {String.class});\n // create object\n return constructor.newInstance(new Object[] {namespace});\n } catch (ClassNotFoundException cnfe) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", cnfe);\n } catch (NoSuchMethodException nsme) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", nsme);\n } catch (InstantiationException ie) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", ie);\n } catch (IllegalAccessException iae) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", iae);\n } catch (InvocationTargetException ite) {\n throw new ReviewerStatisticsConfigurationException(\n \"error occurs when trying to create object via reflection.\", ite);\n }\n }", "@POST( CONTROLLER )\n VersionedObjectKey createObject( @Body CreateObjectRequest request );", "public Card(String name, String description) {\n\t\tthis.name = name;\n\t\tthis.description = description;\n\t}", "public IAuthorizationPrincipal newPrincipal(String key, Class type);", "Information createInformation();", "Object create(Object source);", "interface WithSecurityProfile {\n /**\n * Specifies the securityProfile property: The lab security profile..\n *\n * @param securityProfile The lab security profile.\n * @return the next definition stage.\n */\n WithCreate withSecurityProfile(SecurityProfile securityProfile);\n }", "ResourceInstance createResource(String type) {\n Map<Resource.Type, String> mapIds = new HashMap<>();\n mapIds.put(Resource.Type.Cluster, clusterName);\n mapIds.put(Resource.Type.ClusterKerberosDescriptor, type);\n return createResource(Resource.Type.ClusterKerberosDescriptor, mapIds);\n }", "public Object ejbCreateObject(final String name) throws CreateException {\n final StringTokenizer st = new StringTokenizer(name, \" \");\n setFirstName(st.nextToken());\n setLastName(st.nextToken());\n return null;\n }", "public static Object create(String className) throws CreateObjectException {\r\n\t\treturn create(className, null, null);\r\n\r\n\t}", "public Student( String name ) {\n sname=name;\n }", "public void create() {\n String salt = PasswordUtils.getSalt(30);\n\n // Protect user's password. The generated value can be stored in DB.\n String mySecurePassword = PasswordUtils.generateSecurePassword(password, salt);\n\n // Print out protected password\n System.out.println(\"My secure password = \" + mySecurePassword);\n System.out.println(\"Salt value = \" + salt);\n Operator op = new Operator();\n op.setUsername(username);\n op.setDescription(description);\n op.setSalt(salt);\n op.setPassword(mySecurePassword);\n op.setRol(rol);\n operatorService.create(op);\n message = \"Se creo al usuario \" + username;\n username = \"\";\n description = \"\";\n password = \"\";\n rol = null;\n }", "public Service(final @org.jetbrains.annotations.NotNull software.constructs.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String name) {\n super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);\n software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, \"scope is required\"), java.util.Objects.requireNonNull(name, \"name is required\") });\n }", "Accessprofile create(Accessprofile accessprofile);", "public MyObject(String objectName){\n\n this.objectName = objectName;\n }", "public static void main(String[] args) throws InstantiationException, IllegalAccessException, ClassNotFoundException, NoSuchMethodException, SecurityException, IllegalArgumentException, InvocationTargetException, CloneNotSupportedException {\n\t\tStudent st = new Student();\n\t\tst.setName(\"Madan\");\n\t\t\n\t\t//2 Using new instance method of class\n\t\tStudent st1 = (Student) Class.forName(\"com.home.Student\").newInstance();\n\t\tst1.setName(\"Mohan\");\n\t\t\n\t\t\n\t\t//3 using new instance of constructor\n\t\tConstructor<Student> cs = Student.class.getConstructor();\t\t\n\t\tStudent st2 = cs.newInstance();\n\t\tst2.setName(\"Nautiyal\");\n\t\t\n\t\t//4 using clone method\n\t\tStudent st3 = (Student) st.clone();\n\t\t\n\t\t\n\t\tSystem.out.println(\"Object 1 \" + st.getName());\n\t\tSystem.out.println(\"Object 2 \"+ st1.getName());\n\t\tSystem.out.println(\"Object 3 \"+st2.getName());\n\t\tSystem.out.println(\"Object 4 \"+st3.getName());\n\n\t\t\n\t}", "com.soa.SolicitarCreditoDocument.SolicitarCredito addNewSolicitarCredito();", "public void createStudent(String name, String ID){}", "@Secured(value=\"CRIAR_LIVRO\")\n\t@Override\n\tpublic IEbook createEbook(IEbook object) {\n\t\t\n\t\tsecurityFacade.saveUserTransaction(\"CRIAR_LIVRO\", object, object.getCollection());\n\t\treturn (IEbook) ebookDataprovider.saveOrUpdate(object);\n\t}", "public SSModel createSSObject() {\n\t\tSSModel ssModel = new SSModel();\n\t\tssModel.create(mol);\n\t\t\n\t\treturn ssModel;\n\t}", "public RepoCreate withDescription(\n final String desc\n ) {\n return new RepoCreate(\n this.nam,\n this.priv,\n desc,\n this.home,\n this.init,\n this.organization\n );\n }", "public de.uni_koblenz.jgralabtest.schemas.gretl.pddsl.Card createCard();", "Secuencia createSecuencia();", "private SharedSecret(String domainName, Certificate creatorCert) {\n super(LENGTH);\n this.init();\n this.setDomainName(domainName);\n this.setCreator(creatorCert);\n }", "@PreAuthorize(\"hasRole('ADMINISTRATOR') OR \"\r\n \t\t\t+ \"((hasRole('EMPLOYEE') OR isAnonymous()) AND \"\r\n \t\t\t+ \"(#userDTO.type.typeLabel == 'CUSTOMERLEGAL' OR #userDTO.type.typeLabel == 'CUSTOMERINDIVIDUAL'))\")\r\n \tpublic SystemUserDTO create(SystemUserDTO userDTO);", "public void setName(final String name) {\n\t\tLOGGER.debug(\"SecurityObject#setName [name=\" + name + \"]\");\n\n\t\tthis.name = name;\n\t}", "public JvnObject jvnCreateObject(Serializable o) throws jvn.JvnException { \n\t\t// to be completed \n\t\tJvnObject jObject = null;\n\t\ttry {\n\t\t\tjObject = new JvnObjectImpl(o, this.jRCoordonator.jvnGetObjectId());\n\t\t\tlistJObject.put(jObject.jvnGetObjectId(), jObject);\n\t\t\tSystem.out.println(\"jvnServerImpl - list Object Create: \" + listJObject.toString());\n\t\t} catch (RemoteException e) {\n\t\t\tSystem.out.println(\"Error creation object : \" + e.getMessage());\n\t\t}\n\t\treturn jObject;\n\t\t//return null; \n\t}", "public SecurityIdentityType<T> setDescription(String description)\n {\n childNode.create(\"description\").text(description);\n return this;\n }", "public Trace createTrace(String name, String description) throws CouldntSaveDataException {\n try {\n return new Trace(m_module.getContent().getTraceContainer().createTrace(name, description));\n } catch (com.google.security.zynamics.binnavi.Database.Exceptions.CouldntSaveDataException e) {\n throw new CouldntSaveDataException(e);\n }\n }", "protected Object createObject( final String objectName, final String type )\n throws AntException\n {\n try\n {\n final Class clazz = Class.forName( objectName );\n return clazz.newInstance();\n }\n catch( final IllegalAccessException iae )\n {\n throw new AntException( \"Non-public constructor for \" + type + \" \" + objectName, \n iae );\n }\n catch( final InstantiationException ie )\n {\n throw new AntException( \"Error instantiating class for \" + type + \" \" + objectName, \n ie );\n }\n catch( final ClassNotFoundException cnfe )\n {\n throw new AntException( \"Could not find the class for \" + type + \" \" + objectName, \n cnfe );\n }\n }", "CreateACLResult createACL(CreateACLRequest createACLRequest);", "protected abstract Object createObjectInternal(ObjectInformation objectInformation) throws FillingException;", "public Student(String name, String SSN) {\n this.name = name;\n this.SSN = SSN;\n System.out.println(\"Student: \" + name + \", email: \" + generateEmail(name) + \", ID: \" + generateID(SSN));\n }", "Authorizor createAuthorizor();", "public void createCalendar(String calendarName, String description) {\n /*\n https://stackoverflow.com/questions/136419/get-integer-value-of-the-current-year-in-java\n */\n int year = Calendar.getInstance().get(Calendar.YEAR);\n Calendar_ newCalendar = new Calendar_(\n this.userId,\n CalendarTypeEnum.GREGORIAN_CALENDAR,\n year,\n calendarName,\n this.username,\n description\n );\n //add new calendar to the user's list of calendars\n calendarsOwned.add(newCalendar);\n }", "public SecurityHandler customObject(Object object) {\n return builder(this).customObject(object).build();\n }", "public CMObject newInstance();", "public Builder info(SecurityInfo info) {\n JodaBeanUtils.notNull(info, \"info\");\n this.info = info;\n return this;\n }", "void create(Student entity);", "public SecurityContext(World world) {\n\t\tsuper();\n\t\tthis.whitelist = world.getWhitelist();\n\t\tthis.securityLevel = SecurityLevel.AUTHOR;\n\t\tthis.world = world;\n\t\tthis.entity = null;\n\t\tthis.team = TeamFlavor.AUTHOR;\n\t}", "Student(int i, String n) {\n id = i;\n name = n;\n }", "private Student createStudent(Element studentNode) {\n String serialNumber = studentNode.getAttribute(\"serialNumber\");\n Student b = new Student();\n b.setSerialNumber(serialNumber);\n\n b.setName(getTextFromTagName(studentNode, \"name\"));\n b.setGroup(Integer.valueOf(getTextFromTagName(studentNode, \"group\")));\n b.setId(Long.valueOf(getTextFromTagName(studentNode, \"id\")));\n\n return b;\n }", "public CourseRegInstance newInstance(String edma_name, SchoolInfo schoolInfo) throws IOException;", "public Permission( String objName, String opName, String objId )\n {\n this.objName = objName;\n this.opName = opName;\n this.objId = objId;\n }", "private ConfigurationObject createObject(String name, String type) throws Exception {\r\n ConfigurationObject object = new DefaultConfigurationObject(name);\r\n object.setPropertyValue(PROPERTY_TYPE, type);\r\n\r\n return object;\r\n }", "Account create();", "@Override\n public ConcurrentContentSigner newSigner(\n String type, SignerConf conf, X509Cert[] certificateChain)\n throws ObjectCreationException {\n type = type.toLowerCase(Locale.ROOT);\n if (!types.contains(type)) {\n throw new ObjectCreationException(\"unknown signer type \" + type);\n }\n\n String str = conf.getConfValue(\"parallelism\");\n int parallelism = 20;\n if (str != null) {\n try {\n parallelism = Integer.parseInt(str);\n } catch (NumberFormatException ex) {\n throw new ObjectCreationException(\"invalid parallelism \" + str);\n }\n\n if (parallelism < 1) {\n throw new ObjectCreationException(\"invalid parallelism \" + str);\n }\n }\n\n str = conf.getConfValue(\"alias\");\n if (str == null) {\n throw new ObjectCreationException(\"alias is not specified\");\n }\n int keyId = Integer.parseInt(str);\n\n String algoName = conf.getConfValue(\"algo\");\n if (algoName == null) {\n throw new ObjectCreationException(\"algo is not specified\");\n }\n\n try {\n InitStatus initStatus = init(type);\n if (initStatus.status.get() != 1) {\n throw new ObjectCreationException(initStatus.details);\n }\n\n SignAlgo algo = SignAlgo.getInstance(algoName);\n String keyAlgoName;\n String bcKeyAlgoName;\n if (algo.isSM2SigAlgo()) {\n keyAlgoName = \"SM2\";\n bcKeyAlgoName = \"EC\";\n } else if (algo.isRSAPkcs1SigAlgo() || algo.isRSAPSSSigAlgo()) {\n keyAlgoName = \"RSA\";\n bcKeyAlgoName = \"RSA\";\n } else if (algo.isECDSASigAlgo() || algo.isPlainECDSASigAlgo()) {\n keyAlgoName = \"EC\";\n bcKeyAlgoName = \"EC\";\n } else {\n throw new ObjectCreationException(\"unsupported algo \" + algoName);\n }\n\n Provider provider = providerMap.get(type);\n\n // Method to read create PrivateKey and PublicKey object.\n // SANSEC use KeyPairGenerator.generateKeyPair to read the keypair-\n // No new keypair will be generated here.\n KeyPairGenerator kpGen = KeyPairGenerator.getInstance(keyAlgoName, provider);\n kpGen.initialize(keyId << 16);\n KeyPair kp = kpGen.generateKeyPair();\n\n PublicKey publicKey = KeyFactory.getInstance(bcKeyAlgoName, \"BC\")\n .generatePublic(new X509EncodedKeySpec(kp.getPublic().getEncoded()));\n\n return new JceSignerBuilder(kp.getPrivate(), publicKey, certificateChain, provider)\n .createSigner(algo, parallelism);\n } catch (GeneralSecurityException | XiSecurityException ex) {\n throw new ObjectCreationException(ex.getMessage(), ex);\n }\n }", "ObjectResource createObjectResource();", "public CreateCourse() {\r\n super(\"Create Course\", \"Creates a course\", \"`!createcourse`\", commands, \"admin\");\r\n this.requiredUserPermissions = new Permission[]{Permission.ADMINISTRATOR}; // User must have administrator privileges\r\n }", "public static Object createObject(String className) throws Exception {\n return createObject(Class.forName(className));\n }", "public Student(String name) {\n\n this.name = name;\n }", "public Student(String name) {\n this.name = name;\n }", "@Test\r\n public void testCtorLegalName1() throws IllegalUserNameLengthException,\r\n IllegalUserUsernameLengthException, IllegalUserNameException, IllegalUserRoleException,\r\n IllegalUserUsernameException {\r\n new User(\"username\", Role.DONOR, \"ed\");\r\n }", "public Student(String requiredStudentName)\n {\n studentName = requiredStudentName;\n }", "OperacionColeccion createOperacionColeccion();", "public Secure() {\n\t\tsuper();\n\t}", "public Student(String name) { // constructor\n\t\tthis.name = name; \n\t}", "private static void genSecGroup() {\n\t\tSystem.out.println(\"This Program will generate a security group\");\n\t\tSystem.out.println(\"with the name bitcrusher and ssh ability for\");\n\t\tSystem.out.println(\"your ip address.\");\n\t\ttry{\n\t\t\tCreateSecurityGroupRequest secGrpRequest = new CreateSecurityGroupRequest(\"bitcrusher\", \"Ingress group for AWSTool\");\n\t\t\tCreateSecurityGroupResult res = ec2.createSecurityGroup(secGrpRequest);\n\t\t\tSystem.out.println(\"Group \" + res.getGroupId() + \"created.\");\n\t\t\t\n\t\t}catch(AmazonServiceException ase){\n\t\t\tSystem.out.println(\"Group exists. If needed set permissions with -ip option\");\n\t\t\tSystem.exit(0);\n\t\t}\n\t\t\n\t\tString ip = \"0.0.0.0/0\";\n\t\t\n\t\t\n\t\tList<String> ipRanges = Collections.singletonList(ip);\n\t\t\n\t\tIpPermission ipPerm = new IpPermission();\n\t\tipPerm.setFromPort(SSH);\n\t\tipPerm.setToPort(SSH);\n\t\tipPerm.setIpRanges(ipRanges);\n\t\tipPerm.setIpProtocol(\"tcp\");\n\t\t\n\t\tList<IpPermission> ipPermList = Collections.singletonList(ipPerm);\n\t\t\n\t\ttry{\n\t\t\tAuthorizeSecurityGroupIngressRequest ingRequest = \n\t\t\t\t\tnew AuthorizeSecurityGroupIngressRequest(\"bitcrusher\", ipPermList);\n\t\t\tec2.authorizeSecurityGroupIngress(ingRequest);\n\t\t\tSystem.out.println(\"Your ip has been authorized with the bitcrusher group.\");\n\t\t\t\n\t\t}catch(AmazonServiceException e){\n\t\t\tSystem.out.println(\"Ip already authorized\");\n\t\t\tSystem.exit(0);\n\t\t}\n\t}", "public com.alain.puntocoma.model.Catalogo create(long catalogoId);", "public Person(String name, String surname) {\n this.name = name;\n this.surname = surname;\n }", "interface WithSecurityToken {\n /**\n * Specifies the securityToken property: The authorization token for the repo of the source control..\n *\n * @param securityToken The authorization token for the repo of the source control.\n * @return the next definition stage.\n */\n WithCreate withSecurityToken(SourceControlSecurityTokenProperties securityToken);\n }", "public Permission( String objName, String opName )\n {\n this.objName = objName;\n this.opName = opName;\n }", "private Object createObject(ObjectFactory objectFactory, String objectKey, Class<?> type)\r\n throws CockpitConfigurationException {\r\n try {\r\n Object obj = objectFactory.createObject(objectKey);\r\n\r\n if (!type.isInstance(obj)) {\r\n throw new CockpitConfigurationException(\"The configured object for key [\" + objectKey\r\n + \"] is not an instance of \" + type.getName());\r\n }\r\n\r\n return obj;\r\n } catch (InvalidClassSpecificationException e) {\r\n throw new CockpitConfigurationException(\r\n \"InvalidClassSpecificationException occurs while creating object with key [\" + objectKey\r\n + \"] using object factory\", e);\r\n }\r\n }", "RentalObject createRentalObject();", "public Car(String description)\r\n {\r\n this.description = description;\r\n customersName = \"\";\r\n }", "public ESPDevice createESPDevice(ESPConstants.TransportType transportType, ESPConstants.SecurityType securityType) {\n\n espDevice = new ESPDevice(context, transportType, securityType);\n return espDevice;\n }", "public void createCourse(String courseName, int courseCode){}", "public User(String n) { // constructor\r\n name = n;\r\n }", "@Override\r\n\tpublic int create(Object value) throws Exception {\r\n\t\t\t\t\t\r\n\t\t//Default error\r\n\t\tint result = Errors.NO_ERROR;\r\n\t\t\t\t\t\t\r\n\t\t//Verify class\t\t\r\n\t\tif (value.getClass()!=CentroVO.class) \r\n\t\t\tthrow (new Exception(\"Not valid class\")); \r\n\t\t\t\t\t\r\n\t\tCentroVO center = (CentroVO)value;\r\n\t\t\t\t\r\n\t\t// Verify used licenses\r\n\t\tLOG.info(\"Verifying licenses\");\r\n\t\t\r\n\t\t//Verificamos que existan suficientes licencias disponibles para \r\n\t\t//la solicitud realizada\t\t\r\n\t\tif (licenseService.getEnabledLicensesCenter(Constants.NOT_CREATED)<center.getLicencias()) {\r\n\t\t\tresult = Errors.MAX_LICENSES;\r\n\t\t}\t\t\r\n\t\t\r\n\t\tif (result >=0){\r\n\t\t\tLOG.debug(\"Calling create center\");\r\n\t \r\n\t //Calling service\r\n\t result = service.insertCentro(center);\r\n\t\t}\r\n\t\t\t\t \t\t\t\t\t\t\t\t\r\n\t\treturn result;\t\t\t\t\t\t\t\t\r\n\t}", "static public Product create(String name, String description, double price) {\n\t\t\n\t\tProduct p = new Product();\n\t\tp.name = name;\n\t\tp.description = description;\n\t\tp.price = price;\n\t\t\n\t\treturn p;\n\t}", "public MuseologicalObject createObject(String name, Calendar date) {\r\n\t\tthis.name = name;\r\n\t\tthis.date = date;\r\n\t\treturn this;\r\n\t}", "SUP createSUP();", "protected Object createObjectFromObjectInformation(ObjectInformation objectInformation) throws FillingException {\n\n AbstractCreatorStrategy strategy = getStrategyManager().getStrategyFor(objectInformation);\n\n return strategy.createObject(objectInformation);\n }", "public static void saveSecurity(FieldSecurity fs, HttpServletRequest request)\n throws EnvoyServletException\n {\n try\n {\n fs.put(VendorSecureFields.FIRST_NAME,\n request.getParameter(\"firstName\"));\n fs.put(VendorSecureFields.LAST_NAME,\n request.getParameter(\"lastName\"));\n fs.put(VendorSecureFields.TITLE, request.getParameter(\"title\"));\n fs.put(VendorSecureFields.IS_INTERNAL,\n request.getParameter(\"isInternal\"));\n fs.put(VendorSecureFields.COMPANY,\n request.getParameter(\"companyName\"));\n fs.put(VendorSecureFields.NOTES, request.getParameter(\"notes\"));\n fs.put(VendorSecureFields.AMBASSADOR_ACCESS,\n request.getParameter(\"useInAmbassador\"));\n fs.put(VendorSecureFields.STATUS, request.getParameter(\"status\"));\n fs.put(VendorSecureFields.USERNAME,\n request.getParameter(\"userName\"));\n fs.put(VendorSecureFields.CUSTOM_ID,\n request.getParameter(\"customVendorId\"));\n fs.put(VendorSecureFields.PASSWORD,\n request.getParameter(\"password\"));\n fs.put(VendorSecureFields.CITIZENSHIP,\n request.getParameter(\"countries\"));\n fs.put(VendorSecureFields.DOB, request.getParameter(\"dateOfBirth\"));\n fs.put(VendorSecureFields.ROLES, request.getParameter(\"roles\"));\n fs.put(VendorSecureFields.ADDRESS, request.getParameter(\"address\"));\n fs.put(VendorSecureFields.COUNTRY, request.getParameter(\"country\"));\n fs.put(VendorSecureFields.HOME_PHONE,\n request.getParameter(\"homePhone\"));\n fs.put(VendorSecureFields.WORK_PHONE,\n request.getParameter(\"workPhone\"));\n fs.put(VendorSecureFields.CELL_PHONE,\n request.getParameter(\"cellPhone\"));\n fs.put(VendorSecureFields.FAX, request.getParameter(\"fax\"));\n fs.put(VendorSecureFields.EMAIL, request.getParameter(\"email\"));\n fs.put(VendorSecureFields.EMAIL_LANGUAGE,\n request.getParameter(\"emailLanguage\"));\n fs.put(VendorSecureFields.RESUME, request.getParameter(\"resume\"));\n fs.put(VendorSecureFields.PROJECTS,\n request.getParameter(\"projects\"));\n fs.put(VendorSecureFields.CUSTOM_FIELDS,\n request.getParameter(\"customForm\"));\n\n }\n catch (Exception e)\n {\n throw new EnvoyServletException(e);\n }\n }", "public com.ms3.training.services.model.Course create(java.lang.String title);", "Student(String name){\n this.name = name;\n }", "public static void createCustomer() throws IOException\r\n\t{\r\n\t\tclearScreen();\r\n\t\t\r\n\t\tSystem.out.println(\"[CUSTOMER CREATOR]\\n\");\r\n\t\tSystem.out.println(\"Enter the name of the customer you would like to create:\");\r\n\t\t\r\n\t\t// create a new customer with a user-defined name\r\n\t\tCustomer c = new Customer(inputString(false));\r\n\t\t// add the customer to the ArrayList\r\n\t\tcustomers.add(c);\r\n\t\t// display the edit screen for the customer\r\n\t\teditCustomer(c);\r\n\t}", "public MetaUser createMetaUser(String sName) throws IOException;", "public User createUser() {\n printer.println(\"Welcome! Enter you name and surname:\");\n printer.println(\"Name:\");\n String name = input.nextString();\n printer.println(\"Surname:\");\n String surname = input.nextString();\n return new User(name, surname);\n }", "public Factory(NamedObj container, String name)\n\t\t\t\tthrows IllegalActionException, NameDuplicationException {\n\t\t\tsuper(container, name);\n\t\t}" ]
[ "0.7054301", "0.6575325", "0.5809222", "0.57460886", "0.5647797", "0.54935044", "0.5474262", "0.5474262", "0.5399886", "0.53847814", "0.53724146", "0.52947026", "0.5273708", "0.52618337", "0.52386636", "0.52242965", "0.5219011", "0.5216231", "0.51289433", "0.51170945", "0.5110297", "0.50853634", "0.5075498", "0.50700414", "0.5055019", "0.5054869", "0.5032113", "0.50072664", "0.50035447", "0.5002355", "0.5000206", "0.49903852", "0.49878493", "0.49811578", "0.49653512", "0.49399948", "0.49262914", "0.49163434", "0.49157062", "0.49050707", "0.49041232", "0.4903444", "0.4901491", "0.48994872", "0.4898475", "0.48980814", "0.48934695", "0.48933116", "0.48923668", "0.48724332", "0.48602065", "0.48589656", "0.48569947", "0.48567352", "0.48533997", "0.48492163", "0.48469484", "0.48461702", "0.48428506", "0.48345983", "0.48337767", "0.4831895", "0.4830905", "0.48288536", "0.48275355", "0.48264146", "0.4807209", "0.48065853", "0.48055565", "0.4803674", "0.480062", "0.47954416", "0.4791487", "0.47855827", "0.47831213", "0.47798386", "0.47796667", "0.4764959", "0.47631547", "0.4756257", "0.4746694", "0.47454107", "0.47452396", "0.47359625", "0.47337693", "0.47328097", "0.47322387", "0.47305557", "0.47215828", "0.47208577", "0.472071", "0.47204673", "0.4712628", "0.47026777", "0.4702584", "0.46932682", "0.46930605", "0.46876878", "0.46856692", "0.46808195" ]
0.7357715
0
/ methods Returns the name.
public String getName() { LOGGER.debug("SecurityObject#getName [name=" + this.name + "]"); return this.name; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private String getName() {\n return method.getName();\n }", "java.lang.String getMethodName();", "java.lang.String getMethodName();", "java.lang.String getMethodName();", "java.lang.String getMethodName();", "String getMethodName();", "String getMethodName();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "String name();", "public String name();", "public String name();", "public String name();", "public String name();", "public String name();", "public String name();", "public String name();", "public String name();", "public String name();", "public String getName() {\n return nameRule.getMethodName();\n }", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();", "String getName();" ]
[ "0.81782943", "0.77706885", "0.77706885", "0.77706885", "0.77706885", "0.7709589", "0.7709589", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7531598", "0.7472655", "0.7472655", "0.7472655", "0.7472655", "0.7472655", "0.7472655", "0.7472655", "0.7472655", "0.7472655", "0.7467647", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376", "0.74601376" ]
0.0
-1
Set the name. Necessary for using with Mapstruct.
public void setName(final String name) { LOGGER.debug("SecurityObject#setName [name=" + name + "]"); this.name = name; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setName(String n) {\r\n name = n;\r\n }", "public final void setName(String name) {_name = name;}", "public void setName (String n) {\n name = n;\n }", "public void setName(String inName)\n {\n name = inName;\n }", "public void setName (String n){\n\t\tname = n;\n\t}", "public void setName(String inName)\n {\n\tname = inName;\n }", "public void setName(String name) {\r\n \t\tthis.name = name;\r\n \t}", "public void setName(String name) {\n \tthis.name = name;\n }", "public void setName(String name) {\n \tthis.name = name;\n }", "public void setName(String name)\n \t{\n \t\tthis.name = name;\n \t}", "public void setName(String name){\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name){\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name){\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name)\r\n\t{\t\t\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "@Override\r\n\tpublic void setName(String name) {\n\t\tthis.name = name;\r\n\t}", "public void setName(String nameIn) {\n name = nameIn;\n }", "public void setName(String name) {\t\t\r\n\t\tthis.name = name;\t\t\r\n\t}", "public void setName(String n) {\n this.name = n;\n }", "public void setName (String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name)\r\n {\r\n\tthis.name = name;\r\n }", "@Override\n public void setName(String name) {\n this.name = name;\n }", "@Override\n public void setName(String name) {\n this.name = name;\n }", "public void setName(String name) {\r\n\t\t_name = name;\r\n\t}", "public void setName(String s) {\n this.name = s;\n }", "@Override\n public void setName(String name) {\n this.name = name;\n }", "@Override\n public void setName(String name) {\n this.name = name;\n }", "public void setName(String name) { this.name = name; }", "public void setName(String name) { this.name = name; }", "public void setName(String name) { this.name = name; }", "public void setName(String name) { this.name = name; }", "public void setName (String name) {\n this.name = name;\n }", "public void setName (String name) {\n this.name = name;\n }", "public void setName (String name) {\n this.name = name;\n }", "public void setName(final String name) {\n this.name = name;\n }", "public void setName(final String name) {\n this.name = name;\n }", "public void setName(String name)\r\n {\r\n this.name = name;\r\n }", "public void setName(String name)\r\n {\r\n this.name = name;\r\n }", "public void setName(String name)\r\n {\r\n this.name = name;\r\n }", "public void setName(String name)\r\n {\r\n this.name = name;\r\n }", "public void setName(final String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(final String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name){\n \t\tthis.name = name;\n \t}", "public void setName( String name )\n {\n this.name = name;\n }", "public void setName( String name )\n {\n this.name = name;\n }", "public void setName( final String name )\r\n {\r\n this.name = name;\r\n }", "public void setName(String name) {\n _name = name;\n }", "@Override\n\tpublic void setName(String name) {\n\t\tthis.name = name;\n\t}", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "protected void setName(String name) {\n this._name = name;\n }", "public void setName(String value) {\n this.name = value;\n }", "public void setName(String name) {\n \t\tthis.name = name;\n \t}", "public void setName(String name) {\n this.name = name;\n }", "public void setName(String name) {\r\r\n\t\tthis.name = name;\r\r\n\t}", "public void setName (String name) {\n this.name = name;\n }", "public void setName(String name) {\r\n this.name = name;\r\n }", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}", "public void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}" ]
[ "0.83662075", "0.8340101", "0.8336191", "0.83297634", "0.82887304", "0.82874596", "0.8275723", "0.82684094", "0.82684094", "0.8255524", "0.8251983", "0.8251983", "0.8251983", "0.82518953", "0.82466835", "0.82466835", "0.82466835", "0.82465315", "0.82449424", "0.82413656", "0.82397085", "0.8234533", "0.82336295", "0.8232535", "0.8232535", "0.82310504", "0.822735", "0.8218367", "0.8218367", "0.8218055", "0.8218055", "0.8218055", "0.8218055", "0.82172227", "0.82172227", "0.82172227", "0.82155704", "0.82155704", "0.8214803", "0.8214803", "0.8214803", "0.8214803", "0.82142204", "0.82142204", "0.82110095", "0.82107735", "0.82107735", "0.8210463", "0.82084775", "0.8207333", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8204663", "0.8203566", "0.8202441", "0.8201689", "0.8198746", "0.81963825", "0.8194809", "0.8192862", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196", "0.8186196" ]
0.0
-1
Returns the description text.
public String getDescription() { LOGGER.debug("SecurityObject#getDescription [description=" + this.description + "]"); return this.description; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "java.lang.String getDescription();", "java.lang.String getDescription();", "java.lang.String getDescription();", "java.lang.String getDescription();", "java.lang.String getDescription();", "java.lang.String getDescription();", "java.lang.String getDescription();", "java.lang.String getDescription();", "java.lang.String getDescription();", "public String getDescription() {\n return (desc);\n }", "public String getDescriptionText() {\n return m_DescriptionText;\n }", "public String getDescription(){\n return getString(KEY_DESCRIPTION);\n }", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "String getDescription();", "public String getDescription(){\r\n \tString retVal = this.description;\r\n return retVal;\r\n }", "public CharSequence getDescription() {\n return description;\n }", "public CharSequence getDescription() {\n return description;\n }", "public String getDescription() {\n\t\tString t = doc.get(\"description\");\n\n\t\tif (t == null) {\n\t\t\treturn \"\";\n\t\t} else {\n\t\t\treturn t;\n\t\t}\n\t}", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription();", "public String getDescription() {\n\t\tif (description == null)\n\t\t\treturn \"No description\";\n\t\treturn description;\n\t}", "public String getDescription()\r\n\t{\r\n\t\treturn description;\r\n\t}", "public String getDescription() {\n\t\treturn (String) get_Value(\"Description\");\n\t}", "public String getDescription() {\n\t\treturn (String) get_Value(\"Description\");\n\t}", "public String getDescription() {\n\t\treturn (String) get_Value(\"Description\");\n\t}", "public String getDescription() {\n\t\treturn (String) get_Value(\"Description\");\n\t}", "public String getDescription()\r\n {\r\n\treturn desc;\r\n }", "public String getDescription() {\n return desc;\n }", "@Override\n public String getDescription() {\n return descriptionText;\n }", "public String getDescription() {\n return desc;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public String getDescription()\n\t{\n\t\treturn description;\n\t}", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\n return description;\n }", "public java.lang.String getDescription() {\r\n return description;\r\n }" ]
[ "0.8669172", "0.8669172", "0.8669172", "0.8669172", "0.8669172", "0.8669172", "0.8669172", "0.8669172", "0.8669172", "0.8545438", "0.8532013", "0.8508647", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489633", "0.8489532", "0.8437924", "0.84154844", "0.84109885", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.84098834", "0.838944", "0.83764905", "0.8374215", "0.8374215", "0.8374215", "0.8374215", "0.8356745", "0.8352478", "0.8348766", "0.83327484", "0.8315967", "0.83154076", "0.831205", "0.8305262", "0.8305262", "0.8305262", "0.8305262", "0.8305262", "0.8305262", "0.8305262", "0.8305262", "0.8305262", "0.8302305" ]
0.0
-1
Set the description for the SecurityObject.
public void setDescription(String description) { LOGGER.debug("SecurityObject#setDescription [description=" + description + "]"); this.description = description; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public SecurityIdentityType<T> setDescription(String description)\n {\n childNode.create(\"description\").text(description);\n return this;\n }", "public void setDescription(java.lang.Object description) {\n this.description = description;\n }", "public void setDescription(java.lang.String value) {\n this.description = value;\n }", "public void setDescription(String value) {\r\n this.description = value;\r\n }", "public void setDescription(String value) {\n this.description = value;\n }", "public void setDescription(String sDescription);", "public SecurityObject(@NotNull final String name, String description) {\n\t\tLOGGER.debug(\"SecurityObject#co [name=\" + name + \", description=\" + description + \"]\");\n\n\t\tthis.name = name;\n\t\tthis.description = description;\n\t}", "public void setDescription(String Description) {\n this.Description = Description;\n }", "public void xsetDescription(org.apache.xmlbeans.XmlString description)\r\n {\r\n synchronized (monitor())\r\n {\r\n check_orphaned();\r\n org.apache.xmlbeans.XmlString target = null;\r\n target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(DESCRIPTION$8);\r\n if (target == null)\r\n {\r\n target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(DESCRIPTION$8);\r\n }\r\n target.set(description);\r\n }\r\n }", "public void xsetDescription(org.apache.xmlbeans.XmlString description)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.XmlString target = null;\n target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(DESCRIPTION$14);\n if (target == null)\n {\n target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(DESCRIPTION$14);\n }\n target.set(description);\n }\n }", "public void setDescription(java.lang.String description)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.SimpleValue target = null;\n target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(DESCRIPTION$14);\n if (target == null)\n {\n target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(DESCRIPTION$14);\n }\n target.setStringValue(description);\n }\n }", "public void setDescription(java.lang.String description)\r\n {\r\n synchronized (monitor())\r\n {\r\n check_orphaned();\r\n org.apache.xmlbeans.SimpleValue target = null;\r\n target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(DESCRIPTION$8);\r\n if (target == null)\r\n {\r\n target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(DESCRIPTION$8);\r\n }\r\n target.setStringValue(description);\r\n }\r\n }", "public void setDescription(String desc) {\n sdesc = desc;\n }", "void setDescription(java.lang.String description);", "protected void addDescriptionPropertyDescriptor(Object object) {\n\t\titemPropertyDescriptors.add\n\t\t\t(createItemPropertyDescriptor\n\t\t\t\t(((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),\n\t\t\t\t getResourceLocator(),\n\t\t\t\t getString(\"_UI_SecuritySchema_description_feature\"),\n\t\t\t\t getString(\"_UI_PropertyDescriptor_description\", \"_UI_SecuritySchema_description_feature\", \"_UI_SecuritySchema_type\"),\n\t\t\t\t CorePackage.Literals.SECURITY_SCHEMA__DESCRIPTION,\n\t\t\t\t true,\n\t\t\t\t false,\n\t\t\t\t false,\n\t\t\t\t ItemPropertyDescriptor.GENERIC_VALUE_IMAGE,\n\t\t\t\t null,\n\t\t\t\t null));\n\t}", "protected void setDescription(String description) {\n this.description = description;\n }", "public void setDescription( String description )\n {\n this.description = description;\n }", "public void setDescription( String description )\n {\n this.description = description;\n }", "public void setDescription( String description )\n {\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\r\n this.description = description;\r\n }", "public void setDescription(java.lang.String description) {\r\n this.description = description;\r\n }", "public void setDescription(java.lang.String description) {\r\n this.description = description;\r\n }", "public void setDescription(String value) {\n setAttributeInternal(DESCRIPTION, value);\n }", "public void setDescription(String value) {\n setAttributeInternal(DESCRIPTION, value);\n }", "public void setDescription(String value) {\n setAttributeInternal(DESCRIPTION, value);\n }", "public void setDescription(String description) { this.description = description; }", "public void setDescription(String description) {\r\n this.description = description;\r\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description)\n {\n this.description = description;\n }", "public void setDescription(String description )\n {\n this.description = description;\n }", "public void setDescription(java.lang.String description)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.SimpleValue target = null;\n target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(DESCRIPTION$2, 0);\n if (target == null)\n {\n target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(DESCRIPTION$2);\n }\n target.setStringValue(description);\n }\n }", "public void setDescription(String description) {\n \tthis.description = description;\n }", "public void setDescription(String description) {\r\n this.description = description;\r\n }", "public void setDescription(String description) {\r\n this.description = description;\r\n }", "public void setDescription(String description) {\r\n this.description = description;\r\n }", "public void setDescription(String description) {\r\n this.description = description;\r\n }", "public void setDescription(String description) {\r\n this.description = description;\r\n }", "public void setDescription(String value)\r\n {\r\n getSemanticObject().setProperty(swb_description, value);\r\n }", "void setDescription(final String description);", "public void xsetDescription(org.apache.xmlbeans.XmlString description)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.XmlString target = null;\n target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(DESCRIPTION$2, 0);\n if (target == null)\n {\n target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(DESCRIPTION$2);\n }\n target.set(description);\n }\n }", "public void setDescription(final String description) {\n this.description = description;\n }", "public void setDescription(final String descriptionValue) {\n this.description = descriptionValue;\n }", "public final void setDescription(java.lang.String description)\r\n\t{\r\n\t\tsetDescription(getContext(), description);\r\n\t}", "public void setDescription(String description){\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\n this.description = description;\n }", "public void setDescription(java.lang.String description) {\n this.description = description;\n }", "public void setDescription(String description)\n {\n this.description = description;\n }", "public void setDescription(String description)\n {\n this.description = description;\n }", "public void setDescription(String description)\n {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(final String description);", "public void setDescription(String description)\n {\n this.description = description;\n }", "public void setDescription(String _description) {\n this._description = _description;\n }", "public void setDescription(java.lang.String value) {\n __getInternalInterface().setFieldValueForCodegen(DESCRIPTION_PROP.get(), value);\n }", "public void setDescription(String desc) {\n description = desc;\n }", "public void setDescription(String description) {\r\n \t\tthis.description = description;\r\n \t}", "public void setDescription(java.lang.String value) {\n __getInternalInterface().setFieldValueForCodegen(DESCRIPTION_PROP.get(), value);\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription (String Description);", "public void setDescription (String Description);", "public void setDescription (String Description);", "public void setDescription (String Description);", "public void setDescription (String Description);", "public void setDescription (String Description);", "public void setDescription(final java.lang.String description) {\r\n this._description = description;\r\n }", "public void setDescription(final java.lang.String description) {\r\n this._description = description;\r\n }", "public void setDescription(String description) {\n _description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }", "public void setDescription(String description) {\n this.description = description;\n }" ]
[ "0.7285533", "0.70968443", "0.68795025", "0.6842827", "0.6829397", "0.6789205", "0.6761886", "0.67568624", "0.67189676", "0.6715647", "0.6665046", "0.66617763", "0.66561127", "0.66448826", "0.66382456", "0.66364723", "0.6634343", "0.6634343", "0.6634343", "0.66343", "0.66343", "0.66343", "0.6617101", "0.6617101", "0.6617101", "0.661462", "0.661413", "0.66101885", "0.66101885", "0.660191", "0.6598342", "0.6595373", "0.6595296", "0.6593102", "0.6593102", "0.6593102", "0.6593102", "0.6593102", "0.65910107", "0.6590555", "0.6587989", "0.6587403", "0.6585403", "0.6581161", "0.6577021", "0.6575315", "0.6575315", "0.6575315", "0.6575315", "0.6575315", "0.6575315", "0.6575315", "0.6575315", "0.6575315", "0.6571948", "0.6571948", "0.6571948", "0.65713334", "0.656192", "0.6558857", "0.6556551", "0.6555684", "0.65543616", "0.65482885", "0.6545922", "0.65436804", "0.65436804", "0.65436804", "0.65436804", "0.65436804", "0.6542974", "0.6542974", "0.6542974", "0.6542974", "0.6542974", "0.6542974", "0.6541791", "0.6541791", "0.65353996", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293", "0.6535293" ]
0.7920115
0
$ANTLR start "entryRuleModel" InternalCsv.g:54:1: entryRuleModel : ruleModel EOF ;
public final void entryRuleModel() throws RecognitionException { try { // InternalCsv.g:55:1: ( ruleModel EOF ) // InternalCsv.g:56:1: ruleModel EOF { if ( state.backtracking==0 ) { before(grammarAccess.getModelRule()); } pushFollow(FOLLOW_1); ruleModel(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getModelRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleModel() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:61:1: ( ruleModel EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:62:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel61);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:64:1: ( ruleModel EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:65:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel66);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel73); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:68:2: (iv_ruleModel= ruleModel EOF )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:69:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel75);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:61:1: ( ruleModel EOF )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:62:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel61);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:69:2: (iv_ruleModel= ruleModel EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:70:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel75);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final Boolean entryRuleModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean iv_ruleModel = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:72:47: (iv_ruleModel= ruleModel EOF )\n // PsiInternalExUnorderedGroupsTestLanguage.g:73:2: iv_ruleModel= ruleModel EOF\n {\n markComposite(elementTypeProvider.getModelElementType()); \n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FollowSets000.FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "public final void entryRuleModel() throws RecognitionException {\r\n try {\r\n // InternalGo.g:55:1: ( ruleModel EOF )\r\n // InternalGo.g:56:1: ruleModel EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getModelRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleModel();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getModelRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalWh.g:54:1: ( ruleModel EOF )\n // InternalWh.g:55:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalMLRegression.g:54:1: ( ruleModel EOF )\n // InternalMLRegression.g:55:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleModel() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleModel = null;\r\n\r\n\r\n try {\r\n // InternalMyDsl.g:64:46: (iv_ruleModel= ruleModel EOF )\r\n // InternalMyDsl.g:65:2: iv_ruleModel= ruleModel EOF\r\n {\r\n newCompositeNode(grammarAccess.getModelRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleModel=ruleModel();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleModel; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // InternalNgt.g:64:46: (iv_ruleModel= ruleModel EOF )\n // InternalNgt.g:65:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // InternalMLRegression.g:64:46: (iv_ruleModel= ruleModel EOF )\n // InternalMLRegression.g:65:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleModelElement() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModelElement = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:177:2: (iv_ruleModelElement= ruleModelElement EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:178:2: iv_ruleModelElement= ruleModelElement EOF\n {\n newCompositeNode(grammarAccess.getModelElementRule()); \n pushFollow(FOLLOW_ruleModelElement_in_entryRuleModelElement317);\n iv_ruleModelElement=ruleModelElement();\n\n state._fsp--;\n\n current =iv_ruleModelElement; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModelElement327); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleGoalModel() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGoalModel = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:69:2: (iv_ruleGoalModel= ruleGoalModel EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:70:2: iv_ruleGoalModel= ruleGoalModel EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGoalModelRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGoalModel_in_entryRuleGoalModel75);\r\n iv_ruleGoalModel=ruleGoalModel();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGoalModel; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGoalModel85); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final Boolean entryRuleDelegateModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean iv_ruleDelegateModel = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:52:55: (iv_ruleDelegateModel= ruleDelegateModel EOF )\n // PsiInternalExUnorderedGroupsTestLanguage.g:53:2: iv_ruleDelegateModel= ruleDelegateModel EOF\n {\n markComposite(elementTypeProvider.getDelegateModelElementType()); \n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleDelegateModel=ruleDelegateModel();\n\n state._fsp--;\n\n current =iv_ruleDelegateModel; \n match(input,EOF,FollowSets000.FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleRM_Model() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRM_Model = null;\n\n\n try {\n // InternalRMParser.g:57:49: (iv_ruleRM_Model= ruleRM_Model EOF )\n // InternalRMParser.g:58:2: iv_ruleRM_Model= ruleRM_Model EOF\n {\n newCompositeNode(grammarAccess.getRM_ModelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleRM_Model=ruleRM_Model();\n\n state._fsp--;\n\n current =iv_ruleRM_Model; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "ModelRule createModelRule();", "public final void entryRuleEntry() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:62:1: ( ruleEntry EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:63:1: ruleEntry EOF\n {\n before(grammarAccess.getEntryRule()); \n pushFollow(FollowSets000.FOLLOW_ruleEntry_in_entryRuleEntry61);\n ruleEntry();\n _fsp--;\n\n after(grammarAccess.getEntryRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleEntry68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:67:2: ( ( ( rule__Model__Group__0 ) ) )\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n {\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n // InternalCsv.g:69:3: ( rule__Model__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getGroup()); \n }\n // InternalCsv.g:70:3: ( rule__Model__Group__0 )\n // InternalCsv.g:70:4: rule__Model__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleFinModelFile() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:62:1: ( ruleFinModelFile EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:63:1: ruleFinModelFile EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileRule()); \r\n }\r\n pushFollow(FOLLOW_ruleFinModelFile_in_entryRuleFinModelFile67);\r\n ruleFinModelFile();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleFinModelFile74); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleModel() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:67:2: ( ( ( rule__Model__GreetingsAssignment ) ) )\r\n // InternalGo.g:68:2: ( ( rule__Model__GreetingsAssignment ) )\r\n {\r\n // InternalGo.g:68:2: ( ( rule__Model__GreetingsAssignment ) )\r\n // InternalGo.g:69:3: ( rule__Model__GreetingsAssignment )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getModelAccess().getGreetingsAssignment()); \r\n }\r\n // InternalGo.g:70:3: ( rule__Model__GreetingsAssignment )\r\n // InternalGo.g:70:4: rule__Model__GreetingsAssignment\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Model__GreetingsAssignment();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getModelAccess().getGreetingsAssignment()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:66:2: ( ( ( rule__Model__ProgramAssignment ) ) )\n // InternalWh.g:67:2: ( ( rule__Model__ProgramAssignment ) )\n {\n // InternalWh.g:67:2: ( ( rule__Model__ProgramAssignment ) )\n // InternalWh.g:68:3: ( rule__Model__ProgramAssignment )\n {\n before(grammarAccess.getModelAccess().getProgramAssignment()); \n // InternalWh.g:69:3: ( rule__Model__ProgramAssignment )\n // InternalWh.g:69:4: rule__Model__ProgramAssignment\n {\n pushFollow(FOLLOW_2);\n rule__Model__ProgramAssignment();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getProgramAssignment()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJRExpressionModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJRExpressionModel = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:68:2: (iv_ruleJRExpressionModel= ruleJRExpressionModel EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:69:2: iv_ruleJRExpressionModel= ruleJRExpressionModel EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJRExpressionModelRule()); \n }\n pushFollow(FOLLOW_ruleJRExpressionModel_in_entryRuleJRExpressionModel75);\n iv_ruleJRExpressionModel=ruleJRExpressionModel();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJRExpressionModel; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJRExpressionModel85); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleAbjadModel() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleAbjadModel = null;\r\n\r\n\r\n try {\r\n // InternalAbjad.g:64:51: (iv_ruleAbjadModel= ruleAbjadModel EOF )\r\n // InternalAbjad.g:65:2: iv_ruleAbjadModel= ruleAbjadModel EOF\r\n {\r\n newCompositeNode(grammarAccess.getAbjadModelRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleAbjadModel=ruleAbjadModel();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleAbjadModel; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleRule() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRule = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2736:2: (iv_ruleRule= ruleRule EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2737:2: iv_ruleRule= ruleRule EOF\n {\n newCompositeNode(grammarAccess.getRuleRule()); \n pushFollow(FOLLOW_ruleRule_in_entryRuleRule6136);\n iv_ruleRule=ruleRule();\n\n state._fsp--;\n\n current =iv_ruleRule; \n match(input,EOF,FOLLOW_EOF_in_entryRuleRule6146); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpression = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2467:2: (iv_ruleExpression= ruleExpression EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2468:2: iv_ruleExpression= ruleExpression EOF\n {\n currentNode = createCompositeNode(grammarAccess.getExpressionRule(), currentNode); \n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression4256);\n iv_ruleExpression=ruleExpression();\n _fsp--;\n\n current =iv_ruleExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression4266); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final Boolean entryRuleNestedModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean iv_ruleNestedModel = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:1531:53: (iv_ruleNestedModel= ruleNestedModel EOF )\n // PsiInternalExUnorderedGroupsTestLanguage.g:1532:2: iv_ruleNestedModel= ruleNestedModel EOF\n {\n markComposite(elementTypeProvider.getNestedModelElementType()); \n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleNestedModel=ruleNestedModel();\n\n state._fsp--;\n\n current =iv_ruleNestedModel; \n match(input,EOF,FollowSets000.FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "final public ASTModel Model() throws ParseException {\r\n /*@bgen(jjtree) Model */\r\n ASTModel jjtn000 = new ASTModel(JJTMODEL);\r\n boolean jjtc000 = true;\r\n jjtree.openNodeScope(jjtn000);\r\n try {\r\n if (jj_2_1(2)) {\r\n jj_consume_token(BEGIN);\r\n jj_consume_token(MODEL);\r\n label_1:\r\n while (true) {\r\n jj_consume_token(BEGIN);\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case COMPARTMENTS:\r\n CompartmentsBlock();\r\n break;\r\n case PARAMETERS:\r\n ParameterBlock();\r\n break;\r\n case MOLECULE:\r\n MolecularDefinitionBlock();\r\n break;\r\n case ANCHORS:\r\n AnchorsBlock();\r\n break;\r\n case SEED:\r\n SeedSpeciesBlock();\r\n break;\r\n case REACTION:\r\n ReactionRulesBlock();\r\n break;\r\n case OBSERVABLES:\r\n ObservablesBlock();\r\n break;\r\n case FUNCTIONS:\r\n FunctionsBlock();\r\n break;\r\n default:\r\n jj_la1[0] = jj_gen;\r\n jj_consume_token(-1);\r\n throw new ParseException();\r\n }\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case BEGIN:\r\n ;\r\n break;\r\n default:\r\n jj_la1[1] = jj_gen;\r\n break label_1;\r\n }\r\n }\r\n jj_consume_token(END);\r\n jj_consume_token(MODEL);\r\n label_2:\r\n while (true) {\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case ACTION:\r\n ;\r\n break;\r\n default:\r\n jj_la1[2] = jj_gen;\r\n break label_2;\r\n }\r\n Action();\r\n }\r\n jjtree.closeNodeScope(jjtn000, true);\r\n jjtc000 = false;\r\n {if (true) return jjtn000;}\r\n } else if (jj_2_2(2)) {\r\n label_3:\r\n while (true) {\r\n jj_consume_token(BEGIN);\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case COMPARTMENTS:\r\n CompartmentsBlock();\r\n break;\r\n case PARAMETERS:\r\n ParameterBlock();\r\n break;\r\n case MOLECULE:\r\n MolecularDefinitionBlock();\r\n break;\r\n case ANCHORS:\r\n AnchorsBlock();\r\n break;\r\n case SEED:\r\n SeedSpeciesBlock();\r\n break;\r\n case REACTION:\r\n ReactionRulesBlock();\r\n break;\r\n case OBSERVABLES:\r\n ObservablesBlock();\r\n break;\r\n case FUNCTIONS:\r\n FunctionsBlock();\r\n break;\r\n default:\r\n jj_la1[3] = jj_gen;\r\n jj_consume_token(-1);\r\n throw new ParseException();\r\n }\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case BEGIN:\r\n ;\r\n break;\r\n default:\r\n jj_la1[4] = jj_gen;\r\n break label_3;\r\n }\r\n }\r\n label_4:\r\n while (true) {\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case ACTION:\r\n ;\r\n break;\r\n default:\r\n jj_la1[5] = jj_gen;\r\n break label_4;\r\n }\r\n Action();\r\n }\r\n jjtree.closeNodeScope(jjtn000, true);\r\n jjtc000 = false;\r\n {if (true) return jjtn000;}\r\n } else {\r\n jj_consume_token(-1);\r\n throw new ParseException();\r\n }\r\n } catch (Throwable jjte000) {\r\n if (jjtc000) {\r\n jjtree.clearNodeScope(jjtn000);\r\n jjtc000 = false;\r\n } else {\r\n jjtree.popNode();\r\n }\r\n if (jjte000 instanceof RuntimeException) {\r\n {if (true) throw (RuntimeException)jjte000;}\r\n }\r\n if (jjte000 instanceof ParseException) {\r\n {if (true) throw (ParseException)jjte000;}\r\n }\r\n {if (true) throw (Error)jjte000;}\r\n } finally {\r\n if (jjtc000) {\r\n jjtree.closeNodeScope(jjtn000, true);\r\n }\r\n }\r\n throw new Error(\"Missing return statement in function\");\r\n }", "public final EObject ruleEntryEvent() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2125:28: ( ( () otherlv_1= 'entry' ) )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:1: ( () otherlv_1= 'entry' )\r\n {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:1: ( () otherlv_1= 'entry' )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:2: () otherlv_1= 'entry'\r\n {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:2: ()\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2127:5: \r\n {\r\n if ( state.backtracking==0 ) {\r\n\r\n current = forceCreateModelElement(\r\n grammarAccess.getEntryEventAccess().getEntryEventAction_0(),\r\n current);\r\n \r\n }\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,39,FOLLOW_39_in_ruleEntryEvent4737); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getEntryEventAccess().getEntryKeyword_1());\r\n \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpression = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:3793:2: (iv_ruleExpression= ruleExpression EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:3794:2: iv_ruleExpression= ruleExpression EOF\n {\n newCompositeNode(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression8462);\n iv_ruleExpression=ruleExpression();\n\n state._fsp--;\n\n current =iv_ruleExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression8472); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2060:2: (iv_ruleExpression= ruleExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2061:2: iv_ruleExpression= ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression4369);\r\n iv_ruleExpression=ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression4379); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:80:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:81:1: ( ( rule__Model__Group__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:81:1: ( ( rule__Model__Group__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:82:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:83:1: ( rule__Model__Group__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:83:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel103);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "RuleModelPackage getRuleModelPackage();", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_StartIndex = input.index();\n EObject iv_ruleExpression = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 81) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:3658:2: (iv_ruleExpression= ruleExpression EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:3659:2: iv_ruleExpression= ruleExpression EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpressionRule()); \n }\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression7279);\n iv_ruleExpression=ruleExpression();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression7289); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 81, entryRuleExpression_StartIndex); }\n }\n return current;\n }", "public final void entryRuleActivity() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:118:1: ( ruleActivity EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:119:1: ruleActivity EOF\n {\n before(grammarAccess.getActivityRule()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_entryRuleActivity181);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getActivityRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleActivity188); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleExpression() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2355:1: ( ruleExpression EOF )\r\n // InternalGo.g:2356:1: ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleAttribute() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleAttribute = null;\n\n\n try {\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:206:2: (iv_ruleAttribute= ruleAttribute EOF )\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:207:2: iv_ruleAttribute= ruleAttribute EOF\n {\n newCompositeNode(grammarAccess.getAttributeRule()); \n pushFollow(FOLLOW_ruleAttribute_in_entryRuleAttribute377);\n iv_ruleAttribute=ruleAttribute();\n\n state._fsp--;\n\n current =iv_ruleAttribute; \n match(input,EOF,FOLLOW_EOF_in_entryRuleAttribute387); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleMatch() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleMatch = null;\r\n\r\n\r\n try {\r\n // InternalEsportDsl.g:1626:46: (iv_ruleMatch= ruleMatch EOF )\r\n // InternalEsportDsl.g:1627:2: iv_ruleMatch= ruleMatch EOF\r\n {\r\n newCompositeNode(grammarAccess.getMatchRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleMatch=ruleMatch();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleMatch; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleDomainmodel() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleDomainmodel = null;\r\n\r\n\r\n try {\r\n // InternalNestDsl.g:64:52: (iv_ruleDomainmodel= ruleDomainmodel EOF )\r\n // InternalNestDsl.g:65:2: iv_ruleDomainmodel= ruleDomainmodel EOF\r\n {\r\n newCompositeNode(grammarAccess.getDomainmodelRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleDomainmodel=ruleDomainmodel();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleDomainmodel; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMappingDsl.g:1797:47: (iv_ruleImport= ruleImport EOF )\n // InternalMappingDsl.g:1798:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:66:2: ( ( ( rule__Model__Group__0 ) ) )\n // InternalMLRegression.g:67:2: ( ( rule__Model__Group__0 ) )\n {\n // InternalMLRegression.g:67:2: ( ( rule__Model__Group__0 ) )\n // InternalMLRegression.g:68:3: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // InternalMLRegression.g:69:3: ( rule__Model__Group__0 )\n // InternalMLRegression.g:69:4: rule__Model__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleExpression = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2458:2: (iv_ruleExpression= ruleExpression EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2459:2: iv_ruleExpression= ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression5585);\r\n iv_ruleExpression=ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression5595); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:73:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:75:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:1: ( rule__Model__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel94);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleDefinition() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleDefinition = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:126:2: (iv_ruleDefinition= ruleDefinition EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:127:2: iv_ruleDefinition= ruleDefinition EOF\n {\n currentNode = createCompositeNode(grammarAccess.getDefinitionRule(), currentNode); \n pushFollow(FOLLOW_ruleDefinition_in_entryRuleDefinition166);\n iv_ruleDefinition=ruleDefinition();\n _fsp--;\n\n current =iv_ruleDefinition; \n match(input,EOF,FOLLOW_EOF_in_entryRuleDefinition176); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleInputEntry() throws RecognitionException {\r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:89:1: ( ruleInputEntry EOF )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:90:1: ruleInputEntry EOF\r\n {\r\n before(grammarAccess.getInputEntryRule()); \r\n pushFollow(FOLLOW_ruleInputEntry_in_entryRuleInputEntry121);\r\n ruleInputEntry();\r\n\r\n state._fsp--;\r\n\r\n after(grammarAccess.getInputEntryRule()); \r\n match(input,EOF,FOLLOW_EOF_in_entryRuleInputEntry128); \r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleNode() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleNode = null;\n\n\n try {\n // InternalSPDSL.g:160:45: (iv_ruleNode= ruleNode EOF )\n // InternalSPDSL.g:161:2: iv_ruleNode= ruleNode EOF\n {\n newCompositeNode(grammarAccess.getNodeRule()); \n pushFollow(FOLLOW_1);\n iv_ruleNode=ruleNode();\n\n state._fsp--;\n\n current =iv_ruleNode; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleContext() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleContext = null;\n\n\n try {\n // ../ac.soton.xtext.contextDsl/src-gen/ac/soton/xtext/parser/antlr/internal/InternalContextDsl.g:68:2: (iv_ruleContext= ruleContext EOF )\n // ../ac.soton.xtext.contextDsl/src-gen/ac/soton/xtext/parser/antlr/internal/InternalContextDsl.g:69:2: iv_ruleContext= ruleContext EOF\n {\n newCompositeNode(grammarAccess.getContextRule()); \n pushFollow(FollowSets000.FOLLOW_ruleContext_in_entryRuleContext75);\n iv_ruleContext=ruleContext();\n\n state._fsp--;\n\n current =iv_ruleContext; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleContext85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleRecordDefinition() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRecordDefinition = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:461:2: (iv_ruleRecordDefinition= ruleRecordDefinition EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:462:2: iv_ruleRecordDefinition= ruleRecordDefinition EOF\n {\n currentNode = createCompositeNode(grammarAccess.getRecordDefinitionRule(), currentNode); \n pushFollow(FOLLOW_ruleRecordDefinition_in_entryRuleRecordDefinition847);\n iv_ruleRecordDefinition=ruleRecordDefinition();\n _fsp--;\n\n current =iv_ruleRecordDefinition; \n match(input,EOF,FOLLOW_EOF_in_entryRuleRecordDefinition857); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleTerm() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1936:1: ( ruleTerm EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1937:1: ruleTerm EOF\n {\n before(grammarAccess.getTermRule()); \n pushFollow(FOLLOW_ruleTerm_in_entryRuleTerm3648);\n ruleTerm();\n\n state._fsp--;\n\n after(grammarAccess.getTermRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleTerm3655); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "static public Rule parse(OrchestraSystem catalog, String rule, \r\n\t\t\tMap<String,RelationContext> locals) throws ParseException, RelationNotFoundException {\r\n\t\tHolder<Integer> counter = new Holder<Integer>(0);\r\n\t\tPositionedString str = new PositionedString(rule);\r\n\t\tstr.skipWhitespace();\r\n\t\tUntypedAtom h = UntypedAtom.parse(str, counter);\r\n\t\tboolean negateHead = false;\r\n\t\tif (h.getName().startsWith(\"NOT_\")) {\r\n\t\t\th.setName(h.getName().substring(4));\r\n\t\t\tnegateHead = true;\r\n\t\t}\r\n\r\n\t\tstr.skipWhitespace();\r\n\t\tif (!str.skipString(\":-\")) {\r\n\t\t\tcomplain(str, \"':-'\");\r\n\t\t}\r\n\t\tstr.skipWhitespace();\r\n\t\tArrayList<Atom> body = new ArrayList<Atom>();\r\n\t\tboolean first = true;\r\n\t\tstr.skipWhitespace();\r\n\t\twhile (str.inRange()) {\r\n\t\t\tif (first) {\r\n\t\t\t\tfirst = false;\r\n\t\t\t} else {\r\n\t\t\t\tif (!str.skipString(\",\")) {\r\n\t\t\t\t\tcomplain(str, \"','\");\r\n\t\t\t\t}\r\n\t\t\t\tstr.skipWhitespace();\r\n\t\t\t}\r\n\t\t\tUntypedAtom b = UntypedAtom.parse(str, counter);\r\n\t\t\tboolean isNegated = false;\r\n\t\t\tif (b.getName().startsWith(\"NOT_\")) {\r\n\t\t\t\tisNegated = true;\r\n\t\t\t\tb.setName(b.getName().substring(4));\r\n\t\t\t}\r\n\t\t\tAtom n = b.getTyped(catalog, locals);\r\n\t\t\tn.setNeg(isNegated);\r\n\t\t\tbody.add(n);\r\n\t\t\tstr.skipWhitespace();\r\n\t\t}\r\n\t\tAtom th;\r\n\t\ttry {\r\n\t\t\tth = h.getTyped(catalog, locals);\r\n\t\t} catch (ParseException e) {\r\n\t\t\tth = h.getTyped(body);\r\n\t\t\t// Add this as a local view definition\r\n\t\t\tif (!locals.containsKey(th.getRelationContext().toString()))\r\n\t\t\t\tlocals.put(th.getRelationContext().toString(), th.getRelationContext());\r\n\t\t} catch (RelationNotFoundException e) {\r\n\t\t\tth = h.getTyped(body);\r\n\t\t\t// Add this as a local view definition\r\n\t\t\tif (!locals.containsKey(th.getRelationContext().toString()))\r\n\t\t\t\tlocals.put(th.getRelationContext().toString(), th.getRelationContext());\r\n\t\t}\r\n\t\tth.setNeg(negateHead);\r\n\r\n\t\treturn new Rule(th, body, null, catalog.getMappingDb().getBuiltInSchemas());\r\n\t}", "public final EObject entryRuleRuleDeclaration() throws RecognitionException {\n EObject current = null;\n int entryRuleRuleDeclaration_StartIndex = input.index();\n EObject iv_ruleRuleDeclaration = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 9) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:501:2: (iv_ruleRuleDeclaration= ruleRuleDeclaration EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:502:2: iv_ruleRuleDeclaration= ruleRuleDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getRuleDeclarationRule()); \n }\n pushFollow(FOLLOW_ruleRuleDeclaration_in_entryRuleRuleDeclaration908);\n iv_ruleRuleDeclaration=ruleRuleDeclaration();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleRuleDeclaration; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleRuleDeclaration918); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 9, entryRuleRuleDeclaration_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:287:2: (iv_ruleImport= ruleImport EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:288:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport625);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport635); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleMetamodelDeclaration() throws RecognitionException {\n EObject current = null;\n int entryRuleMetamodelDeclaration_StartIndex = input.index();\n EObject iv_ruleMetamodelDeclaration = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 5) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:280:2: (iv_ruleMetamodelDeclaration= ruleMetamodelDeclaration EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:281:2: iv_ruleMetamodelDeclaration= ruleMetamodelDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getMetamodelDeclarationRule()); \n }\n pushFollow(FOLLOW_ruleMetamodelDeclaration_in_entryRuleMetamodelDeclaration493);\n iv_ruleMetamodelDeclaration=ruleMetamodelDeclaration();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleMetamodelDeclaration; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleMetamodelDeclaration503); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 5, entryRuleMetamodelDeclaration_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleExpr() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpr = null;\n\n\n try {\n // InternalMyDsl.g:64:45: (iv_ruleExpr= ruleExpr EOF )\n // InternalMyDsl.g:65:2: iv_ruleExpr= ruleExpr EOF\n {\n newCompositeNode(grammarAccess.getExprRule()); \n pushFollow(FOLLOW_1);\n iv_ruleExpr=ruleExpr();\n\n state._fsp--;\n\n current =iv_ruleExpr; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject ruleModel() throws RecognitionException {\n EObject current = null;\n\n EObject lv_models_0_0 = null;\n\n\n enterRule(); \n \n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:80:28: ( ( (lv_models_0_0= rulePackageDeclaration ) )+ )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:81:1: ( (lv_models_0_0= rulePackageDeclaration ) )+\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:81:1: ( (lv_models_0_0= rulePackageDeclaration ) )+\n int cnt1=0;\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==12) ) {\n alt1=1;\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:82:1: (lv_models_0_0= rulePackageDeclaration )\n \t {\n \t // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:82:1: (lv_models_0_0= rulePackageDeclaration )\n \t // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:83:3: lv_models_0_0= rulePackageDeclaration\n \t {\n \t \n \t \t newCompositeNode(grammarAccess.getModelAccess().getModelsPackageDeclarationParserRuleCall_0()); \n \t \t \n \t pushFollow(FOLLOW_rulePackageDeclaration_in_ruleModel130);\n \t lv_models_0_0=rulePackageDeclaration();\n\n \t state._fsp--;\n\n\n \t \t if (current==null) {\n \t \t current = createModelElementForParent(grammarAccess.getModelRule());\n \t \t }\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"models\",\n \t \t\tlv_models_0_0, \n \t \t\t\"PackageDeclaration\");\n \t \t afterParserOrEnumRuleCall();\n \t \t \n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt1 >= 1 ) break loop1;\n EarlyExitException eee =\n new EarlyExitException(1, input);\n throw eee;\n }\n cnt1++;\n } while (true);\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMyDsl.g:127:47: (iv_ruleImport= ruleImport EOF )\n // InternalMyDsl.g:128:2: iv_ruleImport= ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleImport; \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleExpression() throws RecognitionException {\n try {\n // InternalBrowser.g:254:1: ( ruleExpression EOF )\n // InternalBrowser.g:255:1: ruleExpression EOF\n {\n before(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_1);\n ruleExpression();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:229:1: ( ruleImport EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:230:1: ruleImport EOF\n {\n before(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport421);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getImportRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleEntryEvent() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleEntryEvent = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2114:2: (iv_ruleEntryEvent= ruleEntryEvent EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2115:2: iv_ruleEntryEvent= ruleEntryEvent EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getEntryEventRule()); \r\n }\r\n pushFollow(FOLLOW_ruleEntryEvent_in_entryRuleEntryEvent4681);\r\n iv_ruleEntryEvent=ruleEntryEvent();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleEntryEvent; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleEntryEvent4691); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleType = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2094:2: (iv_ruleType= ruleType EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2095:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FOLLOW_ruleType_in_entryRuleType4992);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleType5002); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleAstExpression() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1435:1: ( ruleAstExpression EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1436:1: ruleAstExpression EOF\n {\n before(grammarAccess.getAstExpressionRule()); \n pushFollow(FOLLOW_ruleAstExpression_in_entryRuleAstExpression3003);\n ruleAstExpression();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstExpression3010); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleContext() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleContext = null;\n\n\n try {\n // InternalMappingDsl.g:5534:48: (iv_ruleContext= ruleContext EOF )\n // InternalMappingDsl.g:5535:2: iv_ruleContext= ruleContext EOF\n {\n newCompositeNode(grammarAccess.getContextRule()); \n pushFollow(FOLLOW_1);\n iv_ruleContext=ruleContext();\n\n state._fsp--;\n\n current =iv_ruleContext; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleExpr() throws RecognitionException {\n try {\n // InternalWh.g:279:1: ( ruleExpr EOF )\n // InternalWh.g:280:1: ruleExpr EOF\n {\n before(grammarAccess.getExprRule()); \n pushFollow(FOLLOW_1);\n ruleExpr();\n\n state._fsp--;\n\n after(grammarAccess.getExprRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleAstToken() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1155:1: ( ruleAstToken EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1156:1: ruleAstToken EOF\n {\n before(grammarAccess.getAstTokenRule()); \n pushFollow(FOLLOW_ruleAstToken_in_entryRuleAstToken2403);\n ruleAstToken();\n\n state._fsp--;\n\n after(grammarAccess.getAstTokenRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstToken2410); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public static List<Rule> fromRDF(final Iterable<Statement> model) {\n\n // Load namespaces from model metadata, reusing default prefix/ns mappings\n final Map<String, String> namespaces = new HashMap<>(Namespaces.DEFAULT.uriMap());\n if (model instanceof Model) {\n for (final Namespace namespace : ((Model) model).getNamespaces()) {\n namespaces.put(namespace.getPrefix(), namespace.getName());\n }\n }\n for (final Statement stmt : model) {\n if (stmt.getSubject() instanceof URI && stmt.getObject() instanceof Literal\n && stmt.getPredicate().equals(RR.PREFIX_PROPERTY)) {\n namespaces.put(stmt.getObject().stringValue(), stmt.getSubject().stringValue());\n }\n }\n\n // Use a 5-fields Object[] record to collect the attributes of each rule.\n // fields: 0 = fixpoint, 1 = phase, 2 = delete expr, 3 = insert expr, 4 = where expr\n final Map<URI, Object[]> records = new HashMap<>();\n\n // Scan the statements, extracting rule properties and populating the records map\n for (final Statement stmt : model) {\n try {\n if (stmt.getSubject() instanceof URI) {\n\n // Extract relevant statement components\n final URI subj = (URI) stmt.getSubject();\n final URI pred = stmt.getPredicate();\n final Value obj = stmt.getObject();\n\n // Identify field and value (if any) of corresponding Object[] record\n int field = -1;\n Object value = null;\n if (pred.equals(RDF.TYPE)) {\n field = 0;\n if (obj.equals(RR.FIXPOINT_RULE)) {\n value = true;\n } else if (obj.equals(RR.NON_FIXPOINT_RULE)) {\n value = false;\n }\n } else if (pred.equals(RR.PHASE)) {\n field = 1;\n value = ((Literal) obj).intValue();\n } else if (pred.equals(RR.DELETE)) {\n field = 2;\n } else if (pred.equals(RR.INSERT) || pred.equals(RR.HEAD)) {\n field = 3;\n } else if (pred.equals(RR.WHERE) || pred.equals(RR.BODY)) {\n field = 4;\n }\n if (field == 2 || field == 3 || field == 4) {\n value = Algebra.parseTupleExpr(stmt.getObject().stringValue(), null,\n namespaces);\n }\n\n // Update Object[] records if the statement is about a rule\n if (value != null) {\n Object[] record = records.get(subj);\n if (record == null) {\n record = new Object[] { true, 0, null, null, null };\n records.put(subj, record);\n }\n record[field] = value;\n }\n }\n } catch (final Throwable ex) {\n throw new IllegalArgumentException(\"Invalid rule attribute in statement: \" + stmt,\n ex);\n }\n }\n\n // Generate the rules from parsed heads and bodies\n final List<Rule> rules = new ArrayList<>();\n for (final Map.Entry<URI, Object[]> entry : records.entrySet()) {\n final URI id = entry.getKey();\n final Object[] record = entry.getValue();\n rules.add(new Rule(id, (Boolean) record[0], (Integer) record[1],\n (TupleExpr) record[2], (TupleExpr) record[3], (TupleExpr) record[4]));\n }\n return rules;\n }", "public final EObject entryRuleRecordDef() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRecordDef = null;\n\n\n try {\n // InternalSafetyParser.g:6221:50: (iv_ruleRecordDef= ruleRecordDef EOF )\n // InternalSafetyParser.g:6222:2: iv_ruleRecordDef= ruleRecordDef EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getRecordDefRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleRecordDef=ruleRecordDef();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleRecordDef; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleLink() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:230:1: ( ruleLink EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:231:1: ruleLink EOF\n {\n before(grammarAccess.getLinkRule()); \n pushFollow(FollowSets000.FOLLOW_ruleLink_in_entryRuleLink421);\n ruleLink();\n _fsp--;\n\n after(grammarAccess.getLinkRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleLink428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // InternalCsv.g:80:1: ( ruleLanguage EOF )\n // InternalCsv.g:81:1: ruleLanguage EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageRule()); \n }\n pushFollow(FOLLOW_1);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "static public Rule parse(OrchestraSystem catalog, String rule) throws ParseException, RelationNotFoundException {\r\n\t\treturn parse(catalog, rule, null);\r\n\t}", "public final String entryRuleR() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleR = null;\n\n\n try {\n // InternalMLRegression.g:225:41: (iv_ruleR= ruleR EOF )\n // InternalMLRegression.g:226:2: iv_ruleR= ruleR EOF\n {\n newCompositeNode(grammarAccess.getRRule()); \n pushFollow(FOLLOW_1);\n iv_ruleR=ruleR();\n\n state._fsp--;\n\n current =iv_ruleR.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final Boolean ruleDelegateModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean this_Model_0 = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:60:1: (this_Model_0= ruleModel )\n // PsiInternalExUnorderedGroupsTestLanguage.g:61:2: this_Model_0= ruleModel\n {\n\n \t\tmarkComposite(elementTypeProvider.getDelegateModel_ModelParserRuleCallElementType());\n \t\n pushFollow(FollowSets000.FOLLOW_2);\n this_Model_0=ruleModel();\n\n state._fsp--;\n\n\n \t\tcurrent = this_Model_0;\n \t\tdoneComposite();\n \t\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "public final void entryRuleAction() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:280:1: ( ruleAction EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:281:1: ruleAction EOF\n {\n before(grammarAccess.getActionRule()); \n pushFollow(FOLLOW_ruleAction_in_entryRuleAction480);\n ruleAction();\n\n state._fsp--;\n\n after(grammarAccess.getActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAction487); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleInput() throws RecognitionException {\r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:61:1: ( ruleInput EOF )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:62:1: ruleInput EOF\r\n {\r\n before(grammarAccess.getInputRule()); \r\n pushFollow(FOLLOW_ruleInput_in_entryRuleInput61);\r\n ruleInput();\r\n\r\n state._fsp--;\r\n\r\n after(grammarAccess.getInputRule()); \r\n match(input,EOF,FOLLOW_EOF_in_entryRuleInput68); \r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleArg() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArg = null;\n\n\n try {\n // InternalSafetyParser.g:5865:44: (iv_ruleArg= ruleArg EOF )\n // InternalSafetyParser.g:5866:2: iv_ruleArg= ruleArg EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getArgRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleArg=ruleArg();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleArg; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleMatchOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleMatchOperator = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:964:2: (iv_ruleMatchOperator= ruleMatchOperator EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:965:2: iv_ruleMatchOperator= ruleMatchOperator EOF\n {\n newCompositeNode(grammarAccess.getMatchOperatorRule()); \n pushFollow(FOLLOW_ruleMatchOperator_in_entryRuleMatchOperator2103);\n iv_ruleMatchOperator=ruleMatchOperator();\n\n state._fsp--;\n\n current =iv_ruleMatchOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleMatchOperator2113); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public RuleParser() {\n this.fileName = \"\";\n }", "public final EObject entryRuleExpressionStatement() throws RecognitionException {\n EObject current = null;\n int entryRuleExpressionStatement_StartIndex = input.index();\n EObject iv_ruleExpressionStatement = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 51) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2457:2: (iv_ruleExpressionStatement= ruleExpressionStatement EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2458:2: iv_ruleExpressionStatement= ruleExpressionStatement EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpressionStatementRule()); \n }\n pushFollow(FOLLOW_ruleExpressionStatement_in_entryRuleExpressionStatement4848);\n iv_ruleExpressionStatement=ruleExpressionStatement();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpressionStatement; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpressionStatement4858); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 51, entryRuleExpressionStatement_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleEndExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleEndExpression = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6159:2: (iv_ruleEndExpression= ruleEndExpression EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6160:2: iv_ruleEndExpression= ruleEndExpression EOF\n {\n currentNode = createCompositeNode(grammarAccess.getEndExpressionRule(), currentNode); \n pushFollow(FOLLOW_ruleEndExpression_in_entryRuleEndExpression10733);\n iv_ruleEndExpression=ruleEndExpression();\n _fsp--;\n\n current =iv_ruleEndExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleEndExpression10743); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression_6() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_6_StartIndex = input.index();\n EObject iv_ruleExpression_6 = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 93) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4087:2: (iv_ruleExpression_6= ruleExpression_6 EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4088:2: iv_ruleExpression_6= ruleExpression_6 EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpression_6Rule()); \n }\n pushFollow(FOLLOW_ruleExpression_6_in_entryRuleExpression_68143);\n iv_ruleExpression_6=ruleExpression_6();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression_6; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression_68153); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 93, entryRuleExpression_6_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleStatement() throws RecognitionException {\n EObject current = null;\n int entryRuleStatement_StartIndex = input.index();\n EObject iv_ruleStatement = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 39) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2028:2: (iv_ruleStatement= ruleStatement EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2029:2: iv_ruleStatement= ruleStatement EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getStatementRule()); \n }\n pushFollow(FOLLOW_ruleStatement_in_entryRuleStatement3873);\n iv_ruleStatement=ruleStatement();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleStatement; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleStatement3883); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 39, entryRuleStatement_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleFeature() throws RecognitionException {\n EObject current = null;\n int entryRuleFeature_StartIndex = input.index();\n EObject iv_ruleFeature = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 123) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:5049:2: (iv_ruleFeature= ruleFeature EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:5050:2: iv_ruleFeature= ruleFeature EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getFeatureRule()); \n }\n pushFollow(FOLLOW_ruleFeature_in_entryRuleFeature10334);\n iv_ruleFeature=ruleFeature();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleFeature; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleFeature10344); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 123, entryRuleFeature_StartIndex); }\n }\n return current;\n }", "public final void entryRuleExpressions() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:892:1: ( ruleExpressions EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:893:1: ruleExpressions EOF\n {\n before(grammarAccess.getExpressionsRule()); \n pushFollow(FOLLOW_ruleExpressions_in_entryRuleExpressions1650);\n ruleExpressions();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionsRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpressions1657); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "@Test\n public void testWriteEntry_4args() {\n //System.out.println(\"writeEntry\");\n LemonSerializerImpl instance = new LemonSerializerImpl(null);\n LemonModel model = makeModel(instance);\n LexicalEntry entry = model.getLexica().iterator().next().getEntrys().iterator().next();\n LinguisticOntology lingOnto = new LexInfo();\n Writer target = new StringWriter();\n instance.writeEntry(model, entry, lingOnto, target);\n //System.out.println(target.toString());\n }", "public final EObject entryRuleAnnotation() throws RecognitionException {\n EObject current = null;\n int entryRuleAnnotation_StartIndex = input.index();\n EObject iv_ruleAnnotation = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 145) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:6080:2: (iv_ruleAnnotation= ruleAnnotation EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:6081:2: iv_ruleAnnotation= ruleAnnotation EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getAnnotationRule()); \n }\n pushFollow(FOLLOW_ruleAnnotation_in_entryRuleAnnotation12439);\n iv_ruleAnnotation=ruleAnnotation();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleAnnotation; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleAnnotation12449); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 145, entryRuleAnnotation_StartIndex); }\n }\n return current;\n }", "public final void entryRuleElement() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:90:1: ( ruleElement EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:91:1: ruleElement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementRule()); \r\n }\r\n pushFollow(FOLLOW_ruleElement_in_entryRuleElement127);\r\n ruleElement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleElement134); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleDto() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleDto = null;\r\n\r\n\r\n try {\r\n // InternalNestDsl.g:305:44: (iv_ruleDto= ruleDto EOF )\r\n // InternalNestDsl.g:306:2: iv_ruleDto= ruleDto EOF\r\n {\r\n newCompositeNode(grammarAccess.getDtoRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleDto=ruleDto();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleDto; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleDeclaration() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1155:1: ( ruleDeclaration EOF )\r\n // InternalGo.g:1156:1: ruleDeclaration EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDeclarationRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleDeclaration();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDeclarationRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleExpressionStmt() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1730:1: ( ruleExpressionStmt EOF )\r\n // InternalGo.g:1731:1: ruleExpressionStmt EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionStmtRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpressionStmt();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionStmtRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleEntity() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleEntity = null;\n\n\n try {\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:137:2: (iv_ruleEntity= ruleEntity EOF )\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:138:2: iv_ruleEntity= ruleEntity EOF\n {\n newCompositeNode(grammarAccess.getEntityRule()); \n pushFollow(FOLLOW_ruleEntity_in_entryRuleEntity226);\n iv_ruleEntity=ruleEntity();\n\n state._fsp--;\n\n current =iv_ruleEntity; \n match(input,EOF,FOLLOW_EOF_in_entryRuleEntity236); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleAttribute() throws RecognitionException {\n try {\n // InternalBSQL2Java.g:129:1: ( ruleAttribute EOF )\n // InternalBSQL2Java.g:130:1: ruleAttribute EOF\n {\n before(grammarAccess.getAttributeRule()); \n pushFollow(FOLLOW_1);\n ruleAttribute();\n\n state._fsp--;\n\n after(grammarAccess.getAttributeRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleTuple() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleTuple = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3960:2: (iv_ruleTuple= ruleTuple EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3961:2: iv_ruleTuple= ruleTuple EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getTupleRule()); \r\n }\r\n pushFollow(FOLLOW_ruleTuple_in_entryRuleTuple8435);\r\n iv_ruleTuple=ruleTuple();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleTuple; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleTuple8445); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleFunction() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleFunction = null;\n\n\n try {\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:420:2: (iv_ruleFunction= ruleFunction EOF )\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:421:2: iv_ruleFunction= ruleFunction EOF\n {\n newCompositeNode(grammarAccess.getFunctionRule()); \n pushFollow(FOLLOW_ruleFunction_in_entryRuleFunction773);\n iv_ruleFunction=ruleFunction();\n\n state._fsp--;\n\n current =iv_ruleFunction; \n match(input,EOF,FOLLOW_EOF_in_entryRuleFunction783); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleInputStatement() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleInputStatement = null;\n\n\n try {\n // InternalSafetyParser.g:4744:55: (iv_ruleInputStatement= ruleInputStatement EOF )\n // InternalSafetyParser.g:4745:2: iv_ruleInputStatement= ruleInputStatement EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getInputStatementRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleInputStatement=ruleInputStatement();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleInputStatement; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public OntologyMapper(Model model) {\n\tthis.model = model;\n }", "public final EObject entryRuleLink() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleLink = null;\n\n\n try {\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:1959:2: (iv_ruleLink= ruleLink EOF )\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:1960:2: iv_ruleLink= ruleLink EOF\n {\n newCompositeNode(grammarAccess.getLinkRule()); \n pushFollow(FOLLOW_ruleLink_in_entryRuleLink3915);\n iv_ruleLink=ruleLink();\n\n state._fsp--;\n\n current =iv_ruleLink; \n match(input,EOF,FOLLOW_EOF_in_entryRuleLink3925); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleTypeDef() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleTypeDef = null;\n\n\n try {\n // InternalNgt.g:1373:48: (iv_ruleTypeDef= ruleTypeDef EOF )\n // InternalNgt.g:1374:2: iv_ruleTypeDef= ruleTypeDef EOF\n {\n newCompositeNode(grammarAccess.getTypeDefRule()); \n pushFollow(FOLLOW_1);\n iv_ruleTypeDef=ruleTypeDef();\n\n state._fsp--;\n\n current =iv_ruleTypeDef; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleStatement() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleStatement = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2274:2: (iv_ruleStatement= ruleStatement EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2275:2: iv_ruleStatement= ruleStatement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getStatementRule()); \r\n }\r\n pushFollow(FOLLOW_ruleStatement_in_entryRuleStatement5161);\r\n iv_ruleStatement=ruleStatement();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleStatement; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleStatement5171); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }" ]
[ "0.7446325", "0.7115163", "0.70264024", "0.69082874", "0.67734534", "0.67185825", "0.670897", "0.6699514", "0.6629774", "0.6615354", "0.6546357", "0.6533414", "0.610549", "0.58856505", "0.58853215", "0.5847784", "0.5698463", "0.560501", "0.5457717", "0.54264516", "0.5287705", "0.52564436", "0.52225524", "0.5185864", "0.5175962", "0.51260847", "0.50450444", "0.50344414", "0.50109786", "0.49897414", "0.4960746", "0.4952983", "0.49415642", "0.4921526", "0.49125418", "0.49083418", "0.49031302", "0.48764902", "0.48648056", "0.4855169", "0.48355073", "0.48256725", "0.48175567", "0.4806844", "0.47948807", "0.4780419", "0.4770545", "0.47619677", "0.47610486", "0.4760363", "0.4728102", "0.47212672", "0.4713277", "0.47126862", "0.47026038", "0.4684937", "0.46703905", "0.4662409", "0.46582377", "0.46562803", "0.4654278", "0.46395734", "0.46385792", "0.46369857", "0.46365738", "0.46315035", "0.46305552", "0.46300638", "0.4609674", "0.45998025", "0.45997894", "0.4598542", "0.45874035", "0.4578898", "0.455414", "0.45437357", "0.45382443", "0.45327702", "0.45270762", "0.45114708", "0.44980973", "0.44907615", "0.4488928", "0.44817233", "0.44700807", "0.44629434", "0.4456854", "0.4455875", "0.4450832", "0.44319105", "0.44314873", "0.44311818", "0.44253907", "0.44214138", "0.44212386", "0.44207212", "0.44172257", "0.4414266", "0.4410651", "0.44066215" ]
0.74683595
0
$ANTLR end "entryRuleModel" $ANTLR start "ruleModel" InternalCsv.g:63:1: ruleModel : ( ( rule__Model__Group__0 ) ) ;
public final void ruleModel() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:67:2: ( ( ( rule__Model__Group__0 ) ) ) // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) ) { // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) ) // InternalCsv.g:69:3: ( rule__Model__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getModelAccess().getGroup()); } // InternalCsv.g:70:3: ( rule__Model__Group__0 ) // InternalCsv.g:70:4: rule__Model__Group__0 { pushFollow(FOLLOW_2); rule__Model__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getModelAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:66:2: ( ( ( rule__Model__Group__0 ) ) )\n // InternalMLRegression.g:67:2: ( ( rule__Model__Group__0 ) )\n {\n // InternalMLRegression.g:67:2: ( ( rule__Model__Group__0 ) )\n // InternalMLRegression.g:68:3: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // InternalMLRegression.g:69:3: ( rule__Model__Group__0 )\n // InternalMLRegression.g:69:4: rule__Model__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:73:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:75:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:1: ( rule__Model__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel94);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:80:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:81:1: ( ( rule__Model__Group__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:81:1: ( ( rule__Model__Group__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:82:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:83:1: ( rule__Model__Group__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:83:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel103);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalCsv.g:55:1: ( ruleModel EOF )\n // InternalCsv.g:56:1: ruleModel EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelRule()); \n }\n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:61:1: ( ruleModel EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:62:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel61);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:73:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:74:1: ( ( rule__Model__Group__0 ) )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:74:1: ( ( rule__Model__Group__0 ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:75:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:76:1: ( rule__Model__Group__0 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:76:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel94);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:61:1: ( ruleModel EOF )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:62:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel61);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\r\n try {\r\n // InternalGo.g:55:1: ( ruleModel EOF )\r\n // InternalGo.g:56:1: ruleModel EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getModelRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleModel();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getModelRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleModel() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:64:1: ( ruleModel EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:65:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel66);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel73); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final Boolean entryRuleModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean iv_ruleModel = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:72:47: (iv_ruleModel= ruleModel EOF )\n // PsiInternalExUnorderedGroupsTestLanguage.g:73:2: iv_ruleModel= ruleModel EOF\n {\n markComposite(elementTypeProvider.getModelElementType()); \n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FollowSets000.FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalMLRegression.g:54:1: ( ruleModel EOF )\n // InternalMLRegression.g:55:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalWh.g:54:1: ( ruleModel EOF )\n // InternalWh.g:55:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:69:2: (iv_ruleModel= ruleModel EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:70:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel75);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:68:2: (iv_ruleModel= ruleModel EOF )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:69:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel75);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // InternalMLRegression.g:64:46: (iv_ruleModel= ruleModel EOF )\n // InternalMLRegression.g:65:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject ruleModel() throws RecognitionException {\n EObject current = null;\n\n EObject lv_models_0_0 = null;\n\n\n enterRule(); \n \n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:80:28: ( ( (lv_models_0_0= rulePackageDeclaration ) )+ )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:81:1: ( (lv_models_0_0= rulePackageDeclaration ) )+\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:81:1: ( (lv_models_0_0= rulePackageDeclaration ) )+\n int cnt1=0;\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==12) ) {\n alt1=1;\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:82:1: (lv_models_0_0= rulePackageDeclaration )\n \t {\n \t // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:82:1: (lv_models_0_0= rulePackageDeclaration )\n \t // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:83:3: lv_models_0_0= rulePackageDeclaration\n \t {\n \t \n \t \t newCompositeNode(grammarAccess.getModelAccess().getModelsPackageDeclarationParserRuleCall_0()); \n \t \t \n \t pushFollow(FOLLOW_rulePackageDeclaration_in_ruleModel130);\n \t lv_models_0_0=rulePackageDeclaration();\n\n \t state._fsp--;\n\n\n \t \t if (current==null) {\n \t \t current = createModelElementForParent(grammarAccess.getModelRule());\n \t \t }\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"models\",\n \t \t\tlv_models_0_0, \n \t \t\t\"PackageDeclaration\");\n \t \t afterParserOrEnumRuleCall();\n \t \t \n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt1 >= 1 ) break loop1;\n EarlyExitException eee =\n new EarlyExitException(1, input);\n throw eee;\n }\n cnt1++;\n } while (true);\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:66:2: ( ( ( rule__Model__ProgramAssignment ) ) )\n // InternalWh.g:67:2: ( ( rule__Model__ProgramAssignment ) )\n {\n // InternalWh.g:67:2: ( ( rule__Model__ProgramAssignment ) )\n // InternalWh.g:68:3: ( rule__Model__ProgramAssignment )\n {\n before(grammarAccess.getModelAccess().getProgramAssignment()); \n // InternalWh.g:69:3: ( rule__Model__ProgramAssignment )\n // InternalWh.g:69:4: rule__Model__ProgramAssignment\n {\n pushFollow(FOLLOW_2);\n rule__Model__ProgramAssignment();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getProgramAssignment()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleModel() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleModel = null;\r\n\r\n\r\n try {\r\n // InternalMyDsl.g:64:46: (iv_ruleModel= ruleModel EOF )\r\n // InternalMyDsl.g:65:2: iv_ruleModel= ruleModel EOF\r\n {\r\n newCompositeNode(grammarAccess.getModelRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleModel=ruleModel();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleModel; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // InternalNgt.g:64:46: (iv_ruleModel= ruleModel EOF )\n // InternalNgt.g:65:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleModel() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:67:2: ( ( ( rule__Model__GreetingsAssignment ) ) )\r\n // InternalGo.g:68:2: ( ( rule__Model__GreetingsAssignment ) )\r\n {\r\n // InternalGo.g:68:2: ( ( rule__Model__GreetingsAssignment ) )\r\n // InternalGo.g:69:3: ( rule__Model__GreetingsAssignment )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getModelAccess().getGreetingsAssignment()); \r\n }\r\n // InternalGo.g:70:3: ( rule__Model__GreetingsAssignment )\r\n // InternalGo.g:70:4: rule__Model__GreetingsAssignment\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Model__GreetingsAssignment();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getModelAccess().getGreetingsAssignment()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2538:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2539:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04997);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__05000);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:440:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:441:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__0890);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__0893);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final Boolean ruleDelegateModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean this_Model_0 = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:60:1: (this_Model_0= ruleModel )\n // PsiInternalExUnorderedGroupsTestLanguage.g:61:2: this_Model_0= ruleModel\n {\n\n \t\tmarkComposite(elementTypeProvider.getDelegateModel_ModelParserRuleCallElementType());\n \t\n pushFollow(FollowSets000.FOLLOW_2);\n this_Model_0=ruleModel();\n\n state._fsp--;\n\n\n \t\tcurrent = this_Model_0;\n \t\tdoneComposite();\n \t\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:452:1: ( ( () ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:453:1: ( () )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:453:1: ( () )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:454:1: ()\n {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:455:1: ()\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:457:1: \n {\n }\n\n after(grammarAccess.getModelAccess().getModelAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalMLRegression.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "ModelRule createModelRule();", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "RuleModelPackage getRuleModelPackage();", "public final EObject entryRuleModelElement() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModelElement = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:177:2: (iv_ruleModelElement= ruleModelElement EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:178:2: iv_ruleModelElement= ruleModelElement EOF\n {\n newCompositeNode(grammarAccess.getModelElementRule()); \n pushFollow(FOLLOW_ruleModelElement_in_entryRuleModelElement317);\n iv_ruleModelElement=ruleModelElement();\n\n state._fsp--;\n\n current =iv_ruleModelElement; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModelElement327); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleRM_Model() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRM_Model = null;\n\n\n try {\n // InternalRMParser.g:57:49: (iv_ruleRM_Model= ruleRM_Model EOF )\n // InternalRMParser.g:58:2: iv_ruleRM_Model= ruleRM_Model EOF\n {\n newCompositeNode(grammarAccess.getRM_ModelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleRM_Model=ruleRM_Model();\n\n state._fsp--;\n\n current =iv_ruleRM_Model; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2060:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2061:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04407);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__04410);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleFinModelFile() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:74:2: ( ( ( rule__FinModelFile__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:75:1: ( ( rule__FinModelFile__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:75:1: ( ( rule__FinModelFile__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:76:1: ( rule__FinModelFile__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:77:1: ( rule__FinModelFile__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:77:2: rule__FinModelFile__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__0_in_ruleFinModelFile100);\r\n rule__FinModelFile__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "final public ASTModel Model() throws ParseException {\r\n /*@bgen(jjtree) Model */\r\n ASTModel jjtn000 = new ASTModel(JJTMODEL);\r\n boolean jjtc000 = true;\r\n jjtree.openNodeScope(jjtn000);\r\n try {\r\n if (jj_2_1(2)) {\r\n jj_consume_token(BEGIN);\r\n jj_consume_token(MODEL);\r\n label_1:\r\n while (true) {\r\n jj_consume_token(BEGIN);\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case COMPARTMENTS:\r\n CompartmentsBlock();\r\n break;\r\n case PARAMETERS:\r\n ParameterBlock();\r\n break;\r\n case MOLECULE:\r\n MolecularDefinitionBlock();\r\n break;\r\n case ANCHORS:\r\n AnchorsBlock();\r\n break;\r\n case SEED:\r\n SeedSpeciesBlock();\r\n break;\r\n case REACTION:\r\n ReactionRulesBlock();\r\n break;\r\n case OBSERVABLES:\r\n ObservablesBlock();\r\n break;\r\n case FUNCTIONS:\r\n FunctionsBlock();\r\n break;\r\n default:\r\n jj_la1[0] = jj_gen;\r\n jj_consume_token(-1);\r\n throw new ParseException();\r\n }\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case BEGIN:\r\n ;\r\n break;\r\n default:\r\n jj_la1[1] = jj_gen;\r\n break label_1;\r\n }\r\n }\r\n jj_consume_token(END);\r\n jj_consume_token(MODEL);\r\n label_2:\r\n while (true) {\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case ACTION:\r\n ;\r\n break;\r\n default:\r\n jj_la1[2] = jj_gen;\r\n break label_2;\r\n }\r\n Action();\r\n }\r\n jjtree.closeNodeScope(jjtn000, true);\r\n jjtc000 = false;\r\n {if (true) return jjtn000;}\r\n } else if (jj_2_2(2)) {\r\n label_3:\r\n while (true) {\r\n jj_consume_token(BEGIN);\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case COMPARTMENTS:\r\n CompartmentsBlock();\r\n break;\r\n case PARAMETERS:\r\n ParameterBlock();\r\n break;\r\n case MOLECULE:\r\n MolecularDefinitionBlock();\r\n break;\r\n case ANCHORS:\r\n AnchorsBlock();\r\n break;\r\n case SEED:\r\n SeedSpeciesBlock();\r\n break;\r\n case REACTION:\r\n ReactionRulesBlock();\r\n break;\r\n case OBSERVABLES:\r\n ObservablesBlock();\r\n break;\r\n case FUNCTIONS:\r\n FunctionsBlock();\r\n break;\r\n default:\r\n jj_la1[3] = jj_gen;\r\n jj_consume_token(-1);\r\n throw new ParseException();\r\n }\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case BEGIN:\r\n ;\r\n break;\r\n default:\r\n jj_la1[4] = jj_gen;\r\n break label_3;\r\n }\r\n }\r\n label_4:\r\n while (true) {\r\n switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {\r\n case ACTION:\r\n ;\r\n break;\r\n default:\r\n jj_la1[5] = jj_gen;\r\n break label_4;\r\n }\r\n Action();\r\n }\r\n jjtree.closeNodeScope(jjtn000, true);\r\n jjtc000 = false;\r\n {if (true) return jjtn000;}\r\n } else {\r\n jj_consume_token(-1);\r\n throw new ParseException();\r\n }\r\n } catch (Throwable jjte000) {\r\n if (jjtc000) {\r\n jjtree.clearNodeScope(jjtn000);\r\n jjtc000 = false;\r\n } else {\r\n jjtree.popNode();\r\n }\r\n if (jjte000 instanceof RuntimeException) {\r\n {if (true) throw (RuntimeException)jjte000;}\r\n }\r\n if (jjte000 instanceof ParseException) {\r\n {if (true) throw (ParseException)jjte000;}\r\n }\r\n {if (true) throw (Error)jjte000;}\r\n } finally {\r\n if (jjtc000) {\r\n jjtree.closeNodeScope(jjtn000, true);\r\n }\r\n }\r\n throw new Error(\"Missing return statement in function\");\r\n }", "public final void rule__Model__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:937:1: ( ( ( rule__Model__NameAssignment_2 ) ) )\n // InternalCsv.g:938:1: ( ( rule__Model__NameAssignment_2 ) )\n {\n // InternalCsv.g:938:1: ( ( rule__Model__NameAssignment_2 ) )\n // InternalCsv.g:939:2: ( rule__Model__NameAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getNameAssignment_2()); \n }\n // InternalCsv.g:940:2: ( rule__Model__NameAssignment_2 )\n // InternalCsv.g:940:3: rule__Model__NameAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Model__NameAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getNameAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setModel(String model) {\n this.model = model;\n }", "public void setModel(String model)\n {\n this.model = model;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:471:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:472:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__1951);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__2_in_rule__Model__Group__1954);\n rule__Model__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setModel(String model) {\r\n this.model = model;\r\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2550:1: ( ( ( ( rule__Model__TermsAssignment_0 ) ) ( ( rule__Model__TermsAssignment_0 )* ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2551:1: ( ( ( rule__Model__TermsAssignment_0 ) ) ( ( rule__Model__TermsAssignment_0 )* ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2551:1: ( ( ( rule__Model__TermsAssignment_0 ) ) ( ( rule__Model__TermsAssignment_0 )* ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2552:1: ( ( rule__Model__TermsAssignment_0 ) ) ( ( rule__Model__TermsAssignment_0 )* )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2552:1: ( ( rule__Model__TermsAssignment_0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2553:1: ( rule__Model__TermsAssignment_0 )\n {\n before(grammarAccess.getModelAccess().getTermsAssignment_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2554:1: ( rule__Model__TermsAssignment_0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2554:2: rule__Model__TermsAssignment_0\n {\n pushFollow(FOLLOW_rule__Model__TermsAssignment_0_in_rule__Model__Group__0__Impl5029);\n rule__Model__TermsAssignment_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getTermsAssignment_0()); \n\n }\n\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2557:1: ( ( rule__Model__TermsAssignment_0 )* )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2558:1: ( rule__Model__TermsAssignment_0 )*\n {\n before(grammarAccess.getModelAccess().getTermsAssignment_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2559:1: ( rule__Model__TermsAssignment_0 )*\n loop18:\n do {\n int alt18=2;\n int LA18_0 = input.LA(1);\n\n if ( (LA18_0==32) ) {\n alt18=1;\n }\n\n\n switch (alt18) {\n \tcase 1 :\n \t // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2559:2: rule__Model__TermsAssignment_0\n \t {\n \t pushFollow(FOLLOW_rule__Model__TermsAssignment_0_in_rule__Model__Group__0__Impl5041);\n \t rule__Model__TermsAssignment_0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop18;\n }\n } while (true);\n\n after(grammarAccess.getModelAccess().getTermsAssignment_0()); \n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleGoalModel() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGoalModel = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:69:2: (iv_ruleGoalModel= ruleGoalModel EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:70:2: iv_ruleGoalModel= ruleGoalModel EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGoalModelRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGoalModel_in_entryRuleGoalModel75);\r\n iv_ruleGoalModel=ruleGoalModel();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGoalModel; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGoalModel85); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) )\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n {\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )*\n loop11:\n do {\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n alt11=1;\n }\n\n\n switch (alt11) {\n \tcase 1 :\n \t // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__Model__LanguagesAssignment_6();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop11;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:909:1: ( ( ( rule__Model__MlAssignment_1 ) ) )\n // InternalMLRegression.g:910:1: ( ( rule__Model__MlAssignment_1 ) )\n {\n // InternalMLRegression.g:910:1: ( ( rule__Model__MlAssignment_1 ) )\n // InternalMLRegression.g:911:2: ( rule__Model__MlAssignment_1 )\n {\n before(grammarAccess.getModelAccess().getMlAssignment_1()); \n // InternalMLRegression.g:912:2: ( rule__Model__MlAssignment_1 )\n // InternalMLRegression.g:912:3: rule__Model__MlAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Model__MlAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getMlAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2118:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2119:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_rule__Model__Group__2__Impl_in_rule__Model__Group__24528);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__3_in_rule__Model__Group__24531);\n rule__Model__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:883:1: ( ( ( rule__Model__LanguageTargetAssignment_0 )? ) )\n // InternalMLRegression.g:884:1: ( ( rule__Model__LanguageTargetAssignment_0 )? )\n {\n // InternalMLRegression.g:884:1: ( ( rule__Model__LanguageTargetAssignment_0 )? )\n // InternalMLRegression.g:885:2: ( rule__Model__LanguageTargetAssignment_0 )?\n {\n before(grammarAccess.getModelAccess().getLanguageTargetAssignment_0()); \n // InternalMLRegression.g:886:2: ( rule__Model__LanguageTargetAssignment_0 )?\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==22) ) {\n alt8=1;\n }\n switch (alt8) {\n case 1 :\n // InternalMLRegression.g:886:3: rule__Model__LanguageTargetAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__Model__LanguageTargetAssignment_0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getModelAccess().getLanguageTargetAssignment_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1098:1: ( ( ( rule__Model__ActionsAssignment_8 )* ) )\n // InternalCsv.g:1099:1: ( ( rule__Model__ActionsAssignment_8 )* )\n {\n // InternalCsv.g:1099:1: ( ( rule__Model__ActionsAssignment_8 )* )\n // InternalCsv.g:1100:2: ( rule__Model__ActionsAssignment_8 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getActionsAssignment_8()); \n }\n // InternalCsv.g:1101:2: ( rule__Model__ActionsAssignment_8 )*\n loop12:\n do {\n int alt12=2;\n int LA12_0 = input.LA(1);\n\n if ( (LA12_0==20||(LA12_0>=23 && LA12_0<=26)) ) {\n alt12=1;\n }\n\n\n switch (alt12) {\n \tcase 1 :\n \t // InternalCsv.g:1101:3: rule__Model__ActionsAssignment_8\n \t {\n \t pushFollow(FOLLOW_11);\n \t rule__Model__ActionsAssignment_8();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop12;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getActionsAssignment_8()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:483:1: ( ( ( ruleother )* ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:484:1: ( ( ruleother )* )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:484:1: ( ( ruleother )* )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:485:1: ( ruleother )*\n {\n before(grammarAccess.getModelAccess().getOtherParserRuleCall_1()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:486:1: ( ruleother )*\n loop5:\n do {\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( ((LA5_0>=RULE_ML_COMMENT && LA5_0<=RULE_OTHER_COMMAND)) ) {\n alt5=1;\n }\n\n\n switch (alt5) {\n \tcase 1 :\n \t // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:486:3: ruleother\n \t {\n \t pushFollow(FOLLOW_ruleother_in_rule__Model__Group__1__Impl982);\n \t ruleother();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop5;\n }\n } while (true);\n\n after(grammarAccess.getModelAccess().getOtherParserRuleCall_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final Boolean entryRuleDelegateModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean iv_ruleDelegateModel = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:52:55: (iv_ruleDelegateModel= ruleDelegateModel EOF )\n // PsiInternalExUnorderedGroupsTestLanguage.g:53:2: iv_ruleDelegateModel= ruleDelegateModel EOF\n {\n markComposite(elementTypeProvider.getDelegateModelElementType()); \n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleDelegateModel=ruleDelegateModel();\n\n state._fsp--;\n\n current =iv_ruleDelegateModel; \n match(input,EOF,FollowSets000.FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setModel(String model) {\n this.model = model == null ? null : model.trim();\n }", "public final Boolean entryRuleNestedModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean iv_ruleNestedModel = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:1531:53: (iv_ruleNestedModel= ruleNestedModel EOF )\n // PsiInternalExUnorderedGroupsTestLanguage.g:1532:2: iv_ruleNestedModel= ruleNestedModel EOF\n {\n markComposite(elementTypeProvider.getNestedModelElementType()); \n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleNestedModel=ruleNestedModel();\n\n state._fsp--;\n\n current =iv_ruleNestedModel; \n match(input,EOF,FollowSets000.FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2089:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2090:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__14468);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__2_in_rule__Model__Group__14471);\n rule__Model__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "Model getModel();", "Model getModel();", "Model getModel();", "NCModel getModel();", "ModelData getModel();", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void addModel(Model aModel) throws IOException {\n addModel(aModel, null);\n }", "M getModel();", "@Override\n\tpublic void setModel(String model) {\n\t\tthis.model = model;\n\t}", "public void setModel(Model model) {\n this.model = model;\n }", "public void setModel(Model model) {\n this.model = model;\n }", "public void setModel(Model model) {\n this.model = model;\n }", "public final void rule__FinModelFile__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3406:1: ( ( ( rule__FinModelFile__Group_0__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3408:1: ( rule__FinModelFile__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:1: ( rule__FinModelFile__Group_0__0 )?\r\n int alt38=2;\r\n int LA38_0 = input.LA(1);\r\n\r\n if ( (LA38_0==71) ) {\r\n alt38=1;\r\n }\r\n switch (alt38) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:2: rule__FinModelFile__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0_in_rule__FinModelFile__Group__0__Impl7566);\r\n rule__FinModelFile__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:991:1: ( ( 'languages' ) )\n // InternalCsv.g:992:1: ( 'languages' )\n {\n // InternalCsv.g:992:1: ( 'languages' )\n // InternalCsv.g:993:2: 'languages'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n match(input,15,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3486:1: ( rule__FinModelFile__Group_0__0__Impl rule__FinModelFile__Group_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3487:2: rule__FinModelFile__Group_0__0__Impl rule__FinModelFile__Group_0__1\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0__Impl_in_rule__FinModelFile__Group_0__07722);\r\n rule__FinModelFile__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1_in_rule__FinModelFile__Group_0__07725);\r\n rule__FinModelFile__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2574:1: ( rule__Model__Group__1__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2575:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__15074);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setModel(String model) {\r\n this.model = Objects.requireNonNull(model);\r\n }", "public final void rule__FinModelFile__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3394:1: ( rule__FinModelFile__Group__0__Impl rule__FinModelFile__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3395:2: rule__FinModelFile__Group__0__Impl rule__FinModelFile__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__0__Impl_in_rule__FinModelFile__Group__07536);\r\n rule__FinModelFile__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__1_in_rule__FinModelFile__Group__07539);\r\n rule__FinModelFile__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setModel(EPStatementObjectModel model) {\n this.model = model;\n }", "public final void ruleExpression() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2367:2: ( ( ( rule__Expression__Group__0 ) ) )\r\n // InternalGo.g:2368:2: ( ( rule__Expression__Group__0 ) )\r\n {\r\n // InternalGo.g:2368:2: ( ( rule__Expression__Group__0 ) )\r\n // InternalGo.g:2369:3: ( rule__Expression__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionAccess().getGroup()); \r\n }\r\n // InternalGo.g:2370:3: ( rule__Expression__Group__0 )\r\n // InternalGo.g:2370:4: rule__Expression__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Expression__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleInput() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:73:2: ( ( ( rule__Input__Group__0 ) ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:74:1: ( ( rule__Input__Group__0 ) )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:74:1: ( ( rule__Input__Group__0 ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:75:1: ( rule__Input__Group__0 )\r\n {\r\n before(grammarAccess.getInputAccess().getGroup()); \r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:76:1: ( rule__Input__Group__0 )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:76:2: rule__Input__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__0_in_ruleInput94);\r\n rule__Input__Group__0();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n after(grammarAccess.getInputAccess().getGroup()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\r\n public void setModel(String model) {\n }", "public final EObject ruleModel() throws RecognitionException {\n EObject current = null;\n\n EObject lv_greetings_0_0 = null;\n\n\n enterRule(); \n \n try {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:79:28: ( ( (lv_greetings_0_0= ruleGreeting ) )* )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:80:1: ( (lv_greetings_0_0= ruleGreeting ) )*\n {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:80:1: ( (lv_greetings_0_0= ruleGreeting ) )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==11) ) {\n alt1=1;\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:81:1: (lv_greetings_0_0= ruleGreeting )\n \t {\n \t // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:81:1: (lv_greetings_0_0= ruleGreeting )\n \t // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:82:3: lv_greetings_0_0= ruleGreeting\n \t {\n \t \n \t \t newCompositeNode(grammarAccess.getModelAccess().getGreetingsGreetingParserRuleCall_0()); \n \t \t \n \t pushFollow(FOLLOW_ruleGreeting_in_ruleModel130);\n \t lv_greetings_0_0=ruleGreeting();\n\n \t state._fsp--;\n\n\n \t \t if (current==null) {\n \t \t current = createModelElementForParent(grammarAccess.getModelRule());\n \t \t }\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"greetings\",\n \t \t\tlv_greetings_0_0, \n \t \t\t\"Greeting\");\n \t \t afterParserOrEnumRuleCall();\n \t \t \n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public void setModel(String model) {\r\n if (model != null) {\r\n store.put(Names.model, model);\r\n } else {\r\n \tstore.remove(Names.model);\r\n }\r\n }", "java.lang.String getModel();", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:898:1: ( rule__Model__Group__1__Impl )\n // InternalMLRegression.g:899:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@SuppressWarnings(\"unused\")\n public void addRulesFromAPIToModel(Model model){\n model.addAttribute(\"api_rules\",new Object(){\n public boolean add = API_Config.ALLOW_ADD;\n public boolean delete = API_Config.ALLOW_DELETE;\n public boolean edit = API_Config.ALLOW_EDIT;\n public boolean editSpeaker = API_Config.ALLOW_EDIT_SPEAKER;\n public boolean editTopic = API_Config.ALLOW_EDIT_TOPIC;\n public boolean editStatus = API_Config.ALLOW_EDIT_STATUS;\n public boolean editComment = API_Config.ALLOW_EDIT_COMMENT;\n public boolean editDate = API_Config.ALLOW_EDIT_DATE;\n });\n }", "public final void entryRuleFinModelFile() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:62:1: ( ruleFinModelFile EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:63:1: ruleFinModelFile EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileRule()); \r\n }\r\n pushFollow(FOLLOW_ruleFinModelFile_in_entryRuleFinModelFile67);\r\n ruleFinModelFile();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleFinModelFile74); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleInput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:416:2: ( ( ( rule__Input__Group__0 ) ) )\n // InternalBrowser.g:417:2: ( ( rule__Input__Group__0 ) )\n {\n // InternalBrowser.g:417:2: ( ( rule__Input__Group__0 ) )\n // InternalBrowser.g:418:3: ( rule__Input__Group__0 )\n {\n before(grammarAccess.getInputAccess().getGroup()); \n // InternalBrowser.g:419:3: ( rule__Input__Group__0 )\n // InternalBrowser.g:419:4: rule__Input__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "TypedModel getModel();", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:500:1: ( rule__Model__Group__2__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:501:2: rule__Model__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__2__Impl_in_rule__Model__Group__21013);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public abstract M getModel();", "public final void ruleInput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:141:2: ( ( ( rule__Input__Group__0 ) ) )\n // InternalWh.g:142:2: ( ( rule__Input__Group__0 ) )\n {\n // InternalWh.g:142:2: ( ( rule__Input__Group__0 ) )\n // InternalWh.g:143:3: ( rule__Input__Group__0 )\n {\n before(grammarAccess.getInputAccess().getGroup()); \n // InternalWh.g:144:3: ( rule__Input__Group__0 )\n // InternalWh.g:144:4: rule__Input__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2154:1: ( rule__Model__Group__3__Impl )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2155:2: rule__Model__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__3__Impl_in_rule__Model__Group__34605);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "com.google.ortools.linearsolver.MPModelProto getModel();", "public void setModel(String model){\n String validModel = model.toLowerCase();\n if(validModel.equals(\"Model S\") || validModel.equals(\"Enzo\")){\n this.model = model;\n }else{\n this.model = \"Unknown\";\n }\n\n }", "@Override\n\t\tpublic void setModel(int model) {\n\t\t\t\n\t\t}", "public final EObject entryRuleAbjadModel() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleAbjadModel = null;\r\n\r\n\r\n try {\r\n // InternalAbjad.g:64:51: (iv_ruleAbjadModel= ruleAbjadModel EOF )\r\n // InternalAbjad.g:65:2: iv_ruleAbjadModel= ruleAbjadModel EOF\r\n {\r\n newCompositeNode(grammarAccess.getAbjadModelRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleAbjadModel=ruleAbjadModel();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleAbjadModel; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public void setModel(Model model) {\n\t\tthis.model.copy(model);\r\n\t}" ]
[ "0.7811374", "0.75296706", "0.722407", "0.72212875", "0.7134487", "0.70714355", "0.68049943", "0.6785118", "0.67839134", "0.67565054", "0.66455966", "0.66028273", "0.64897203", "0.64553237", "0.6427293", "0.63913614", "0.6375721", "0.63743496", "0.63400745", "0.6321377", "0.6297088", "0.6245252", "0.62337905", "0.6121676", "0.60880977", "0.60578245", "0.60454684", "0.60444564", "0.6034051", "0.60239273", "0.60032535", "0.5988721", "0.59716094", "0.5960729", "0.5942003", "0.59001935", "0.58750266", "0.5862712", "0.5710745", "0.56642085", "0.55885273", "0.5566183", "0.5537935", "0.5513176", "0.5501729", "0.5482116", "0.5463201", "0.545098", "0.5397339", "0.5383191", "0.53727263", "0.5366565", "0.5340553", "0.53376865", "0.5324545", "0.5309581", "0.52952534", "0.5291737", "0.5278872", "0.52019036", "0.5201101", "0.51947767", "0.51947767", "0.51947767", "0.51751065", "0.5170282", "0.5155417", "0.515167", "0.51219964", "0.51197046", "0.5094378", "0.5094378", "0.5094378", "0.5078015", "0.5066192", "0.5051776", "0.5014976", "0.50044644", "0.4980084", "0.49506438", "0.4944751", "0.4944203", "0.49313927", "0.48967123", "0.4885135", "0.48675612", "0.4865549", "0.48621118", "0.4855847", "0.48277324", "0.48197523", "0.4814316", "0.481272", "0.4812657", "0.48063585", "0.4800224", "0.47825772", "0.47825468", "0.47808126", "0.47751573" ]
0.8172847
0
$ANTLR end "ruleModel" $ANTLR start "entryRuleLanguage" InternalCsv.g:79:1: entryRuleLanguage : ruleLanguage EOF ;
public final void entryRuleLanguage() throws RecognitionException { try { // InternalCsv.g:80:1: ( ruleLanguage EOF ) // InternalCsv.g:81:1: ruleLanguage EOF { if ( state.backtracking==0 ) { before(grammarAccess.getLanguageRule()); } pushFollow(FOLLOW_1); ruleLanguage(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getLanguageRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalCsv.g:55:1: ( ruleModel EOF )\n // InternalCsv.g:56:1: ruleModel EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelRule()); \n }\n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:173:1: ( ruleLanguage EOF )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:174:1: ruleLanguage EOF\n {\n before(grammarAccess.getLanguageRule()); \n pushFollow(FollowSets000.FOLLOW_ruleLanguage_in_entryRuleLanguage301);\n ruleLanguage();\n\n state._fsp--;\n\n after(grammarAccess.getLanguageRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleLanguage308); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:61:1: ( ruleModel EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:62:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel61);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:68:2: (iv_ruleModel= ruleModel EOF )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:69:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel75);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final Boolean entryRuleModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean iv_ruleModel = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:72:47: (iv_ruleModel= ruleModel EOF )\n // PsiInternalExUnorderedGroupsTestLanguage.g:73:2: iv_ruleModel= ruleModel EOF\n {\n markComposite(elementTypeProvider.getModelElementType()); \n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FollowSets000.FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:64:1: ( ruleModel EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:65:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel66);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel73); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleEntry() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:62:1: ( ruleEntry EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:63:1: ruleEntry EOF\n {\n before(grammarAccess.getEntryRule()); \n pushFollow(FollowSets000.FOLLOW_ruleEntry_in_entryRuleEntry61);\n ruleEntry();\n _fsp--;\n\n after(grammarAccess.getEntryRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleEntry68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleRule() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRule = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2736:2: (iv_ruleRule= ruleRule EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2737:2: iv_ruleRule= ruleRule EOF\n {\n newCompositeNode(grammarAccess.getRuleRule()); \n pushFollow(FOLLOW_ruleRule_in_entryRuleRule6136);\n iv_ruleRule=ruleRule();\n\n state._fsp--;\n\n current =iv_ruleRule; \n match(input,EOF,FOLLOW_EOF_in_entryRuleRule6146); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpression = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2467:2: (iv_ruleExpression= ruleExpression EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2468:2: iv_ruleExpression= ruleExpression EOF\n {\n currentNode = createCompositeNode(grammarAccess.getExpressionRule(), currentNode); \n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression4256);\n iv_ruleExpression=ruleExpression();\n _fsp--;\n\n current =iv_ruleExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression4266); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__Model__LanguagesAssignment_6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3667:1: ( ( ruleLanguage ) )\n // InternalCsv.g:3668:2: ( ruleLanguage )\n {\n // InternalCsv.g:3668:2: ( ruleLanguage )\n // InternalCsv.g:3669:3: ruleLanguage\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesLanguageParserRuleCall_6_0()); \n }\n pushFollow(FOLLOW_2);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesLanguageParserRuleCall_6_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleExpression() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2355:1: ( ruleExpression EOF )\r\n // InternalGo.g:2356:1: ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleLanguage0() throws RecognitionException {\n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:257:1: ( ruleLanguage0 EOF )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:258:1: ruleLanguage0 EOF\n {\n before(grammarAccess.getLanguage0Rule()); \n pushFollow(FollowSets000.FOLLOW_ruleLanguage0_in_entryRuleLanguage0480);\n ruleLanguage0();\n\n state._fsp--;\n\n after(grammarAccess.getLanguage0Rule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleLanguage0487); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalMLRegression.g:54:1: ( ruleModel EOF )\n // InternalMLRegression.g:55:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleLanguageTarget() throws RecognitionException {\n try {\n // InternalMLRegression.g:79:1: ( ruleLanguageTarget EOF )\n // InternalMLRegression.g:80:1: ruleLanguageTarget EOF\n {\n before(grammarAccess.getLanguageTargetRule()); \n pushFollow(FOLLOW_1);\n ruleLanguageTarget();\n\n state._fsp--;\n\n after(grammarAccess.getLanguageTargetRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:61:1: ( ruleModel EOF )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:62:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel61);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:69:2: (iv_ruleModel= ruleModel EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:70:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_ruleModel_in_entryRuleModel75);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModel85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2060:2: (iv_ruleExpression= ruleExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2061:2: iv_ruleExpression= ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression4369);\r\n iv_ruleExpression=ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression4379); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleContext() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleContext = null;\n\n\n try {\n // ../ac.soton.xtext.contextDsl/src-gen/ac/soton/xtext/parser/antlr/internal/InternalContextDsl.g:68:2: (iv_ruleContext= ruleContext EOF )\n // ../ac.soton.xtext.contextDsl/src-gen/ac/soton/xtext/parser/antlr/internal/InternalContextDsl.g:69:2: iv_ruleContext= ruleContext EOF\n {\n newCompositeNode(grammarAccess.getContextRule()); \n pushFollow(FollowSets000.FOLLOW_ruleContext_in_entryRuleContext75);\n iv_ruleContext=ruleContext();\n\n state._fsp--;\n\n current =iv_ruleContext; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleContext85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpression = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:3793:2: (iv_ruleExpression= ruleExpression EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:3794:2: iv_ruleExpression= ruleExpression EOF\n {\n newCompositeNode(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression8462);\n iv_ruleExpression=ruleExpression();\n\n state._fsp--;\n\n current =iv_ruleExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression8472); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalWh.g:54:1: ( ruleModel EOF )\n // InternalWh.g:55:1: ruleModel EOF\n {\n before(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n\n after(grammarAccess.getModelRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // InternalMLRegression.g:64:46: (iv_ruleModel= ruleModel EOF )\n // InternalMLRegression.g:65:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleModel() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleModel = null;\r\n\r\n\r\n try {\r\n // InternalMyDsl.g:64:46: (iv_ruleModel= ruleModel EOF )\r\n // InternalMyDsl.g:65:2: iv_ruleModel= ruleModel EOF\r\n {\r\n newCompositeNode(grammarAccess.getModelRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleModel=ruleModel();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleModel; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleLanguageTarget() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleLanguageTarget = null;\n\n\n try {\n // InternalMLRegression.g:121:55: (iv_ruleLanguageTarget= ruleLanguageTarget EOF )\n // InternalMLRegression.g:122:2: iv_ruleLanguageTarget= ruleLanguageTarget EOF\n {\n newCompositeNode(grammarAccess.getLanguageTargetRule()); \n pushFollow(FOLLOW_1);\n iv_ruleLanguageTarget=ruleLanguageTarget();\n\n state._fsp--;\n\n current =iv_ruleLanguageTarget; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleModel() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModel = null;\n\n\n try {\n // InternalNgt.g:64:46: (iv_ruleModel= ruleModel EOF )\n // InternalNgt.g:65:2: iv_ruleModel= ruleModel EOF\n {\n newCompositeNode(grammarAccess.getModelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleModel=ruleModel();\n\n state._fsp--;\n\n current =iv_ruleModel; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleExpression = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2458:2: (iv_ruleExpression= ruleExpression EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2459:2: iv_ruleExpression= ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression5585);\r\n iv_ruleExpression=ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression5595); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleExpression() throws RecognitionException {\n try {\n // InternalBrowser.g:254:1: ( ruleExpression EOF )\n // InternalBrowser.g:255:1: ruleExpression EOF\n {\n before(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_1);\n ruleExpression();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\r\n try {\r\n // InternalGo.g:55:1: ( ruleModel EOF )\r\n // InternalGo.g:56:1: ruleModel EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getModelRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleModel();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getModelRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleContext() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleContext = null;\n\n\n try {\n // InternalMappingDsl.g:5534:48: (iv_ruleContext= ruleContext EOF )\n // InternalMappingDsl.g:5535:2: iv_ruleContext= ruleContext EOF\n {\n newCompositeNode(grammarAccess.getContextRule()); \n pushFollow(FOLLOW_1);\n iv_ruleContext=ruleContext();\n\n state._fsp--;\n\n current =iv_ruleContext; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleNode() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleNode = null;\n\n\n try {\n // InternalSPDSL.g:160:45: (iv_ruleNode= ruleNode EOF )\n // InternalSPDSL.g:161:2: iv_ruleNode= ruleNode EOF\n {\n newCompositeNode(grammarAccess.getNodeRule()); \n pushFollow(FOLLOW_1);\n iv_ruleNode=ruleNode();\n\n state._fsp--;\n\n current =iv_ruleNode; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_StartIndex = input.index();\n EObject iv_ruleExpression = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 81) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:3658:2: (iv_ruleExpression= ruleExpression EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:3659:2: iv_ruleExpression= ruleExpression EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpressionRule()); \n }\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression7279);\n iv_ruleExpression=ruleExpression();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression7289); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 81, entryRuleExpression_StartIndex); }\n }\n return current;\n }", "public final void entryRuleActivity() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:118:1: ( ruleActivity EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:119:1: ruleActivity EOF\n {\n before(grammarAccess.getActivityRule()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_entryRuleActivity181);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getActivityRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleActivity188); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleType = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2094:2: (iv_ruleType= ruleType EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2095:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FOLLOW_ruleType_in_entryRuleType4992);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleType5002); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleTerm() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1936:1: ( ruleTerm EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1937:1: ruleTerm EOF\n {\n before(grammarAccess.getTermRule()); \n pushFollow(FOLLOW_ruleTerm_in_entryRuleTerm3648);\n ruleTerm();\n\n state._fsp--;\n\n after(grammarAccess.getTermRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleTerm3655); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final EObject entryRuleCategory() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleCategory = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:311:2: (iv_ruleCategory= ruleCategory EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:312:2: iv_ruleCategory= ruleCategory EOF\n {\n newCompositeNode(grammarAccess.getCategoryRule()); \n pushFollow(FollowSets000.FOLLOW_ruleCategory_in_entryRuleCategory579);\n iv_ruleCategory=ruleCategory();\n\n state._fsp--;\n\n current =iv_ruleCategory; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleCategory589); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleExpressions() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:892:1: ( ruleExpressions EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:893:1: ruleExpressions EOF\n {\n before(grammarAccess.getExpressionsRule()); \n pushFollow(FOLLOW_ruleExpressions_in_entryRuleExpressions1650);\n ruleExpressions();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionsRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpressions1657); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleExpr() throws RecognitionException {\n try {\n // InternalWh.g:279:1: ( ruleExpr EOF )\n // InternalWh.g:280:1: ruleExpr EOF\n {\n before(grammarAccess.getExprRule()); \n pushFollow(FOLLOW_1);\n ruleExpr();\n\n state._fsp--;\n\n after(grammarAccess.getExprRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleDefinition() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleDefinition = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:126:2: (iv_ruleDefinition= ruleDefinition EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:127:2: iv_ruleDefinition= ruleDefinition EOF\n {\n currentNode = createCompositeNode(grammarAccess.getDefinitionRule(), currentNode); \n pushFollow(FOLLOW_ruleDefinition_in_entryRuleDefinition166);\n iv_ruleDefinition=ruleDefinition();\n _fsp--;\n\n current =iv_ruleDefinition; \n match(input,EOF,FOLLOW_EOF_in_entryRuleDefinition176); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleExpressionStmt() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1730:1: ( ruleExpressionStmt EOF )\r\n // InternalGo.g:1731:1: ruleExpressionStmt EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionStmtRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpressionStmt();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionStmtRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final Boolean entryRuleDelegateModel() throws RecognitionException {\n Boolean current = false;\n\n Boolean iv_ruleDelegateModel = null;\n\n\n try {\n // PsiInternalExUnorderedGroupsTestLanguage.g:52:55: (iv_ruleDelegateModel= ruleDelegateModel EOF )\n // PsiInternalExUnorderedGroupsTestLanguage.g:53:2: iv_ruleDelegateModel= ruleDelegateModel EOF\n {\n markComposite(elementTypeProvider.getDelegateModelElementType()); \n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleDelegateModel=ruleDelegateModel();\n\n state._fsp--;\n\n current =iv_ruleDelegateModel; \n match(input,EOF,FollowSets000.FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return current;\n }", "public final void entryRuleAstToken() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1155:1: ( ruleAstToken EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1156:1: ruleAstToken EOF\n {\n before(grammarAccess.getAstTokenRule()); \n pushFollow(FOLLOW_ruleAstToken_in_entryRuleAstToken2403);\n ruleAstToken();\n\n state._fsp--;\n\n after(grammarAccess.getAstTokenRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstToken2410); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleAttribute() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleAttribute = null;\n\n\n try {\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:206:2: (iv_ruleAttribute= ruleAttribute EOF )\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:207:2: iv_ruleAttribute= ruleAttribute EOF\n {\n newCompositeNode(grammarAccess.getAttributeRule()); \n pushFollow(FOLLOW_ruleAttribute_in_entryRuleAttribute377);\n iv_ruleAttribute=ruleAttribute();\n\n state._fsp--;\n\n current =iv_ruleAttribute; \n match(input,EOF,FOLLOW_EOF_in_entryRuleAttribute387); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpr() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpr = null;\n\n\n try {\n // InternalMyDsl.g:64:45: (iv_ruleExpr= ruleExpr EOF )\n // InternalMyDsl.g:65:2: iv_ruleExpr= ruleExpr EOF\n {\n newCompositeNode(grammarAccess.getExprRule()); \n pushFollow(FOLLOW_1);\n iv_ruleExpr=ruleExpr();\n\n state._fsp--;\n\n current =iv_ruleExpr; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMappingDsl.g:1797:47: (iv_ruleImport= ruleImport EOF )\n // InternalMappingDsl.g:1798:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleR() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleR = null;\n\n\n try {\n // InternalMLRegression.g:225:41: (iv_ruleR= ruleR EOF )\n // InternalMLRegression.g:226:2: iv_ruleR= ruleR EOF\n {\n newCompositeNode(grammarAccess.getRRule()); \n pushFollow(FOLLOW_1);\n iv_ruleR=ruleR();\n\n state._fsp--;\n\n current =iv_ruleR.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleGoalModel() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGoalModel = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:69:2: (iv_ruleGoalModel= ruleGoalModel EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:70:2: iv_ruleGoalModel= ruleGoalModel EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGoalModelRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGoalModel_in_entryRuleGoalModel75);\r\n iv_ruleGoalModel=ruleGoalModel();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGoalModel; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGoalModel85); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleStatement() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1130:1: ( ruleStatement EOF )\r\n // InternalGo.g:1131:1: ruleStatement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleStatement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleStatement() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleStatement = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2274:2: (iv_ruleStatement= ruleStatement EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2275:2: iv_ruleStatement= ruleStatement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getStatementRule()); \r\n }\r\n pushFollow(FOLLOW_ruleStatement_in_entryRuleStatement5161);\r\n iv_ruleStatement=ruleStatement();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleStatement; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleStatement5171); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleMatch() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleMatch = null;\r\n\r\n\r\n try {\r\n // InternalEsportDsl.g:1626:46: (iv_ruleMatch= ruleMatch EOF )\r\n // InternalEsportDsl.g:1627:2: iv_ruleMatch= ruleMatch EOF\r\n {\r\n newCompositeNode(grammarAccess.getMatchRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleMatch=ruleMatch();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleMatch; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleAstExpression() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1435:1: ( ruleAstExpression EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1436:1: ruleAstExpression EOF\n {\n before(grammarAccess.getAstExpressionRule()); \n pushFollow(FOLLOW_ruleAstExpression_in_entryRuleAstExpression3003);\n ruleAstExpression();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstExpression3010); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:229:1: ( ruleImport EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:230:1: ruleImport EOF\n {\n before(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport421);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getImportRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleEndExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleEndExpression = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6159:2: (iv_ruleEndExpression= ruleEndExpression EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6160:2: iv_ruleEndExpression= ruleEndExpression EOF\n {\n currentNode = createCompositeNode(grammarAccess.getEndExpressionRule(), currentNode); \n pushFollow(FOLLOW_ruleEndExpression_in_entryRuleEndExpression10733);\n iv_ruleEndExpression=ruleEndExpression();\n _fsp--;\n\n current =iv_ruleEndExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleEndExpression10743); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleAction() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:280:1: ( ruleAction EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:281:1: ruleAction EOF\n {\n before(grammarAccess.getActionRule()); \n pushFollow(FOLLOW_ruleAction_in_entryRuleAction480);\n ruleAction();\n\n state._fsp--;\n\n after(grammarAccess.getActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAction487); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final EObject entryRuleStatement() throws RecognitionException {\n EObject current = null;\n int entryRuleStatement_StartIndex = input.index();\n EObject iv_ruleStatement = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 39) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2028:2: (iv_ruleStatement= ruleStatement EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2029:2: iv_ruleStatement= ruleStatement EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getStatementRule()); \n }\n pushFollow(FOLLOW_ruleStatement_in_entryRuleStatement3873);\n iv_ruleStatement=ruleStatement();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleStatement; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleStatement3883); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 39, entryRuleStatement_StartIndex); }\n }\n return current;\n }", "public final void entryRuleTag() throws RecognitionException {\r\n try {\r\n // InternalGo.g:680:1: ( ruleTag EOF )\r\n // InternalGo.g:681:1: ruleTag EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTagRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleTag();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTagRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:287:2: (iv_ruleImport= ruleImport EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:288:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport625);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport635); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleText() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleText = null;\n\n\n try {\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:1916:2: (iv_ruleText= ruleText EOF )\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:1917:2: iv_ruleText= ruleText EOF\n {\n newCompositeNode(grammarAccess.getTextRule()); \n pushFollow(FOLLOW_ruleText_in_entryRuleText3810);\n iv_ruleText=ruleText();\n\n state._fsp--;\n\n current =iv_ruleText; \n match(input,EOF,FOLLOW_EOF_in_entryRuleText3820); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleModelElement() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModelElement = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:177:2: (iv_ruleModelElement= ruleModelElement EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:178:2: iv_ruleModelElement= ruleModelElement EOF\n {\n newCompositeNode(grammarAccess.getModelElementRule()); \n pushFollow(FOLLOW_ruleModelElement_in_entryRuleModelElement317);\n iv_ruleModelElement=ruleModelElement();\n\n state._fsp--;\n\n current =iv_ruleModelElement; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModelElement327); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleLabel() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2305:1: ( ruleLabel EOF )\r\n // InternalGo.g:2306:1: ruleLabel EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLabelRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleLabel();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLabelRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMyDsl.g:127:47: (iv_ruleImport= ruleImport EOF )\n // InternalMyDsl.g:128:2: iv_ruleImport= ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleImport; \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleAttribute() throws RecognitionException {\n try {\n // InternalBSQL2Java.g:129:1: ( ruleAttribute EOF )\n // InternalBSQL2Java.g:130:1: ruleAttribute EOF\n {\n before(grammarAccess.getAttributeRule()); \n pushFollow(FOLLOW_1);\n ruleAttribute();\n\n state._fsp--;\n\n after(grammarAccess.getAttributeRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleLanguage() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:92:2: ( ( ( rule__Language__Group__0 ) ) )\n // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) )\n {\n // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) )\n // InternalCsv.g:94:3: ( rule__Language__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getGroup()); \n }\n // InternalCsv.g:95:3: ( rule__Language__Group__0 )\n // InternalCsv.g:95:4: rule__Language__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "static public Rule parse(OrchestraSystem catalog, String rule, \r\n\t\t\tMap<String,RelationContext> locals) throws ParseException, RelationNotFoundException {\r\n\t\tHolder<Integer> counter = new Holder<Integer>(0);\r\n\t\tPositionedString str = new PositionedString(rule);\r\n\t\tstr.skipWhitespace();\r\n\t\tUntypedAtom h = UntypedAtom.parse(str, counter);\r\n\t\tboolean negateHead = false;\r\n\t\tif (h.getName().startsWith(\"NOT_\")) {\r\n\t\t\th.setName(h.getName().substring(4));\r\n\t\t\tnegateHead = true;\r\n\t\t}\r\n\r\n\t\tstr.skipWhitespace();\r\n\t\tif (!str.skipString(\":-\")) {\r\n\t\t\tcomplain(str, \"':-'\");\r\n\t\t}\r\n\t\tstr.skipWhitespace();\r\n\t\tArrayList<Atom> body = new ArrayList<Atom>();\r\n\t\tboolean first = true;\r\n\t\tstr.skipWhitespace();\r\n\t\twhile (str.inRange()) {\r\n\t\t\tif (first) {\r\n\t\t\t\tfirst = false;\r\n\t\t\t} else {\r\n\t\t\t\tif (!str.skipString(\",\")) {\r\n\t\t\t\t\tcomplain(str, \"','\");\r\n\t\t\t\t}\r\n\t\t\t\tstr.skipWhitespace();\r\n\t\t\t}\r\n\t\t\tUntypedAtom b = UntypedAtom.parse(str, counter);\r\n\t\t\tboolean isNegated = false;\r\n\t\t\tif (b.getName().startsWith(\"NOT_\")) {\r\n\t\t\t\tisNegated = true;\r\n\t\t\t\tb.setName(b.getName().substring(4));\r\n\t\t\t}\r\n\t\t\tAtom n = b.getTyped(catalog, locals);\r\n\t\t\tn.setNeg(isNegated);\r\n\t\t\tbody.add(n);\r\n\t\t\tstr.skipWhitespace();\r\n\t\t}\r\n\t\tAtom th;\r\n\t\ttry {\r\n\t\t\tth = h.getTyped(catalog, locals);\r\n\t\t} catch (ParseException e) {\r\n\t\t\tth = h.getTyped(body);\r\n\t\t\t// Add this as a local view definition\r\n\t\t\tif (!locals.containsKey(th.getRelationContext().toString()))\r\n\t\t\t\tlocals.put(th.getRelationContext().toString(), th.getRelationContext());\r\n\t\t} catch (RelationNotFoundException e) {\r\n\t\t\tth = h.getTyped(body);\r\n\t\t\t// Add this as a local view definition\r\n\t\t\tif (!locals.containsKey(th.getRelationContext().toString()))\r\n\t\t\t\tlocals.put(th.getRelationContext().toString(), th.getRelationContext());\r\n\t\t}\r\n\t\tth.setNeg(negateHead);\r\n\r\n\t\treturn new Rule(th, body, null, catalog.getMappingDb().getBuiltInSchemas());\r\n\t}", "public final void entryRuleConversion() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2505:1: ( ruleConversion EOF )\r\n // InternalGo.g:2506:1: ruleConversion EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConversionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleConversion();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConversionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleFunction() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleFunction = null;\n\n\n try {\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:420:2: (iv_ruleFunction= ruleFunction EOF )\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:421:2: iv_ruleFunction= ruleFunction EOF\n {\n newCompositeNode(grammarAccess.getFunctionRule()); \n pushFollow(FOLLOW_ruleFunction_in_entryRuleFunction773);\n iv_ruleFunction=ruleFunction();\n\n state._fsp--;\n\n current =iv_ruleFunction; \n match(input,EOF,FOLLOW_EOF_in_entryRuleFunction783); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleElement() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:90:1: ( ruleElement EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:91:1: ruleElement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementRule()); \r\n }\r\n pushFollow(FOLLOW_ruleElement_in_entryRuleElement127);\r\n ruleElement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleElement134); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleExpression_6() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_6_StartIndex = input.index();\n EObject iv_ruleExpression_6 = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 93) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4087:2: (iv_ruleExpression_6= ruleExpression_6 EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4088:2: iv_ruleExpression_6= ruleExpression_6 EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpression_6Rule()); \n }\n pushFollow(FOLLOW_ruleExpression_6_in_entryRuleExpression_68143);\n iv_ruleExpression_6=ruleExpression_6();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression_6; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression_68153); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 93, entryRuleExpression_6_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleModule() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleModule = null;\n\n\n try {\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:68:2: (iv_ruleModule= ruleModule EOF )\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:69:2: iv_ruleModule= ruleModule EOF\n {\n newCompositeNode(grammarAccess.getModuleRule()); \n pushFollow(FOLLOW_ruleModule_in_entryRuleModule75);\n iv_ruleModule=ruleModule();\n\n state._fsp--;\n\n current =iv_ruleModule; \n match(input,EOF,FOLLOW_EOF_in_entryRuleModule85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleRuleDeclaration() throws RecognitionException {\n EObject current = null;\n int entryRuleRuleDeclaration_StartIndex = input.index();\n EObject iv_ruleRuleDeclaration = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 9) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:501:2: (iv_ruleRuleDeclaration= ruleRuleDeclaration EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:502:2: iv_ruleRuleDeclaration= ruleRuleDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getRuleDeclarationRule()); \n }\n pushFollow(FOLLOW_ruleRuleDeclaration_in_entryRuleRuleDeclaration908);\n iv_ruleRuleDeclaration=ruleRuleDeclaration();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleRuleDeclaration; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleRuleDeclaration918); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 9, entryRuleRuleDeclaration_StartIndex); }\n }\n return current;\n }", "public final void entryRuleResult() throws RecognitionException {\r\n try {\r\n // InternalGo.g:805:1: ( ruleResult EOF )\r\n // InternalGo.g:806:1: ruleResult EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getResultRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleResult();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getResultRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleLink() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:230:1: ( ruleLink EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:231:1: ruleLink EOF\n {\n before(grammarAccess.getLinkRule()); \n pushFollow(FollowSets000.FOLLOW_ruleLink_in_entryRuleLink421);\n ruleLink();\n _fsp--;\n\n after(grammarAccess.getLinkRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleLink428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleStatement() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:155:1: ( ruleStatement EOF )\r\n // InternalDroneScript.g:156:1: ruleStatement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleStatement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject ruleEntryEvent() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2125:28: ( ( () otherlv_1= 'entry' ) )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:1: ( () otherlv_1= 'entry' )\r\n {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:1: ( () otherlv_1= 'entry' )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:2: () otherlv_1= 'entry'\r\n {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:2: ()\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2127:5: \r\n {\r\n if ( state.backtracking==0 ) {\r\n\r\n current = forceCreateModelElement(\r\n grammarAccess.getEntryEventAccess().getEntryEventAction_0(),\r\n current);\r\n \r\n }\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,39,FOLLOW_39_in_ruleEntryEvent4737); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getEntryEventAccess().getEntryKeyword_1());\r\n \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleExpressionStatement() throws RecognitionException {\n EObject current = null;\n int entryRuleExpressionStatement_StartIndex = input.index();\n EObject iv_ruleExpressionStatement = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 51) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2457:2: (iv_ruleExpressionStatement= ruleExpressionStatement EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2458:2: iv_ruleExpressionStatement= ruleExpressionStatement EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpressionStatementRule()); \n }\n pushFollow(FOLLOW_ruleExpressionStatement_in_entryRuleExpressionStatement4848);\n iv_ruleExpressionStatement=ruleExpressionStatement();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpressionStatement; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpressionStatement4858); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 51, entryRuleExpressionStatement_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n int entryRuleType_StartIndex = input.index();\n EObject iv_ruleType = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 27) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:1701:2: (iv_ruleType= ruleType EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:1702:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FOLLOW_ruleType_in_entryRuleType3109);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleType3119); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 27, entryRuleType_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleTuple() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleTuple = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3960:2: (iv_ruleTuple= ruleTuple EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3961:2: iv_ruleTuple= ruleTuple EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getTupleRule()); \r\n }\r\n pushFollow(FOLLOW_ruleTuple_in_entryRuleTuple8435);\r\n iv_ruleTuple=ruleTuple();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleTuple; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleTuple8445); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleExpressionList() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2330:1: ( ruleExpressionList EOF )\r\n // InternalGo.g:2331:1: ruleExpressionList EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionListRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpressionList();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionListRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleMatchOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleMatchOperator = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:964:2: (iv_ruleMatchOperator= ruleMatchOperator EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:965:2: iv_ruleMatchOperator= ruleMatchOperator EOF\n {\n newCompositeNode(grammarAccess.getMatchOperatorRule()); \n pushFollow(FOLLOW_ruleMatchOperator_in_entryRuleMatchOperator2103);\n iv_ruleMatchOperator=ruleMatchOperator();\n\n state._fsp--;\n\n current =iv_ruleMatchOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleMatchOperator2113); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRulePhrase() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_rulePhrase = null;\r\n\r\n\r\n try {\r\n // InternalAbjad.g:377:47: (iv_rulePhrase= rulePhrase EOF )\r\n // InternalAbjad.g:378:2: iv_rulePhrase= rulePhrase EOF\r\n {\r\n newCompositeNode(grammarAccess.getPhraseRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_rulePhrase=rulePhrase();\r\n\r\n state._fsp--;\r\n\r\n current =iv_rulePhrase; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleArg() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArg = null;\n\n\n try {\n // InternalSafetyParser.g:5865:44: (iv_ruleArg= ruleArg EOF )\n // InternalSafetyParser.g:5866:2: iv_ruleArg= ruleArg EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getArgRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleArg=ruleArg();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleArg; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleFinModelFile() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:62:1: ( ruleFinModelFile EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:63:1: ruleFinModelFile EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileRule()); \r\n }\r\n pushFollow(FOLLOW_ruleFinModelFile_in_entryRuleFinModelFile67);\r\n ruleFinModelFile();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleFinModelFile74); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleInputEntry() throws RecognitionException {\r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:89:1: ( ruleInputEntry EOF )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:90:1: ruleInputEntry EOF\r\n {\r\n before(grammarAccess.getInputEntryRule()); \r\n pushFollow(FOLLOW_ruleInputEntry_in_entryRuleInputEntry121);\r\n ruleInputEntry();\r\n\r\n state._fsp--;\r\n\r\n after(grammarAccess.getInputEntryRule()); \r\n match(input,EOF,FOLLOW_EOF_in_entryRuleInputEntry128); \r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleLiteralExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleLiteralExpression = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:1537:2: (iv_ruleLiteralExpression= ruleLiteralExpression EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:1538:2: iv_ruleLiteralExpression= ruleLiteralExpression EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getLiteralExpressionRule()); \n }\n pushFollow(FOLLOW_ruleLiteralExpression_in_entryRuleLiteralExpression3614);\n iv_ruleLiteralExpression=ruleLiteralExpression();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleLiteralExpression; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleLiteralExpression3624); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__Model__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) )\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n {\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )*\n loop11:\n do {\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n alt11=1;\n }\n\n\n switch (alt11) {\n \tcase 1 :\n \t // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__Model__LanguagesAssignment_6();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop11;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleEvaluationType() throws RecognitionException {\n try {\n // InternalMLRegression.g:279:1: ( ruleEvaluationType EOF )\n // InternalMLRegression.g:280:1: ruleEvaluationType EOF\n {\n before(grammarAccess.getEvaluationTypeRule()); \n pushFollow(FOLLOW_1);\n ruleEvaluationType();\n\n state._fsp--;\n\n after(grammarAccess.getEvaluationTypeRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleIndex() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2580:1: ( ruleIndex EOF )\r\n // InternalGo.g:2581:1: ruleIndex EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIndexRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleIndex();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIndexRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleElement() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2905:1: ( ruleElement EOF )\r\n // InternalGo.g:2906:1: ruleElement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleElement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleAnnotation() throws RecognitionException {\n EObject current = null;\n int entryRuleAnnotation_StartIndex = input.index();\n EObject iv_ruleAnnotation = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 145) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:6080:2: (iv_ruleAnnotation= ruleAnnotation EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:6081:2: iv_ruleAnnotation= ruleAnnotation EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getAnnotationRule()); \n }\n pushFollow(FOLLOW_ruleAnnotation_in_entryRuleAnnotation12439);\n iv_ruleAnnotation=ruleAnnotation();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleAnnotation; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleAnnotation12449); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 145, entryRuleAnnotation_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleFeature() throws RecognitionException {\n EObject current = null;\n int entryRuleFeature_StartIndex = input.index();\n EObject iv_ruleFeature = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 123) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:5049:2: (iv_ruleFeature= ruleFeature EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:5050:2: iv_ruleFeature= ruleFeature EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getFeatureRule()); \n }\n pushFollow(FOLLOW_ruleFeature_in_entryRuleFeature10334);\n iv_ruleFeature=ruleFeature();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleFeature; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleFeature10344); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 123, entryRuleFeature_StartIndex); }\n }\n return current;\n }", "public final void entryRuleInput() throws RecognitionException {\r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:61:1: ( ruleInput EOF )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:62:1: ruleInput EOF\r\n {\r\n before(grammarAccess.getInputRule()); \r\n pushFollow(FOLLOW_ruleInput_in_entryRuleInput61);\r\n ruleInput();\r\n\r\n state._fsp--;\r\n\r\n after(grammarAccess.getInputRule()); \r\n match(input,EOF,FOLLOW_EOF_in_entryRuleInput68); \r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleAntecedentRule() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleAntecedentRule = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2590:2: (iv_ruleAntecedentRule= ruleAntecedentRule EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2591:2: iv_ruleAntecedentRule= ruleAntecedentRule EOF\n {\n newCompositeNode(grammarAccess.getAntecedentRuleRule()); \n pushFollow(FOLLOW_ruleAntecedentRule_in_entryRuleAntecedentRule5808);\n iv_ruleAntecedentRule=ruleAntecedentRule();\n\n state._fsp--;\n\n current =iv_ruleAntecedentRule; \n match(input,EOF,FOLLOW_EOF_in_entryRuleAntecedentRule5818); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleRecordDefinition() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRecordDefinition = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:461:2: (iv_ruleRecordDefinition= ruleRecordDefinition EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:462:2: iv_ruleRecordDefinition= ruleRecordDefinition EOF\n {\n currentNode = createCompositeNode(grammarAccess.getRecordDefinitionRule(), currentNode); \n pushFollow(FOLLOW_ruleRecordDefinition_in_entryRuleRecordDefinition847);\n iv_ruleRecordDefinition=ruleRecordDefinition();\n _fsp--;\n\n current =iv_ruleRecordDefinition; \n match(input,EOF,FOLLOW_EOF_in_entryRuleRecordDefinition857); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleProcessExpression() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1648:1: ( ruleProcessExpression EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1649:1: ruleProcessExpression EOF\n {\n before(grammarAccess.getProcessExpressionRule()); \n pushFollow(FOLLOW_ruleProcessExpression_in_entryRuleProcessExpression3097);\n ruleProcessExpression();\n\n state._fsp--;\n\n after(grammarAccess.getProcessExpressionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleProcessExpression3104); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleR() throws RecognitionException {\n try {\n // InternalMLRegression.g:129:1: ( ruleR EOF )\n // InternalMLRegression.g:130:1: ruleR EOF\n {\n before(grammarAccess.getRRule()); \n pushFollow(FOLLOW_1);\n ruleR();\n\n state._fsp--;\n\n after(grammarAccess.getRRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleEntity() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleEntity = null;\n\n\n try {\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:137:2: (iv_ruleEntity= ruleEntity EOF )\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:138:2: iv_ruleEntity= ruleEntity EOF\n {\n newCompositeNode(grammarAccess.getEntityRule()); \n pushFollow(FOLLOW_ruleEntity_in_entryRuleEntity226);\n iv_ruleEntity=ruleEntity();\n\n state._fsp--;\n\n current =iv_ruleEntity; \n match(input,EOF,FOLLOW_EOF_in_entryRuleEntity236); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleInputStatement() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleInputStatement = null;\n\n\n try {\n // InternalSafetyParser.g:4744:55: (iv_ruleInputStatement= ruleInputStatement EOF )\n // InternalSafetyParser.g:4745:2: iv_ruleInputStatement= ruleInputStatement EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getInputStatementRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleInputStatement=ruleInputStatement();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleInputStatement; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRulePredicateExpression() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:352:1: ( rulePredicateExpression EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:353:1: rulePredicateExpression EOF\n {\n before(grammarAccess.getPredicateExpressionRule()); \n pushFollow(FOLLOW_rulePredicateExpression_in_entryRulePredicateExpression618);\n rulePredicateExpression();\n\n state._fsp--;\n\n after(grammarAccess.getPredicateExpressionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRulePredicateExpression625); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final EObject entryRuleRelationalExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRelationalExpression = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:544:2: (iv_ruleRelationalExpression= ruleRelationalExpression EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:545:2: iv_ruleRelationalExpression= ruleRelationalExpression EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getRelationalExpressionRule()); \n }\n pushFollow(FOLLOW_ruleRelationalExpression_in_entryRuleRelationalExpression1223);\n iv_ruleRelationalExpression=ruleRelationalExpression();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleRelationalExpression; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleRelationalExpression1233); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }" ]
[ "0.63563323", "0.6277501", "0.61135703", "0.6021221", "0.59496653", "0.592764", "0.5843553", "0.57172334", "0.5665474", "0.56487834", "0.5604184", "0.5594147", "0.55785", "0.5571763", "0.55440575", "0.5536275", "0.5529367", "0.54818434", "0.5479247", "0.5466702", "0.5450296", "0.542607", "0.5410579", "0.5396255", "0.5392453", "0.5351941", "0.53381145", "0.5336465", "0.5314117", "0.5310882", "0.53039336", "0.52931565", "0.52734035", "0.524445", "0.5206566", "0.52056456", "0.5189574", "0.5179233", "0.51753414", "0.51726836", "0.515981", "0.51533836", "0.515053", "0.5149549", "0.51341337", "0.5133608", "0.5132244", "0.5130395", "0.5128831", "0.5123534", "0.51235104", "0.51041836", "0.5076503", "0.5053742", "0.5052697", "0.5046752", "0.5024384", "0.50199884", "0.5012083", "0.5008239", "0.49991664", "0.4998916", "0.49848518", "0.49734277", "0.4960054", "0.49554688", "0.49552348", "0.4952303", "0.4945467", "0.49441198", "0.49381232", "0.493551", "0.49327657", "0.4932179", "0.49317014", "0.49292338", "0.49228337", "0.49187782", "0.4909582", "0.49044916", "0.48985964", "0.48904014", "0.488574", "0.48853883", "0.4883603", "0.48778576", "0.48745006", "0.48731554", "0.4862936", "0.4854462", "0.48526382", "0.48519525", "0.4847849", "0.48442245", "0.48433557", "0.48417604", "0.4840546", "0.48400775", "0.48344252", "0.4834233" ]
0.6828146
0
$ANTLR end "entryRuleLanguage" $ANTLR start "ruleLanguage" InternalCsv.g:88:1: ruleLanguage : ( ( rule__Language__Group__0 ) ) ;
public final void ruleLanguage() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:92:2: ( ( ( rule__Language__Group__0 ) ) ) // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) ) { // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) ) // InternalCsv.g:94:3: ( rule__Language__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getLanguageAccess().getGroup()); } // InternalCsv.g:95:3: ( rule__Language__Group__0 ) // InternalCsv.g:95:4: rule__Language__Group__0 { pushFollow(FOLLOW_2); rule__Language__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getLanguageAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleLanguage() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:185:2: ( ( ( rule__Language__Group__0 ) ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:186:1: ( ( rule__Language__Group__0 ) )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:186:1: ( ( rule__Language__Group__0 ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:187:1: ( rule__Language__Group__0 )\n {\n before(grammarAccess.getLanguageAccess().getGroup()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:188:1: ( rule__Language__Group__0 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:188:2: rule__Language__Group__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0_in_ruleLanguage334);\n rule__Language__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // InternalCsv.g:80:1: ( ruleLanguage EOF )\n // InternalCsv.g:81:1: ruleLanguage EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageRule()); \n }\n pushFollow(FOLLOW_1);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleLanguageTarget() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:91:2: ( ( ( rule__LanguageTarget__Group__0 ) ) )\n // InternalMLRegression.g:92:2: ( ( rule__LanguageTarget__Group__0 ) )\n {\n // InternalMLRegression.g:92:2: ( ( rule__LanguageTarget__Group__0 ) )\n // InternalMLRegression.g:93:3: ( rule__LanguageTarget__Group__0 )\n {\n before(grammarAccess.getLanguageTargetAccess().getGroup()); \n // InternalMLRegression.g:94:3: ( rule__LanguageTarget__Group__0 )\n // InternalMLRegression.g:94:4: rule__LanguageTarget__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageTargetAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1141:1: ( rule__Language__Group__1__Impl rule__Language__Group__2 )\n // InternalCsv.g:1142:2: rule__Language__Group__1__Impl rule__Language__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Language__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:173:1: ( ruleLanguage EOF )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:174:1: ruleLanguage EOF\n {\n before(grammarAccess.getLanguageRule()); \n pushFollow(FollowSets000.FOLLOW_ruleLanguage_in_entryRuleLanguage301);\n ruleLanguage();\n\n state._fsp--;\n\n after(grammarAccess.getLanguageRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleLanguage308); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1413:1: ( ( 'Language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1414:1: ( 'Language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1414:1: ( 'Language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1415:1: 'Language'\n {\n before(grammarAccess.getLanguageAccess().getLanguageKeyword_1()); \n match(input,24,FollowSets000.FOLLOW_24_in_rule__Language__Group__1__Impl2760); \n after(grammarAccess.getLanguageAccess().getLanguageKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__LanguagesAssignment_6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3667:1: ( ( ruleLanguage ) )\n // InternalCsv.g:3668:2: ( ruleLanguage )\n {\n // InternalCsv.g:3668:2: ( ruleLanguage )\n // InternalCsv.g:3669:3: ruleLanguage\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesLanguageParserRuleCall_6_0()); \n }\n pushFollow(FOLLOW_2);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesLanguageParserRuleCall_6_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1638:1: ( ( 'language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1640:1: 'language'\n {\n before(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n match(input,15,FollowSets000.FOLLOW_15_in_rule__Language__Group_4__0__Impl3200); \n after(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1370:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1371:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0__Impl_in_rule__Language__Group__02668);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1_in_rule__Language__Group__02671);\n rule__Language__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:937:1: ( ( 'target_language' ) )\n // InternalMLRegression.g:938:1: ( 'target_language' )\n {\n // InternalMLRegression.g:938:1: ( 'target_language' )\n // InternalMLRegression.g:939:2: 'target_language'\n {\n before(grammarAccess.getLanguageTargetAccess().getTarget_languageKeyword_0()); \n match(input,22,FOLLOW_2); \n after(grammarAccess.getLanguageTargetAccess().getTarget_languageKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:925:1: ( rule__LanguageTarget__Group__0__Impl rule__LanguageTarget__Group__1 )\n // InternalMLRegression.g:926:2: rule__LanguageTarget__Group__0__Impl rule__LanguageTarget__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__LanguageTarget__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) )\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n {\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )*\n loop11:\n do {\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n alt11=1;\n }\n\n\n switch (alt11) {\n \tcase 1 :\n \t // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__Model__LanguagesAssignment_6();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop11;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1153:1: ( ( '(' ) )\n // InternalCsv.g:1154:1: ( '(' )\n {\n // InternalCsv.g:1154:1: ( '(' )\n // InternalCsv.g:1155:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RootElementType__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:506:1: ( ( 'language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:507:1: ( 'language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:507:1: ( 'language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:508:1: 'language'\n {\n before(grammarAccess.getRootElementTypeAccess().getLanguageKeyword_6()); \n match(input,15,FollowSets000.FOLLOW_15_in_rule__RootElementType__Group__6__Impl994); \n after(grammarAccess.getRootElementTypeAccess().getLanguageKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleLanguage0() throws RecognitionException {\n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:257:1: ( ruleLanguage0 EOF )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:258:1: ruleLanguage0 EOF\n {\n before(grammarAccess.getLanguage0Rule()); \n pushFollow(FollowSets000.FOLLOW_ruleLanguage0_in_entryRuleLanguage0480);\n ruleLanguage0();\n\n state._fsp--;\n\n after(grammarAccess.getLanguage0Rule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleLanguage0487); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1463:1: ( rule__Language__Group__3__Impl rule__Language__Group__4 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1464:2: rule__Language__Group__3__Impl rule__Language__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__3__Impl_in_rule__Language__Group__32853);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4_in_rule__Language__Group__32856);\n rule__Language__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1563:1: ( rule__Language__Group_3__0__Impl rule__Language__Group_3__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1564:2: rule__Language__Group_3__0__Impl rule__Language__Group_3__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0__Impl_in_rule__Language__Group_3__03046);\n rule__Language__Group_3__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1_in_rule__Language__Group_3__03049);\n rule__Language__Group_3__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:952:1: ( rule__LanguageTarget__Group__1__Impl rule__LanguageTarget__Group__2 )\n // InternalMLRegression.g:953:2: rule__LanguageTarget__Group__1__Impl rule__LanguageTarget__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__LanguageTarget__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1206:1: ( ( ')' ) )\n // InternalCsv.g:1207:1: ( ')' )\n {\n // InternalCsv.g:1207:1: ( ')' )\n // InternalCsv.g:1208:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1382:1: ( ( () ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1383:1: ( () )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1383:1: ( () )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1384:1: ()\n {\n before(grammarAccess.getLanguageAccess().getLanguageAction_0()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1385:1: ()\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1387:1: \n {\n }\n\n after(grammarAccess.getLanguageAccess().getLanguageAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleLanguageTarget() throws RecognitionException {\n try {\n // InternalMLRegression.g:79:1: ( ruleLanguageTarget EOF )\n // InternalMLRegression.g:80:1: ruleLanguageTarget EOF\n {\n before(grammarAccess.getLanguageTargetRule()); \n pushFollow(FOLLOW_1);\n ruleLanguageTarget();\n\n state._fsp--;\n\n after(grammarAccess.getLanguageTargetRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1432:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1433:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__2__Impl_in_rule__Language__Group__22791);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__3_in_rule__Language__Group__22794);\n rule__Language__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1401:1: ( rule__Language__Group__1__Impl rule__Language__Group__2 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1402:2: rule__Language__Group__1__Impl rule__Language__Group__2\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1__Impl_in_rule__Language__Group__12729);\n rule__Language__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__2_in_rule__Language__Group__12732);\n rule__Language__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:979:1: ( rule__LanguageTarget__Group__2__Impl rule__LanguageTarget__Group__3 )\n // InternalMLRegression.g:980:2: rule__LanguageTarget__Group__2__Impl rule__LanguageTarget__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__LanguageTarget__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1475:1: ( ( ( rule__Language__Group_3__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1477:1: ( rule__Language__Group_3__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_3()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:1: ( rule__Language__Group_3__0 )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==25) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:2: rule__Language__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0_in_rule__Language__Group__3__Impl2883);\n rule__Language__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleLanguageTarget() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleLanguageTarget = null;\n\n\n try {\n // InternalMLRegression.g:121:55: (iv_ruleLanguageTarget= ruleLanguageTarget EOF )\n // InternalMLRegression.g:122:2: iv_ruleLanguageTarget= ruleLanguageTarget EOF\n {\n newCompositeNode(grammarAccess.getLanguageTargetRule()); \n pushFollow(FOLLOW_1);\n iv_ruleLanguageTarget=ruleLanguageTarget();\n\n state._fsp--;\n\n current =iv_ruleLanguageTarget; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__LanguageTarget__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:991:1: ( ( ( rule__LanguageTarget__LanguageAssignment_2 ) ) )\n // InternalMLRegression.g:992:1: ( ( rule__LanguageTarget__LanguageAssignment_2 ) )\n {\n // InternalMLRegression.g:992:1: ( ( rule__LanguageTarget__LanguageAssignment_2 ) )\n // InternalMLRegression.g:993:2: ( rule__LanguageTarget__LanguageAssignment_2 )\n {\n before(grammarAccess.getLanguageTargetAccess().getLanguageAssignment_2()); \n // InternalMLRegression.g:994:2: ( rule__LanguageTarget__LanguageAssignment_2 )\n // InternalMLRegression.g:994:3: rule__LanguageTarget__LanguageAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__LanguageAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageTargetAccess().getLanguageAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:991:1: ( ( 'languages' ) )\n // InternalCsv.g:992:1: ( 'languages' )\n {\n // InternalCsv.g:992:1: ( 'languages' )\n // InternalCsv.g:993:2: 'languages'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n match(input,15,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1626:1: ( rule__Language__Group_4__0__Impl rule__Language__Group_4__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1627:2: rule__Language__Group_4__0__Impl rule__Language__Group_4__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0__Impl_in_rule__Language__Group_4__03169);\n rule__Language__Group_4__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1_in_rule__Language__Group_4__03172);\n rule__Language__Group_4__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1126:1: ( ( ( rule__Language__NameAssignment_0 ) ) )\n // InternalCsv.g:1127:1: ( ( rule__Language__NameAssignment_0 ) )\n {\n // InternalCsv.g:1127:1: ( ( rule__Language__NameAssignment_0 ) )\n // InternalCsv.g:1128:2: ( rule__Language__NameAssignment_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getNameAssignment_0()); \n }\n // InternalCsv.g:1129:2: ( rule__Language__NameAssignment_0 )\n // InternalCsv.g:1129:3: rule__Language__NameAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__Language__NameAssignment_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getNameAssignment_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1006:1: ( rule__LanguageTarget__Group__3__Impl )\n // InternalMLRegression.g:1007:2: rule__LanguageTarget__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1492:1: ( rule__Language__Group__4__Impl rule__Language__Group__5 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1493:2: rule__Language__Group__4__Impl rule__Language__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4__Impl_in_rule__Language__Group__42914);\n rule__Language__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__5_in_rule__Language__Group__42917);\n rule__Language__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1017:1: ( ( ';' ) )\n // InternalMLRegression.g:1018:1: ( ';' )\n {\n // InternalMLRegression.g:1018:1: ( ';' )\n // InternalMLRegression.g:1019:2: ';'\n {\n before(grammarAccess.getLanguageTargetAccess().getSemicolonKeyword_3()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getLanguageTargetAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleGroup() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGroup = null;\r\n\r\n\r\n try {\r\n // InternalEsportDsl.g:1730:46: (iv_ruleGroup= ruleGroup EOF )\r\n // InternalEsportDsl.g:1731:2: iv_ruleGroup= ruleGroup EOF\r\n {\r\n newCompositeNode(grammarAccess.getGroupRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleGroup=ruleGroup();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleGroup; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__Language__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1180:1: ( ( ( rule__Language__TargetAssignment_2 ) ) )\n // InternalCsv.g:1181:1: ( ( rule__Language__TargetAssignment_2 ) )\n {\n // InternalCsv.g:1181:1: ( ( rule__Language__TargetAssignment_2 ) )\n // InternalCsv.g:1182:2: ( rule__Language__TargetAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getTargetAssignment_2()); \n }\n // InternalCsv.g:1183:2: ( rule__Language__TargetAssignment_2 )\n // InternalCsv.g:1183:3: rule__Language__TargetAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Language__TargetAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getTargetAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:964:1: ( ( ':' ) )\n // InternalMLRegression.g:965:1: ( ':' )\n {\n // InternalMLRegression.g:965:1: ( ':' )\n // InternalMLRegression.g:966:2: ':'\n {\n before(grammarAccess.getLanguageTargetAccess().getColonKeyword_1()); \n match(input,23,FOLLOW_2); \n after(grammarAccess.getLanguageTargetAccess().getColonKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleExpression() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2367:2: ( ( ( rule__Expression__Group__0 ) ) )\r\n // InternalGo.g:2368:2: ( ( rule__Expression__Group__0 ) )\r\n {\r\n // InternalGo.g:2368:2: ( ( rule__Expression__Group__0 ) )\r\n // InternalGo.g:2369:3: ( rule__Expression__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionAccess().getGroup()); \r\n }\r\n // InternalGo.g:2370:3: ( rule__Expression__Group__0 )\r\n // InternalGo.g:2370:4: rule__Expression__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Expression__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Language__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1575:1: ( ( 'value' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1576:1: ( 'value' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1576:1: ( 'value' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1577:1: 'value'\n {\n before(grammarAccess.getLanguageAccess().getValueKeyword_3_0()); \n match(input,25,FollowSets000.FOLLOW_25_in_rule__Language__Group_3__0__Impl3077); \n after(grammarAccess.getLanguageAccess().getValueKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1594:1: ( rule__Language__Group_3__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1595:2: rule__Language__Group_3__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1__Impl_in_rule__Language__Group_3__13108);\n rule__Language__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__LanguageAssignment_4_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1964:1: ( ( ruleLanguage0 ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1965:1: ( ruleLanguage0 )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1965:1: ( ruleLanguage0 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1966:1: ruleLanguage0\n {\n before(grammarAccess.getLanguageAccess().getLanguageLanguage0ParserRuleCall_4_1_0()); \n pushFollow(FollowSets000.FOLLOW_ruleLanguage0_in_rule__Language__LanguageAssignment_4_13852);\n ruleLanguage0();\n\n state._fsp--;\n\n after(grammarAccess.getLanguageAccess().getLanguageLanguage0ParserRuleCall_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:883:1: ( ( ( rule__Model__LanguageTargetAssignment_0 )? ) )\n // InternalMLRegression.g:884:1: ( ( rule__Model__LanguageTargetAssignment_0 )? )\n {\n // InternalMLRegression.g:884:1: ( ( rule__Model__LanguageTargetAssignment_0 )? )\n // InternalMLRegression.g:885:2: ( rule__Model__LanguageTargetAssignment_0 )?\n {\n before(grammarAccess.getModelAccess().getLanguageTargetAssignment_0()); \n // InternalMLRegression.g:886:2: ( rule__Model__LanguageTargetAssignment_0 )?\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==22) ) {\n alt8=1;\n }\n switch (alt8) {\n case 1 :\n // InternalMLRegression.g:886:3: rule__Model__LanguageTargetAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__Model__LanguageTargetAssignment_0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getModelAccess().getLanguageTargetAssignment_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1504:1: ( ( ( rule__Language__Group_4__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1506:1: ( rule__Language__Group_4__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_4()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:1: ( rule__Language__Group_4__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==15) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:2: rule__Language__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0_in_rule__Language__Group__4__Impl2944);\n rule__Language__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1521:1: ( rule__Language__Group__5__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1522:2: rule__Language__Group__5__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__5__Impl_in_rule__Language__Group__52975);\n rule__Language__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleColumn() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:185:2: ( ( ( rule__Column__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:186:1: ( ( rule__Column__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:186:1: ( ( rule__Column__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:187:1: ( rule__Column__Group__0 )\n {\n before(grammarAccess.getColumnAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:188:1: ( rule__Column__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:188:2: rule__Column__Group__0\n {\n pushFollow(FOLLOW_rule__Column__Group__0_in_ruleColumn334);\n rule__Column__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getColumnAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RootElementType__LanguageAssignment_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1814:1: ( ( ruleLanguage ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1815:1: ( ruleLanguage )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1815:1: ( ruleLanguage )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1816:1: ruleLanguage\n {\n before(grammarAccess.getRootElementTypeAccess().getLanguageLanguageParserRuleCall_7_0()); \n pushFollow(FollowSets000.FOLLOW_ruleLanguage_in_rule__RootElementType__LanguageAssignment_73542);\n ruleLanguage();\n\n state._fsp--;\n\n after(grammarAccess.getRootElementTypeAccess().getLanguageLanguageParserRuleCall_7_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1657:1: ( rule__Language__Group_4__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1658:2: rule__Language__Group_4__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1__Impl_in_rule__Language__Group_4__13231);\n rule__Language__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleProgram() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:91:2: ( ( ( rule__Program__Group__0 ) ) )\n // InternalWh.g:92:2: ( ( rule__Program__Group__0 ) )\n {\n // InternalWh.g:92:2: ( ( rule__Program__Group__0 ) )\n // InternalWh.g:93:3: ( rule__Program__Group__0 )\n {\n before(grammarAccess.getProgramAccess().getGroup()); \n // InternalWh.g:94:3: ( rule__Program__Group__0 )\n // InternalWh.g:94:4: rule__Program__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Program__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getProgramAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleProgram() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:91:2: ( ( ( rule__Program__Group__0 ) ) )\n // InternalWh.g:92:2: ( ( rule__Program__Group__0 ) )\n {\n // InternalWh.g:92:2: ( ( rule__Program__Group__0 ) )\n // InternalWh.g:93:3: ( rule__Program__Group__0 )\n {\n before(grammarAccess.getProgramAccess().getGroup()); \n // InternalWh.g:94:3: ( rule__Program__Group__0 )\n // InternalWh.g:94:4: rule__Program__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Program__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getProgramAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleDatabase() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:129:2: ( ( ( rule__Database__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:130:1: ( ( rule__Database__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:130:1: ( ( rule__Database__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:131:1: ( rule__Database__Group__0 )\n {\n before(grammarAccess.getDatabaseAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:132:1: ( rule__Database__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:132:2: rule__Database__Group__0\n {\n pushFollow(FOLLOW_rule__Database__Group__0_in_ruleDatabase214);\n rule__Database__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDatabaseAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:67:2: ( ( ( rule__Model__Group__0 ) ) )\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n {\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n // InternalCsv.g:69:3: ( rule__Model__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getGroup()); \n }\n // InternalCsv.g:70:3: ( rule__Model__Group__0 )\n // InternalCsv.g:70:4: rule__Model__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__LanguageTargetAssignment_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:2437:1: ( ( ruleLanguageTarget ) )\n // InternalMLRegression.g:2438:2: ( ruleLanguageTarget )\n {\n // InternalMLRegression.g:2438:2: ( ruleLanguageTarget )\n // InternalMLRegression.g:2439:3: ruleLanguageTarget\n {\n before(grammarAccess.getModelAccess().getLanguageTargetLanguageTargetParserRuleCall_0_0()); \n pushFollow(FOLLOW_2);\n ruleLanguageTarget();\n\n state._fsp--;\n\n after(grammarAccess.getModelAccess().getLanguageTargetLanguageTargetParserRuleCall_0_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleIndex() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2592:2: ( ( ( rule__Index__Group__0 ) ) )\r\n // InternalGo.g:2593:2: ( ( rule__Index__Group__0 ) )\r\n {\r\n // InternalGo.g:2593:2: ( ( rule__Index__Group__0 ) )\r\n // InternalGo.g:2594:3: ( rule__Index__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIndexAccess().getGroup()); \r\n }\r\n // InternalGo.g:2595:3: ( rule__Index__Group__0 )\r\n // InternalGo.g:2595:4: rule__Index__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Index__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIndexAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleText() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:186:2: ( ( ( rule__Text__Group__0 ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:187:1: ( ( rule__Text__Group__0 ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:187:1: ( ( rule__Text__Group__0 ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:188:1: ( rule__Text__Group__0 )\n {\n before(grammarAccess.getTextAccess().getGroup()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:189:1: ( rule__Text__Group__0 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:189:2: rule__Text__Group__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Text__Group__0_in_ruleText334);\n rule__Text__Group__0();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getTextAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleDefinition() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:116:2: ( ( ( rule__Definition__Group__0 ) ) )\n // InternalWh.g:117:2: ( ( rule__Definition__Group__0 ) )\n {\n // InternalWh.g:117:2: ( ( rule__Definition__Group__0 ) )\n // InternalWh.g:118:3: ( rule__Definition__Group__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup()); \n // InternalWh.g:119:3: ( rule__Definition__Group__0 )\n // InternalWh.g:119:4: rule__Definition__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:73:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:75:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:1: ( rule__Model__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel94);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleDefinition() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:141:2: ( ( ( rule__Definition__Group__0 ) ) )\n // InternalWh.g:142:2: ( ( rule__Definition__Group__0 ) )\n {\n // InternalWh.g:142:2: ( ( rule__Definition__Group__0 ) )\n // InternalWh.g:143:3: ( rule__Definition__Group__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup()); \n // InternalWh.g:144:3: ( rule__Definition__Group__0 )\n // InternalWh.g:144:4: rule__Definition__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstExpression() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1447:2: ( ( ( rule__AstExpression__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1448:1: ( ( rule__AstExpression__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1448:1: ( ( rule__AstExpression__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1449:1: ( rule__AstExpression__Group__0 )\n {\n before(grammarAccess.getAstExpressionAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1450:1: ( rule__AstExpression__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1450:2: rule__AstExpression__Group__0\n {\n pushFollow(FOLLOW_rule__AstExpression__Group__0_in_ruleAstExpression3036);\n rule__AstExpression__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstExpressionAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1532:1: ( ( '}' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1534:1: '}'\n {\n before(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__Language__Group__5__Impl3003); \n after(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1668:1: ( ( ( rule__Language__LanguageAssignment_4_1 ) ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1669:1: ( ( rule__Language__LanguageAssignment_4_1 ) )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1669:1: ( ( rule__Language__LanguageAssignment_4_1 ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1670:1: ( rule__Language__LanguageAssignment_4_1 )\n {\n before(grammarAccess.getLanguageAccess().getLanguageAssignment_4_1()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1671:1: ( rule__Language__LanguageAssignment_4_1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1671:2: rule__Language__LanguageAssignment_4_1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__LanguageAssignment_4_1_in_rule__Language__Group_4__1__Impl3258);\n rule__Language__LanguageAssignment_4_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageAccess().getLanguageAssignment_4_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleEnum() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:316:2: ( ( ( rule__Enum__Group__0 ) ) )\n // InternalMyDsl.g:317:2: ( ( rule__Enum__Group__0 ) )\n {\n // InternalMyDsl.g:317:2: ( ( rule__Enum__Group__0 ) )\n // InternalMyDsl.g:318:3: ( rule__Enum__Group__0 )\n {\n before(grammarAccess.getEnumAccess().getGroup()); \n // InternalMyDsl.g:319:3: ( rule__Enum__Group__0 )\n // InternalMyDsl.g:319:4: rule__Enum__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getEnumAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:483:1: ( ( ( ruleother )* ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:484:1: ( ( ruleother )* )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:484:1: ( ( ruleother )* )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:485:1: ( ruleother )*\n {\n before(grammarAccess.getModelAccess().getOtherParserRuleCall_1()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:486:1: ( ruleother )*\n loop5:\n do {\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( ((LA5_0>=RULE_ML_COMMENT && LA5_0<=RULE_OTHER_COMMAND)) ) {\n alt5=1;\n }\n\n\n switch (alt5) {\n \tcase 1 :\n \t // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:486:3: ruleother\n \t {\n \t pushFollow(FOLLOW_ruleother_in_rule__Model__Group__1__Impl982);\n \t ruleother();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop5;\n }\n } while (true);\n\n after(grammarAccess.getModelAccess().getOtherParserRuleCall_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleTerm() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1952:2: ( ( ( rule__Term__Group__0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1953:1: ( ( rule__Term__Group__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1953:1: ( ( rule__Term__Group__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1954:1: ( rule__Term__Group__0 )\n {\n before(grammarAccess.getTermAccess().getGroup()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1955:1: ( rule__Term__Group__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1955:2: rule__Term__Group__0\n {\n pushFollow(FOLLOW_rule__Term__Group__0_in_ruleTerm3685);\n rule__Term__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTermAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleDeclaration() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:116:2: ( ( ( rule__Declaration__Group__0 ) ) )\n // InternalBrowser.g:117:2: ( ( rule__Declaration__Group__0 ) )\n {\n // InternalBrowser.g:117:2: ( ( rule__Declaration__Group__0 ) )\n // InternalBrowser.g:118:3: ( rule__Declaration__Group__0 )\n {\n before(grammarAccess.getDeclarationAccess().getGroup()); \n // InternalBrowser.g:119:3: ( rule__Declaration__Group__0 )\n // InternalBrowser.g:119:4: rule__Declaration__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Declaration__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDeclarationAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleExpressionStmt() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1742:2: ( ( ( rule__ExpressionStmt__Group__0 ) ) )\r\n // InternalGo.g:1743:2: ( ( rule__ExpressionStmt__Group__0 ) )\r\n {\r\n // InternalGo.g:1743:2: ( ( rule__ExpressionStmt__Group__0 ) )\r\n // InternalGo.g:1744:3: ( rule__ExpressionStmt__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionStmtAccess().getGroup()); \r\n }\r\n // InternalGo.g:1745:3: ( rule__ExpressionStmt__Group__0 )\r\n // InternalGo.g:1745:4: rule__ExpressionStmt__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ExpressionStmt__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionStmtAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleLanguageTarget() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n Token otherlv_3=null;\n AntlrDatatypeRuleToken lv_language_2_1 = null;\n\n AntlrDatatypeRuleToken lv_language_2_2 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMLRegression.g:134:2: ( (otherlv_0= 'target_language' otherlv_1= ':' ( ( (lv_language_2_1= rulePython | lv_language_2_2= ruleR ) ) ) otherlv_3= ';' ) )\n // InternalMLRegression.g:135:2: (otherlv_0= 'target_language' otherlv_1= ':' ( ( (lv_language_2_1= rulePython | lv_language_2_2= ruleR ) ) ) otherlv_3= ';' )\n {\n // InternalMLRegression.g:135:2: (otherlv_0= 'target_language' otherlv_1= ':' ( ( (lv_language_2_1= rulePython | lv_language_2_2= ruleR ) ) ) otherlv_3= ';' )\n // InternalMLRegression.g:136:3: otherlv_0= 'target_language' otherlv_1= ':' ( ( (lv_language_2_1= rulePython | lv_language_2_2= ruleR ) ) ) otherlv_3= ';'\n {\n otherlv_0=(Token)match(input,11,FOLLOW_4); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getLanguageTargetAccess().getTarget_languageKeyword_0());\n \t\t\n otherlv_1=(Token)match(input,12,FOLLOW_5); \n\n \t\t\tnewLeafNode(otherlv_1, grammarAccess.getLanguageTargetAccess().getColonKeyword_1());\n \t\t\n // InternalMLRegression.g:144:3: ( ( (lv_language_2_1= rulePython | lv_language_2_2= ruleR ) ) )\n // InternalMLRegression.g:145:4: ( (lv_language_2_1= rulePython | lv_language_2_2= ruleR ) )\n {\n // InternalMLRegression.g:145:4: ( (lv_language_2_1= rulePython | lv_language_2_2= ruleR ) )\n // InternalMLRegression.g:146:5: (lv_language_2_1= rulePython | lv_language_2_2= ruleR )\n {\n // InternalMLRegression.g:146:5: (lv_language_2_1= rulePython | lv_language_2_2= ruleR )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>=14 && LA2_0<=16)) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=17 && LA2_0<=18)) ) {\n alt2=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalMLRegression.g:147:6: lv_language_2_1= rulePython\n {\n\n \t\t\t\t\t\tnewCompositeNode(grammarAccess.getLanguageTargetAccess().getLanguagePythonParserRuleCall_2_0_0());\n \t\t\t\t\t\n pushFollow(FOLLOW_6);\n lv_language_2_1=rulePython();\n\n state._fsp--;\n\n\n \t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getLanguageTargetRule());\n \t\t\t\t\t\t}\n \t\t\t\t\t\tset(\n \t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\"language\",\n \t\t\t\t\t\t\tlv_language_2_1,\n \t\t\t\t\t\t\t\"m2.idm.project.MLRegression.Python\");\n \t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\n\n }\n break;\n case 2 :\n // InternalMLRegression.g:163:6: lv_language_2_2= ruleR\n {\n\n \t\t\t\t\t\tnewCompositeNode(grammarAccess.getLanguageTargetAccess().getLanguageRParserRuleCall_2_0_1());\n \t\t\t\t\t\n pushFollow(FOLLOW_6);\n lv_language_2_2=ruleR();\n\n state._fsp--;\n\n\n \t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getLanguageTargetRule());\n \t\t\t\t\t\t}\n \t\t\t\t\t\tset(\n \t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\"language\",\n \t\t\t\t\t\t\tlv_language_2_2,\n \t\t\t\t\t\t\t\"m2.idm.project.MLRegression.R\");\n \t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n otherlv_3=(Token)match(input,13,FOLLOW_2); \n\n \t\t\tnewLeafNode(otherlv_3, grammarAccess.getLanguageTargetAccess().getSemicolonKeyword_3());\n \t\t\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleExpressionList() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2342:2: ( ( ( rule__ExpressionList__Group__0 ) ) )\r\n // InternalGo.g:2343:2: ( ( rule__ExpressionList__Group__0 ) )\r\n {\r\n // InternalGo.g:2343:2: ( ( rule__ExpressionList__Group__0 ) )\r\n // InternalGo.g:2344:3: ( rule__ExpressionList__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionListAccess().getGroup()); \r\n }\r\n // InternalGo.g:2345:3: ( rule__ExpressionList__Group__0 )\r\n // InternalGo.g:2345:4: rule__ExpressionList__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ExpressionList__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionListAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAlgo() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:366:2: ( ( ( rule__Algo__Group__0 ) ) )\n // InternalMLRegression.g:367:2: ( ( rule__Algo__Group__0 ) )\n {\n // InternalMLRegression.g:367:2: ( ( rule__Algo__Group__0 ) )\n // InternalMLRegression.g:368:3: ( rule__Algo__Group__0 )\n {\n before(grammarAccess.getAlgoAccess().getGroup()); \n // InternalMLRegression.g:369:3: ( rule__Algo__Group__0 )\n // InternalMLRegression.g:369:4: rule__Algo__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Algo__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAlgoAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleInput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:416:2: ( ( ( rule__Input__Group__0 ) ) )\n // InternalBrowser.g:417:2: ( ( rule__Input__Group__0 ) )\n {\n // InternalBrowser.g:417:2: ( ( rule__Input__Group__0 ) )\n // InternalBrowser.g:418:3: ( rule__Input__Group__0 )\n {\n before(grammarAccess.getInputAccess().getGroup()); \n // InternalBrowser.g:419:3: ( rule__Input__Group__0 )\n // InternalBrowser.g:419:4: rule__Input__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleInput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:141:2: ( ( ( rule__Input__Group__0 ) ) )\n // InternalWh.g:142:2: ( ( rule__Input__Group__0 ) )\n {\n // InternalWh.g:142:2: ( ( rule__Input__Group__0 ) )\n // InternalWh.g:143:3: ( rule__Input__Group__0 )\n {\n before(grammarAccess.getInputAccess().getGroup()); \n // InternalWh.g:144:3: ( rule__Input__Group__0 )\n // InternalWh.g:144:4: rule__Input__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleInput() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:73:2: ( ( ( rule__Input__Group__0 ) ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:74:1: ( ( rule__Input__Group__0 ) )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:74:1: ( ( rule__Input__Group__0 ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:75:1: ( rule__Input__Group__0 )\r\n {\r\n before(grammarAccess.getInputAccess().getGroup()); \r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:76:1: ( rule__Input__Group__0 )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:76:2: rule__Input__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__0_in_ruleInput94);\r\n rule__Input__Group__0();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n after(grammarAccess.getInputAccess().getGroup()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstInputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14509:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14511:1: ','\n {\n before(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstInputPattern__Group_3__0__Impl29333); \n after(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleScript() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:117:2: ( ( ( rule__Script__Group__0 ) ) )\r\n // InternalDroneScript.g:118:2: ( ( rule__Script__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:118:2: ( ( rule__Script__Group__0 ) )\r\n // InternalDroneScript.g:119:3: ( rule__Script__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getScriptAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:120:3: ( rule__Script__Group__0 )\r\n // InternalDroneScript.g:120:4: rule__Script__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Script__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getScriptAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public String getModuleFile(String group, String file, String language) throws IOException {\n if (groups.containsKey(group)) {\n ModuleGroup moduleGroup = groups.get(group);\n Module module = moduleGroup.findModule(file);\n if (module != null) {\n StringBuilder moduleOutput = new StringBuilder();\n moduleOutput.append(\"YUI.add('lang/\").append(module.getName());\n if (language != null && !language.isEmpty()) {\n moduleOutput.append(\"_\").append(language);\n }\n moduleOutput.append(\"', function (Y) {\\n\");\n moduleOutput.append(\"Y.Intl.add(\\n\");\n moduleOutput.append(\"'\").append(module.getName()).append(\"',\\n\");\n moduleOutput.append(\"'\").append(language).append(\"',\\n\");\n moduleOutput.append(\"{\\n\");\n\n String resourceKey = module.getMessagesFile().toString();\n Locale locale;\n if (language == null || language.isEmpty()) {\n locale = Locale.getDefault();\n }\n else {\n locale = Locale.forLanguageTag(language);\n }\n\n ResourceBundle resourceBundle = ResourceBundle.getBundle(resourceKey, locale, new LanguageControl());\n Enumeration<String> keys = resourceBundle.getKeys();\n boolean isFirst = true;\n while (keys.hasMoreElements()) {\n String key = keys.nextElement();\n String value = resourceBundle.getString(key);\n if (!isFirst) {\n moduleOutput.append(\",\");\n }\n isFirst = false;\n moduleOutput.append(\"'\").append(key).append(\"': '\").append(value).append(\"'\");\n }\n\n moduleOutput.append(\"});\\n\");\n moduleOutput.append(\"}, '\").append(module.getVersion()).append(\"');\");\n return moduleOutput.toString();\n }\n else {\n throw new UnknownModuleException(group, file);\n }\n }\n else {\n throw new UnknownGroupException(group);\n }\n\n }", "public final void ruleLink() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:242:2: ( ( ( rule__Link__Group__0 ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:243:1: ( ( rule__Link__Group__0 ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:243:1: ( ( rule__Link__Group__0 ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:244:1: ( rule__Link__Group__0 )\n {\n before(grammarAccess.getLinkAccess().getGroup()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:245:1: ( rule__Link__Group__0 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:245:2: rule__Link__Group__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Link__Group__0_in_ruleLink454);\n rule__Link__Group__0();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getLinkAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__GoStmt__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:7576:1: ( ( ruleLabel ) )\r\n // InternalGo.g:7577:1: ( ruleLabel )\r\n {\r\n // InternalGo.g:7577:1: ( ruleLabel )\r\n // InternalGo.g:7578:2: ruleLabel\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getGoStmtAccess().getLabelParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleLabel();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getGoStmtAccess().getLabelParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleELong() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:185:2: ( ( ( rule__ELong__Group__0 ) ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:186:1: ( ( rule__ELong__Group__0 ) )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:186:1: ( ( rule__ELong__Group__0 ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:187:1: ( rule__ELong__Group__0 )\n {\n before(grammarAccess.getELongAccess().getGroup()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:188:1: ( rule__ELong__Group__0 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:188:2: rule__ELong__Group__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__ELong__Group__0_in_ruleELong334);\n rule__ELong__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getELongAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleTab() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:157:2: ( ( ( rule__Tab__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:158:1: ( ( rule__Tab__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:158:1: ( ( rule__Tab__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:159:1: ( rule__Tab__Group__0 )\n {\n before(grammarAccess.getTabAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:160:1: ( rule__Tab__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:160:2: rule__Tab__Group__0\n {\n pushFollow(FOLLOW_rule__Tab__Group__0_in_ruleTab274);\n rule__Tab__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTabAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12936:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12938:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_6_1__0__Impl26229); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAction() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:296:2: ( ( ( rule__Action__Group__0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:297:1: ( ( rule__Action__Group__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:297:1: ( ( rule__Action__Group__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:298:1: ( rule__Action__Group__0 )\n {\n before(grammarAccess.getActionAccess().getGroup()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:299:1: ( rule__Action__Group__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:299:2: rule__Action__Group__0\n {\n pushFollow(FOLLOW_rule__Action__Group__0_in_ruleAction517);\n rule__Action__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getActionAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleExpression() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2355:1: ( ruleExpression EOF )\r\n // InternalGo.g:2356:1: ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleSQLCall() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:316:2: ( ( ( rule__SQLCall__Group__0 ) ) )\n // InternalBSQL2Java.g:317:2: ( ( rule__SQLCall__Group__0 ) )\n {\n // InternalBSQL2Java.g:317:2: ( ( rule__SQLCall__Group__0 ) )\n // InternalBSQL2Java.g:318:3: ( rule__SQLCall__Group__0 )\n {\n before(grammarAccess.getSQLCallAccess().getGroup()); \n // InternalBSQL2Java.g:319:3: ( rule__SQLCall__Group__0 )\n // InternalBSQL2Java.g:319:4: rule__SQLCall__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__SQLCall__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getSQLCallAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ContinueStmt__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:7765:1: ( ( ( ruleLabel )? ) )\r\n // InternalGo.g:7766:1: ( ( ruleLabel )? )\r\n {\r\n // InternalGo.g:7766:1: ( ( ruleLabel )? )\r\n // InternalGo.g:7767:2: ( ruleLabel )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getContinueStmtAccess().getLabelParserRuleCall_1()); \r\n }\r\n // InternalGo.g:7768:2: ( ruleLabel )?\r\n int alt75=2;\r\n int LA75_0 = input.LA(1);\r\n\r\n if ( (LA75_0==RULE_ID) ) {\r\n int LA75_1 = input.LA(2);\r\n\r\n if ( (synpred119_InternalGo()) ) {\r\n alt75=1;\r\n }\r\n }\r\n else if ( (LA75_0==46) ) {\r\n int LA75_2 = input.LA(2);\r\n\r\n if ( (LA75_2==RULE_ID) ) {\r\n int LA75_5 = input.LA(3);\r\n\r\n if ( (synpred119_InternalGo()) ) {\r\n alt75=1;\r\n }\r\n }\r\n }\r\n switch (alt75) {\r\n case 1 :\r\n // InternalGo.g:7768:3: ruleLabel\r\n {\r\n pushFollow(FOLLOW_2);\r\n ruleLabel();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getContinueStmtAccess().getLabelParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Enum__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1418:1: ( rule__Enum__Group__6__Impl rule__Enum__Group__7 )\n // InternalMyDsl.g:1419:2: rule__Enum__Group__6__Impl rule__Enum__Group__7\n {\n pushFollow(FOLLOW_18);\n rule__Enum__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleCategory() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleCategory = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:311:2: (iv_ruleCategory= ruleCategory EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:312:2: iv_ruleCategory= ruleCategory EOF\n {\n newCompositeNode(grammarAccess.getCategoryRule()); \n pushFollow(FollowSets000.FOLLOW_ruleCategory_in_entryRuleCategory579);\n iv_ruleCategory=ruleCategory();\n\n state._fsp--;\n\n current =iv_ruleCategory; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleCategory589); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleChoice() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1736:2: ( ( ( rule__Choice__Group__0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1737:1: ( ( rule__Choice__Group__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1737:1: ( ( rule__Choice__Group__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1738:1: ( rule__Choice__Group__0 )\n {\n before(grammarAccess.getChoiceAccess().getGroup()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1739:1: ( rule__Choice__Group__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1739:2: rule__Choice__Group__0\n {\n pushFollow(FOLLOW_rule__Choice__Group__0_in_ruleChoice3271);\n rule__Choice__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getChoiceAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleAstTag() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:913:2: ( ( ( rule__AstTag__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:914:1: ( ( rule__AstTag__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:914:1: ( ( rule__AstTag__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:915:1: ( rule__AstTag__Group__0 )\n {\n before(grammarAccess.getAstTagAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:916:1: ( rule__AstTag__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:916:2: rule__AstTag__Group__0\n {\n pushFollow(FOLLOW_rule__AstTag__Group__0_in_ruleAstTag1894);\n rule__AstTag__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTagAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleActivity() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:130:2: ( ( ( rule__Activity__Group__0 ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:131:1: ( ( rule__Activity__Group__0 ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:131:1: ( ( rule__Activity__Group__0 ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:132:1: ( rule__Activity__Group__0 )\n {\n before(grammarAccess.getActivityAccess().getGroup()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:133:1: ( rule__Activity__Group__0 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:133:2: rule__Activity__Group__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__0_in_ruleActivity214);\n rule__Activity__Group__0();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getActivityAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleCategoria() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:213:2: ( ( ( rule__Categoria__Group__0 ) ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:214:1: ( ( rule__Categoria__Group__0 ) )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:214:1: ( ( rule__Categoria__Group__0 ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:215:1: ( rule__Categoria__Group__0 )\n {\n before(grammarAccess.getCategoriaAccess().getGroup()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:216:1: ( rule__Categoria__Group__0 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:216:2: rule__Categoria__Group__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__0_in_ruleCategoria394);\n rule__Categoria__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getCategoriaAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleTag() throws RecognitionException {\r\n try {\r\n // InternalGo.g:680:1: ( ruleTag EOF )\r\n // InternalGo.g:681:1: ruleTag EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTagRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleTag();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTagRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleLoop() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:616:2: ( ( ( rule__Loop__Group__0 ) ) )\n // InternalMLRegression.g:617:2: ( ( rule__Loop__Group__0 ) )\n {\n // InternalMLRegression.g:617:2: ( ( rule__Loop__Group__0 ) )\n // InternalMLRegression.g:618:3: ( rule__Loop__Group__0 )\n {\n before(grammarAccess.getLoopAccess().getGroup()); \n // InternalMLRegression.g:619:3: ( rule__Loop__Group__0 )\n // InternalMLRegression.g:619:4: rule__Loop__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Loop__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLoopAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group_7__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2232:1: ( ( ',' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2234:1: ','\n {\n before(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n match(input,26,FollowSets000.FOLLOW_26_in_rule__Categoria__Group_7__0__Impl4378); \n after(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleParallel() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1700:2: ( ( ( rule__Parallel__Group__0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1701:1: ( ( rule__Parallel__Group__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1701:1: ( ( rule__Parallel__Group__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1702:1: ( rule__Parallel__Group__0 )\n {\n before(grammarAccess.getParallelAccess().getGroup()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1703:1: ( rule__Parallel__Group__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1703:2: rule__Parallel__Group__0\n {\n pushFollow(FOLLOW_rule__Parallel__Group__0_in_ruleParallel3202);\n rule__Parallel__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getParallelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }" ]
[ "0.71860677", "0.70452815", "0.69807243", "0.67779714", "0.66311705", "0.6626092", "0.6614959", "0.6572696", "0.6492793", "0.6352969", "0.6340358", "0.63398105", "0.63315517", "0.6251949", "0.62396437", "0.6201663", "0.6187728", "0.61700445", "0.6144759", "0.61369306", "0.6122302", "0.6095475", "0.6064671", "0.60262394", "0.6002186", "0.59989125", "0.59616655", "0.5879643", "0.5876002", "0.58726525", "0.58716035", "0.58456886", "0.5784822", "0.5767758", "0.5746004", "0.57317835", "0.5661649", "0.56303096", "0.56211555", "0.56167144", "0.55901164", "0.55777806", "0.54352975", "0.54130477", "0.5399842", "0.5246557", "0.52219135", "0.5208965", "0.5192942", "0.51832837", "0.51521343", "0.51521343", "0.5149313", "0.5141856", "0.51374036", "0.51341754", "0.512536", "0.5059498", "0.50547826", "0.50522584", "0.50510263", "0.50254077", "0.5020084", "0.5011251", "0.50085455", "0.49874306", "0.4982679", "0.49692643", "0.49382558", "0.4936756", "0.4936666", "0.49352804", "0.49168974", "0.48898253", "0.48882824", "0.48877588", "0.4885233", "0.48829058", "0.48783028", "0.4851649", "0.48295033", "0.48260328", "0.48219922", "0.48215088", "0.48203328", "0.4813491", "0.48120224", "0.47869766", "0.4786853", "0.47715613", "0.475941", "0.47552833", "0.4753425", "0.47515792", "0.47512892", "0.47466415", "0.47453922", "0.47429508", "0.47396833", "0.4736895" ]
0.79264563
0
$ANTLR end "ruleLanguage" $ANTLR start "entryRuleAction" InternalCsv.g:104:1: entryRuleAction : ruleAction EOF ;
public final void entryRuleAction() throws RecognitionException { try { // InternalCsv.g:105:1: ( ruleAction EOF ) // InternalCsv.g:106:1: ruleAction EOF { if ( state.backtracking==0 ) { before(grammarAccess.getActionRule()); } pushFollow(FOLLOW_1); ruleAction(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getActionRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleAction() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:280:1: ( ruleAction EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:281:1: ruleAction EOF\n {\n before(grammarAccess.getActionRule()); \n pushFollow(FOLLOW_ruleAction_in_entryRuleAction480);\n ruleAction();\n\n state._fsp--;\n\n after(grammarAccess.getActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAction487); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleEntry() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:62:1: ( ruleEntry EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:63:1: ruleEntry EOF\n {\n before(grammarAccess.getEntryRule()); \n pushFollow(FollowSets000.FOLLOW_ruleEntry_in_entryRuleEntry61);\n ruleEntry();\n _fsp--;\n\n after(grammarAccess.getEntryRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleEntry68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleAstAction() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1071:1: ( ruleAstAction EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1072:1: ruleAstAction EOF\n {\n before(grammarAccess.getAstActionRule()); \n pushFollow(FOLLOW_ruleAstAction_in_entryRuleAstAction2223);\n ruleAstAction();\n\n state._fsp--;\n\n after(grammarAccess.getAstActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstAction2230); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleActivity() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:118:1: ( ruleActivity EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:119:1: ruleActivity EOF\n {\n before(grammarAccess.getActivityRule()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_entryRuleActivity181);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getActivityRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleActivity188); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleExpression() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2355:1: ( ruleExpression EOF )\r\n // InternalGo.g:2356:1: ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // InternalCsv.g:80:1: ( ruleLanguage EOF )\n // InternalCsv.g:81:1: ruleLanguage EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageRule()); \n }\n pushFollow(FOLLOW_1);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleActionProcess() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1864:1: ( ruleActionProcess EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1865:1: ruleActionProcess EOF\n {\n before(grammarAccess.getActionProcessRule()); \n pushFollow(FOLLOW_ruleActionProcess_in_entryRuleActionProcess3510);\n ruleActionProcess();\n\n state._fsp--;\n\n after(grammarAccess.getActionProcessRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleActionProcess3517); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleAstToken() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1155:1: ( ruleAstToken EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1156:1: ruleAstToken EOF\n {\n before(grammarAccess.getAstTokenRule()); \n pushFollow(FOLLOW_ruleAstToken_in_entryRuleAstToken2403);\n ruleAstToken();\n\n state._fsp--;\n\n after(grammarAccess.getAstTokenRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstToken2410); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleExpression() throws RecognitionException {\n try {\n // InternalBrowser.g:254:1: ( ruleExpression EOF )\n // InternalBrowser.g:255:1: ruleExpression EOF\n {\n before(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_1);\n ruleExpression();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpression = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2467:2: (iv_ruleExpression= ruleExpression EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2468:2: iv_ruleExpression= ruleExpression EOF\n {\n currentNode = createCompositeNode(grammarAccess.getExpressionRule(), currentNode); \n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression4256);\n iv_ruleExpression=ruleExpression();\n _fsp--;\n\n current =iv_ruleExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression4266); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleRule() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRule = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2736:2: (iv_ruleRule= ruleRule EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2737:2: iv_ruleRule= ruleRule EOF\n {\n newCompositeNode(grammarAccess.getRuleRule()); \n pushFollow(FOLLOW_ruleRule_in_entryRuleRule6136);\n iv_ruleRule=ruleRule();\n\n state._fsp--;\n\n current =iv_ruleRule; \n match(input,EOF,FOLLOW_EOF_in_entryRuleRule6146); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleAstExpression() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1435:1: ( ruleAstExpression EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1436:1: ruleAstExpression EOF\n {\n before(grammarAccess.getAstExpressionRule()); \n pushFollow(FOLLOW_ruleAstExpression_in_entryRuleAstExpression3003);\n ruleAstExpression();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstExpression3010); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleStatement() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1130:1: ( ruleStatement EOF )\r\n // InternalGo.g:1131:1: ruleStatement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleStatement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleExpressionStmt() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1730:1: ( ruleExpressionStmt EOF )\r\n // InternalGo.g:1731:1: ruleExpressionStmt EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionStmtRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpressionStmt();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionStmtRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleTerm() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1936:1: ( ruleTerm EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1937:1: ruleTerm EOF\n {\n before(grammarAccess.getTermRule()); \n pushFollow(FOLLOW_ruleTerm_in_entryRuleTerm3648);\n ruleTerm();\n\n state._fsp--;\n\n after(grammarAccess.getTermRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleTerm3655); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpression = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:3793:2: (iv_ruleExpression= ruleExpression EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:3794:2: iv_ruleExpression= ruleExpression EOF\n {\n newCompositeNode(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression8462);\n iv_ruleExpression=ruleExpression();\n\n state._fsp--;\n\n current =iv_ruleExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression8472); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleExpr() throws RecognitionException {\n try {\n // InternalWh.g:279:1: ( ruleExpr EOF )\n // InternalWh.g:280:1: ruleExpr EOF\n {\n before(grammarAccess.getExprRule()); \n pushFollow(FOLLOW_1);\n ruleExpr();\n\n state._fsp--;\n\n after(grammarAccess.getExprRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRulePredicateExpression() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:352:1: ( rulePredicateExpression EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:353:1: rulePredicateExpression EOF\n {\n before(grammarAccess.getPredicateExpressionRule()); \n pushFollow(FOLLOW_rulePredicateExpression_in_entryRulePredicateExpression618);\n rulePredicateExpression();\n\n state._fsp--;\n\n after(grammarAccess.getPredicateExpressionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRulePredicateExpression625); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:229:1: ( ruleImport EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:230:1: ruleImport EOF\n {\n before(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport421);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getImportRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2060:2: (iv_ruleExpression= ruleExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2061:2: iv_ruleExpression= ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression4369);\r\n iv_ruleExpression=ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression4379); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleDeclaration() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1155:1: ( ruleDeclaration EOF )\r\n // InternalGo.g:1156:1: ruleDeclaration EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDeclarationRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleDeclaration();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDeclarationRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleTab() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:145:1: ( ruleTab EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:146:1: ruleTab EOF\n {\n before(grammarAccess.getTabRule()); \n pushFollow(FOLLOW_ruleTab_in_entryRuleTab241);\n ruleTab();\n\n state._fsp--;\n\n after(grammarAccess.getTabRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleTab248); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleIndex() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2580:1: ( ruleIndex EOF )\r\n // InternalGo.g:2581:1: ruleIndex EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIndexRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleIndex();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIndexRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleExpressions() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:892:1: ( ruleExpressions EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:893:1: ruleExpressions EOF\n {\n before(grammarAccess.getExpressionsRule()); \n pushFollow(FOLLOW_ruleExpressions_in_entryRuleExpressions1650);\n ruleExpressions();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionsRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpressions1657); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleStatement() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:155:1: ( ruleStatement EOF )\r\n // InternalDroneScript.g:156:1: ruleStatement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleStatement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_StartIndex = input.index();\n EObject iv_ruleExpression = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 81) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:3658:2: (iv_ruleExpression= ruleExpression EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:3659:2: iv_ruleExpression= ruleExpression EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpressionRule()); \n }\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression7279);\n iv_ruleExpression=ruleExpression();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression7289); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 81, entryRuleExpression_StartIndex); }\n }\n return current;\n }", "public final void entryRuleMove() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:255:1: ( ruleMove EOF )\r\n // InternalDroneScript.g:256:1: ruleMove EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getMoveRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleMove();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getMoveRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRulePredicate() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:316:1: ( rulePredicate EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:317:1: rulePredicate EOF\n {\n before(grammarAccess.getPredicateRule()); \n pushFollow(FOLLOW_rulePredicate_in_entryRulePredicate549);\n rulePredicate();\n\n state._fsp--;\n\n after(grammarAccess.getPredicateRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRulePredicate556); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final EObject entryRuleNode() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleNode = null;\n\n\n try {\n // InternalSPDSL.g:160:45: (iv_ruleNode= ruleNode EOF )\n // InternalSPDSL.g:161:2: iv_ruleNode= ruleNode EOF\n {\n newCompositeNode(grammarAccess.getNodeRule()); \n pushFollow(FOLLOW_1);\n iv_ruleNode=ruleNode();\n\n state._fsp--;\n\n current =iv_ruleNode; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalCsv.g:55:1: ( ruleModel EOF )\n // InternalCsv.g:56:1: ruleModel EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelRule()); \n }\n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleExpression = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2458:2: (iv_ruleExpression= ruleExpression EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2459:2: iv_ruleExpression= ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression5585);\r\n iv_ruleExpression=ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression5595); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleExpressionList() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2330:1: ( ruleExpressionList EOF )\r\n // InternalGo.g:2331:1: ruleExpressionList EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionListRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpressionList();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionListRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleAstExpressionExp() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1715:1: ( ruleAstExpressionExp EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1716:1: ruleAstExpressionExp EOF\n {\n before(grammarAccess.getAstExpressionExpRule()); \n pushFollow(FOLLOW_ruleAstExpressionExp_in_entryRuleAstExpressionExp3603);\n ruleAstExpressionExp();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionExpRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstExpressionExp3610); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject ruleEntryEvent() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2125:28: ( ( () otherlv_1= 'entry' ) )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:1: ( () otherlv_1= 'entry' )\r\n {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:1: ( () otherlv_1= 'entry' )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:2: () otherlv_1= 'entry'\r\n {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2126:2: ()\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2127:5: \r\n {\r\n if ( state.backtracking==0 ) {\r\n\r\n current = forceCreateModelElement(\r\n grammarAccess.getEntryEventAccess().getEntryEventAction_0(),\r\n current);\r\n \r\n }\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,39,FOLLOW_39_in_ruleEntryEvent4737); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getEntryEventAccess().getEntryKeyword_1());\r\n \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:173:1: ( ruleLanguage EOF )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:174:1: ruleLanguage EOF\n {\n before(grammarAccess.getLanguageRule()); \n pushFollow(FollowSets000.FOLLOW_ruleLanguage_in_entryRuleLanguage301);\n ruleLanguage();\n\n state._fsp--;\n\n after(grammarAccess.getLanguageRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleLanguage308); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleDeclaration() throws RecognitionException {\n try {\n // InternalBrowser.g:104:1: ( ruleDeclaration EOF )\n // InternalBrowser.g:105:1: ruleDeclaration EOF\n {\n before(grammarAccess.getDeclarationRule()); \n pushFollow(FOLLOW_1);\n ruleDeclaration();\n\n state._fsp--;\n\n after(grammarAccess.getDeclarationRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleAstStatement() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1407:1: ( ruleAstStatement EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1408:1: ruleAstStatement EOF\n {\n before(grammarAccess.getAstStatementRule()); \n pushFollow(FOLLOW_ruleAstStatement_in_entryRuleAstStatement2943);\n ruleAstStatement();\n\n state._fsp--;\n\n after(grammarAccess.getAstStatementRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstStatement2950); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleIDENTIFIER() throws RecognitionException {\r\n try {\r\n // InternalGo.g:255:1: ( ruleIDENTIFIER EOF )\r\n // InternalGo.g:256:1: ruleIDENTIFIER EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIDENTIFIERRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleIDENTIFIER();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIDENTIFIERRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleContext() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleContext = null;\n\n\n try {\n // ../ac.soton.xtext.contextDsl/src-gen/ac/soton/xtext/parser/antlr/internal/InternalContextDsl.g:68:2: (iv_ruleContext= ruleContext EOF )\n // ../ac.soton.xtext.contextDsl/src-gen/ac/soton/xtext/parser/antlr/internal/InternalContextDsl.g:69:2: iv_ruleContext= ruleContext EOF\n {\n newCompositeNode(grammarAccess.getContextRule()); \n pushFollow(FollowSets000.FOLLOW_ruleContext_in_entryRuleContext75);\n iv_ruleContext=ruleContext();\n\n state._fsp--;\n\n current =iv_ruleContext; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleContext85); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleInputEntry() throws RecognitionException {\r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:89:1: ( ruleInputEntry EOF )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:90:1: ruleInputEntry EOF\r\n {\r\n before(grammarAccess.getInputEntryRule()); \r\n pushFollow(FOLLOW_ruleInputEntry_in_entryRuleInputEntry121);\r\n ruleInputEntry();\r\n\r\n state._fsp--;\r\n\r\n after(grammarAccess.getInputEntryRule()); \r\n match(input,EOF,FOLLOW_EOF_in_entryRuleInputEntry128); \r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleStatement() throws RecognitionException {\n EObject current = null;\n int entryRuleStatement_StartIndex = input.index();\n EObject iv_ruleStatement = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 39) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2028:2: (iv_ruleStatement= ruleStatement EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2029:2: iv_ruleStatement= ruleStatement EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getStatementRule()); \n }\n pushFollow(FOLLOW_ruleStatement_in_entryRuleStatement3873);\n iv_ruleStatement=ruleStatement();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleStatement; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleStatement3883); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 39, entryRuleStatement_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleRuleDeclaration() throws RecognitionException {\n EObject current = null;\n int entryRuleRuleDeclaration_StartIndex = input.index();\n EObject iv_ruleRuleDeclaration = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 9) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:501:2: (iv_ruleRuleDeclaration= ruleRuleDeclaration EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:502:2: iv_ruleRuleDeclaration= ruleRuleDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getRuleDeclarationRule()); \n }\n pushFollow(FOLLOW_ruleRuleDeclaration_in_entryRuleRuleDeclaration908);\n iv_ruleRuleDeclaration=ruleRuleDeclaration();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleRuleDeclaration; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleRuleDeclaration918); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 9, entryRuleRuleDeclaration_StartIndex); }\n }\n return current;\n }", "public final void entryRuleElement() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:90:1: ( ruleElement EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:91:1: ruleElement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementRule()); \r\n }\r\n pushFollow(FOLLOW_ruleElement_in_entryRuleElement127);\r\n ruleElement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleElement134); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleMatchOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleMatchOperator = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:964:2: (iv_ruleMatchOperator= ruleMatchOperator EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:965:2: iv_ruleMatchOperator= ruleMatchOperator EOF\n {\n newCompositeNode(grammarAccess.getMatchOperatorRule()); \n pushFollow(FOLLOW_ruleMatchOperator_in_entryRuleMatchOperator2103);\n iv_ruleMatchOperator=ruleMatchOperator();\n\n state._fsp--;\n\n current =iv_ruleMatchOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleMatchOperator2113); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMappingDsl.g:1797:47: (iv_ruleImport= ruleImport EOF )\n // InternalMappingDsl.g:1798:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleMatch() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleMatch = null;\r\n\r\n\r\n try {\r\n // InternalEsportDsl.g:1626:46: (iv_ruleMatch= ruleMatch EOF )\r\n // InternalEsportDsl.g:1627:2: iv_ruleMatch= ruleMatch EOF\r\n {\r\n newCompositeNode(grammarAccess.getMatchRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleMatch=ruleMatch();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleMatch; \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleScan() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:355:1: ( ruleScan EOF )\r\n // InternalDroneScript.g:356:1: ruleScan EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getScanRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleScan();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getScanRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleResult() throws RecognitionException {\r\n try {\r\n // InternalGo.g:805:1: ( ruleResult EOF )\r\n // InternalGo.g:806:1: ruleResult EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getResultRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleResult();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getResultRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleStatement() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleStatement = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2274:2: (iv_ruleStatement= ruleStatement EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2275:2: iv_ruleStatement= ruleStatement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getStatementRule()); \r\n }\r\n pushFollow(FOLLOW_ruleStatement_in_entryRuleStatement5161);\r\n iv_ruleStatement=ruleStatement();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleStatement; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleStatement5171); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public HashMap<String,Rule> get_rules_to_action() throws Exception;", "public final EObject entryRuleContext() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleContext = null;\n\n\n try {\n // InternalMappingDsl.g:5534:48: (iv_ruleContext= ruleContext EOF )\n // InternalMappingDsl.g:5535:2: iv_ruleContext= ruleContext EOF\n {\n newCompositeNode(grammarAccess.getContextRule()); \n pushFollow(FOLLOW_1);\n iv_ruleContext=ruleContext();\n\n state._fsp--;\n\n current =iv_ruleContext; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleAstActor() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:677:1: ( ruleAstActor EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:678:1: ruleAstActor EOF\n {\n before(grammarAccess.getAstActorRule()); \n pushFollow(FOLLOW_ruleAstActor_in_entryRuleAstActor1381);\n ruleAstActor();\n\n state._fsp--;\n\n after(grammarAccess.getAstActorRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstActor1388); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleElement() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2905:1: ( ruleElement EOF )\r\n // InternalGo.g:2906:1: ruleElement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleElement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleCategory() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleCategory = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:311:2: (iv_ruleCategory= ruleCategory EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:312:2: iv_ruleCategory= ruleCategory EOF\n {\n newCompositeNode(grammarAccess.getCategoryRule()); \n pushFollow(FollowSets000.FOLLOW_ruleCategory_in_entryRuleCategory579);\n iv_ruleCategory=ruleCategory();\n\n state._fsp--;\n\n current =iv_ruleCategory; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleCategory589); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleType = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2094:2: (iv_ruleType= ruleType EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2095:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FOLLOW_ruleType_in_entryRuleType4992);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleType5002); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleGoal() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGoal = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:763:2: (iv_ruleGoal= ruleGoal EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:764:2: iv_ruleGoal= ruleGoal EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGoalRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGoal_in_entryRuleGoal1539);\r\n iv_ruleGoal=ruleGoal();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGoal; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGoal1549); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleLink() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:230:1: ( ruleLink EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:231:1: ruleLink EOF\n {\n before(grammarAccess.getLinkRule()); \n pushFollow(FollowSets000.FOLLOW_ruleLink_in_entryRuleLink421);\n ruleLink();\n _fsp--;\n\n after(grammarAccess.getLinkRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleLink428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleInput() throws RecognitionException {\r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:61:1: ( ruleInput EOF )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:62:1: ruleInput EOF\r\n {\r\n before(grammarAccess.getInputRule()); \r\n pushFollow(FOLLOW_ruleInput_in_entryRuleInput61);\r\n ruleInput();\r\n\r\n state._fsp--;\r\n\r\n after(grammarAccess.getInputRule()); \r\n match(input,EOF,FOLLOW_EOF_in_entryRuleInput68); \r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleTag() throws RecognitionException {\r\n try {\r\n // InternalGo.g:680:1: ( ruleTag EOF )\r\n // InternalGo.g:681:1: ruleTag EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTagRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleTag();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTagRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleAntecedentRule() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleAntecedentRule = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2590:2: (iv_ruleAntecedentRule= ruleAntecedentRule EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2591:2: iv_ruleAntecedentRule= ruleAntecedentRule EOF\n {\n newCompositeNode(grammarAccess.getAntecedentRuleRule()); \n pushFollow(FOLLOW_ruleAntecedentRule_in_entryRuleAntecedentRule5808);\n iv_ruleAntecedentRule=ruleAntecedentRule();\n\n state._fsp--;\n\n current =iv_ruleAntecedentRule; \n match(input,EOF,FOLLOW_EOF_in_entryRuleAntecedentRule5818); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpressionStatement() throws RecognitionException {\n EObject current = null;\n int entryRuleExpressionStatement_StartIndex = input.index();\n EObject iv_ruleExpressionStatement = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 51) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2457:2: (iv_ruleExpressionStatement= ruleExpressionStatement EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2458:2: iv_ruleExpressionStatement= ruleExpressionStatement EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpressionStatementRule()); \n }\n pushFollow(FOLLOW_ruleExpressionStatement_in_entryRuleExpressionStatement4848);\n iv_ruleExpressionStatement=ruleExpressionStatement();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpressionStatement; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpressionStatement4858); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 51, entryRuleExpressionStatement_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleExpr() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpr = null;\n\n\n try {\n // InternalMyDsl.g:64:45: (iv_ruleExpr= ruleExpr EOF )\n // InternalMyDsl.g:65:2: iv_ruleExpr= ruleExpr EOF\n {\n newCompositeNode(grammarAccess.getExprRule()); \n pushFollow(FOLLOW_1);\n iv_ruleExpr=ruleExpr();\n\n state._fsp--;\n\n current =iv_ruleExpr; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRulePosition() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:405:1: ( rulePosition EOF )\r\n // InternalDroneScript.g:406:1: rulePosition EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getPositionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n rulePosition();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getPositionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:287:2: (iv_ruleImport= ruleImport EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:288:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport625);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport635); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleAnnotation() throws RecognitionException {\n EObject current = null;\n int entryRuleAnnotation_StartIndex = input.index();\n EObject iv_ruleAnnotation = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 145) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:6080:2: (iv_ruleAnnotation= ruleAnnotation EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:6081:2: iv_ruleAnnotation= ruleAnnotation EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getAnnotationRule()); \n }\n pushFollow(FOLLOW_ruleAnnotation_in_entryRuleAnnotation12439);\n iv_ruleAnnotation=ruleAnnotation();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleAnnotation; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleAnnotation12449); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 145, entryRuleAnnotation_StartIndex); }\n }\n return current;\n }", "public final void entryRuleValidID() throws RecognitionException {\n try {\n // InternalCsv.g:580:1: ( ruleValidID EOF )\n // InternalCsv.g:581:1: ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_1);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getValidIDRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleType() throws RecognitionException {\r\n try {\r\n // InternalGo.g:355:1: ( ruleType EOF )\r\n // InternalGo.g:356:1: ruleType EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleType();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleMove() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleMove = null;\n\n\n try {\n // ../dk.dtu.se2.animation.language/src-gen/dk/dtu/se2/animation/parser/antlr/internal/InternalAnimationLanguage.g:148:2: (iv_ruleMove= ruleMove EOF )\n // ../dk.dtu.se2.animation.language/src-gen/dk/dtu/se2/animation/parser/antlr/internal/InternalAnimationLanguage.g:149:2: iv_ruleMove= ruleMove EOF\n {\n newCompositeNode(grammarAccess.getMoveRule()); \n pushFollow(FollowSets000.FOLLOW_ruleMove_in_entryRuleMove248);\n iv_ruleMove=ruleMove();\n\n state._fsp--;\n\n current =iv_ruleMove; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleMove258); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression_6() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_6_StartIndex = input.index();\n EObject iv_ruleExpression_6 = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 93) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4087:2: (iv_ruleExpression_6= ruleExpression_6 EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4088:2: iv_ruleExpression_6= ruleExpression_6 EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpression_6Rule()); \n }\n pushFollow(FOLLOW_ruleExpression_6_in_entryRuleExpression_68143);\n iv_ruleExpression_6=ruleExpression_6();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression_6; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression_68153); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 93, entryRuleExpression_6_StartIndex); }\n }\n return current;\n }", "public final void entryRuleChoice() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1720:1: ( ruleChoice EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1721:1: ruleChoice EOF\n {\n before(grammarAccess.getChoiceRule()); \n pushFollow(FOLLOW_ruleChoice_in_entryRuleChoice3234);\n ruleChoice();\n\n state._fsp--;\n\n after(grammarAccess.getChoiceRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleChoice3241); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleAttribute() throws RecognitionException {\n try {\n // InternalBSQL2Java.g:129:1: ( ruleAttribute EOF )\n // InternalBSQL2Java.g:130:1: ruleAttribute EOF\n {\n before(grammarAccess.getAttributeRule()); \n pushFollow(FOLLOW_1);\n ruleAttribute();\n\n state._fsp--;\n\n after(grammarAccess.getAttributeRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleEnum() throws RecognitionException {\n try {\n // InternalMyDsl.g:304:1: ( ruleEnum EOF )\n // InternalMyDsl.g:305:1: ruleEnum EOF\n {\n before(grammarAccess.getEnumRule()); \n pushFollow(FOLLOW_1);\n ruleEnum();\n\n state._fsp--;\n\n after(grammarAccess.getEnumRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleSpace() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:229:1: ( ruleSpace EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:230:1: ruleSpace EOF\n {\n before(grammarAccess.getSpaceRule()); \n pushFollow(FOLLOW_ruleSpace_in_entryRuleSpace421);\n ruleSpace();\n\n state._fsp--;\n\n after(grammarAccess.getSpaceRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleSpace428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleColumn() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:173:1: ( ruleColumn EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:174:1: ruleColumn EOF\n {\n before(grammarAccess.getColumnRule()); \n pushFollow(FOLLOW_ruleColumn_in_entryRuleColumn301);\n ruleColumn();\n\n state._fsp--;\n\n after(grammarAccess.getColumnRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleColumn308); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleAstAnnotation() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2369:1: ( ruleAstAnnotation EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2370:1: ruleAstAnnotation EOF\n {\n before(grammarAccess.getAstAnnotationRule()); \n pushFollow(FOLLOW_ruleAstAnnotation_in_entryRuleAstAnnotation4994);\n ruleAstAnnotation();\n\n state._fsp--;\n\n after(grammarAccess.getAstAnnotationRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstAnnotation5001); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleAttribute() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleAttribute = null;\n\n\n try {\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:206:2: (iv_ruleAttribute= ruleAttribute EOF )\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:207:2: iv_ruleAttribute= ruleAttribute EOF\n {\n newCompositeNode(grammarAccess.getAttributeRule()); \n pushFollow(FOLLOW_ruleAttribute_in_entryRuleAttribute377);\n iv_ruleAttribute=ruleAttribute();\n\n state._fsp--;\n\n current =iv_ruleAttribute; \n match(input,EOF,FOLLOW_EOF_in_entryRuleAttribute387); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) )\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n {\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n // InternalCsv.g:119:3: ( rule__Action__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getAlternatives()); \n }\n // InternalCsv.g:120:3: ( rule__Action__Alternatives )\n // InternalCsv.g:120:4: rule__Action__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Action__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleConversion() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2505:1: ( ruleConversion EOF )\r\n // InternalGo.g:2506:1: ruleConversion EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConversionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleConversion();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConversionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleCommand() throws RecognitionException {\n try {\n // InternalWh.g:254:1: ( ruleCommand EOF )\n // InternalWh.g:255:1: ruleCommand EOF\n {\n before(grammarAccess.getCommandRule()); \n pushFollow(FOLLOW_1);\n ruleCommand();\n\n state._fsp--;\n\n after(grammarAccess.getCommandRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleEntryEvent() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleEntryEvent = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2114:2: (iv_ruleEntryEvent= ruleEntryEvent EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2115:2: iv_ruleEntryEvent= ruleEntryEvent EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getEntryEventRule()); \r\n }\r\n pushFollow(FOLLOW_ruleEntryEvent_in_entryRuleEntryEvent4681);\r\n iv_ruleEntryEvent=ruleEntryEvent();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleEntryEvent; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleEntryEvent4691); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleGoalExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGoalExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1347:2: (iv_ruleGoalExpression= ruleGoalExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1348:2: iv_ruleGoalExpression= ruleGoalExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGoalExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGoalExpression_in_entryRuleGoalExpression2763);\r\n iv_ruleGoalExpression=ruleGoalExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGoalExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGoalExpression2773); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleAstFunction() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:733:1: ( ruleAstFunction EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:734:1: ruleAstFunction EOF\n {\n before(grammarAccess.getAstFunctionRule()); \n pushFollow(FOLLOW_ruleAstFunction_in_entryRuleAstFunction1501);\n ruleAstFunction();\n\n state._fsp--;\n\n after(grammarAccess.getAstFunctionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstFunction1508); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleOperation() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleOperation = null;\n\n\n try {\n // InternalMappingDsl.g:2705:50: (iv_ruleOperation= ruleOperation EOF )\n // InternalMappingDsl.g:2706:2: iv_ruleOperation= ruleOperation EOF\n {\n newCompositeNode(grammarAccess.getOperationRule()); \n pushFollow(FOLLOW_1);\n iv_ruleOperation=ruleOperation();\n\n state._fsp--;\n\n current =iv_ruleOperation; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleOperand() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2480:1: ( ruleOperand EOF )\r\n // InternalGo.g:2481:1: ruleOperand EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOperandRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleOperand();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOperandRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleArg() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArg = null;\n\n\n try {\n // InternalSafetyParser.g:5865:44: (iv_ruleArg= ruleArg EOF )\n // InternalSafetyParser.g:5866:2: iv_ruleArg= ruleArg EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getArgRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleArg=ruleArg();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleArg; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleFunctionDecl() throws RecognitionException {\r\n try {\r\n // InternalGo.g:205:1: ( ruleFunctionDecl EOF )\r\n // InternalGo.g:206:1: ruleFunctionDecl EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFunctionDeclRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleFunctionDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFunctionDeclRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMyDsl.g:127:47: (iv_ruleImport= ruleImport EOF )\n // InternalMyDsl.g:128:2: iv_ruleImport= ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleImport; \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleAstType() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2145:1: ( ruleAstType EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2146:1: ruleAstType EOF\n {\n before(grammarAccess.getAstTypeRule()); \n pushFollow(FOLLOW_ruleAstType_in_entryRuleAstType4514);\n ruleAstType();\n\n state._fsp--;\n\n after(grammarAccess.getAstTypeRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstType4521); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleCommand() throws RecognitionException {\n try {\n // InternalWh.g:204:1: ( ruleCommand EOF )\n // InternalWh.g:205:1: ruleCommand EOF\n {\n before(grammarAccess.getCommandRule()); \n pushFollow(FOLLOW_1);\n ruleCommand();\n\n state._fsp--;\n\n after(grammarAccess.getCommandRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleStatementExpression() throws RecognitionException {\n EObject current = null;\n int entryRuleStatementExpression_StartIndex = input.index();\n EObject iv_ruleStatementExpression = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 53) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2501:2: (iv_ruleStatementExpression= ruleStatementExpression EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:2502:2: iv_ruleStatementExpression= ruleStatementExpression EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getStatementExpressionRule()); \n }\n pushFollow(FOLLOW_ruleStatementExpression_in_entryRuleStatementExpression4951);\n iv_ruleStatementExpression=ruleStatementExpression();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleStatementExpression; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleStatementExpression4961); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 53, entryRuleStatementExpression_StartIndex); }\n }\n return current;\n }", "public final void entryRuleUpdate() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1036:1: ( ruleUpdate EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1037:1: ruleUpdate EOF\n {\n before(grammarAccess.getUpdateRule()); \n pushFollow(FOLLOW_ruleUpdate_in_entryRuleUpdate1925);\n ruleUpdate();\n\n state._fsp--;\n\n after(grammarAccess.getUpdateRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleUpdate1932); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleChannel() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1780:1: ( ruleChannel EOF )\r\n // InternalGo.g:1781:1: ruleChannel EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getChannelRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleChannel();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getChannelRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleEntry() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:74:2: ( ( ( rule__Entry__Alternatives ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:75:1: ( ( rule__Entry__Alternatives ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:75:1: ( ( rule__Entry__Alternatives ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:76:1: ( rule__Entry__Alternatives )\n {\n before(grammarAccess.getEntryAccess().getAlternatives()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:77:1: ( rule__Entry__Alternatives )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:77:2: rule__Entry__Alternatives\n {\n pushFollow(FollowSets000.FOLLOW_rule__Entry__Alternatives_in_ruleEntry94);\n rule__Entry__Alternatives();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getEntryAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleButton() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleButton = null;\n\n\n try {\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:1830:2: (iv_ruleButton= ruleButton EOF )\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:1831:2: iv_ruleButton= ruleButton EOF\n {\n newCompositeNode(grammarAccess.getButtonRule()); \n pushFollow(FOLLOW_ruleButton_in_entryRuleButton3600);\n iv_ruleButton=ruleButton();\n\n state._fsp--;\n\n current =iv_ruleButton; \n match(input,EOF,FOLLOW_EOF_in_entryRuleButton3610); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleFunction() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleFunction = null;\n\n\n try {\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:420:2: (iv_ruleFunction= ruleFunction EOF )\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:421:2: iv_ruleFunction= ruleFunction EOF\n {\n newCompositeNode(grammarAccess.getFunctionRule()); \n pushFollow(FOLLOW_ruleFunction_in_entryRuleFunction773);\n iv_ruleFunction=ruleFunction();\n\n state._fsp--;\n\n current =iv_ruleFunction; \n match(input,EOF,FOLLOW_EOF_in_entryRuleFunction783); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }" ]
[ "0.6838003", "0.63442314", "0.6337376", "0.60632306", "0.6018887", "0.6014679", "0.5951475", "0.58043927", "0.5746639", "0.5687275", "0.5686925", "0.56641513", "0.5634903", "0.56181437", "0.56033254", "0.5530859", "0.55140734", "0.55107504", "0.5503858", "0.55002356", "0.5483328", "0.54816794", "0.5441928", "0.5433119", "0.5401634", "0.53949773", "0.5393281", "0.5374229", "0.5365422", "0.5330626", "0.53295726", "0.53173035", "0.5316825", "0.5305631", "0.53019416", "0.5297843", "0.5296214", "0.5281923", "0.5277499", "0.5270682", "0.52329594", "0.52306414", "0.52257264", "0.52176744", "0.5206381", "0.52014494", "0.51976985", "0.5181994", "0.51786673", "0.5171064", "0.51635724", "0.51490706", "0.51487565", "0.5137735", "0.51104015", "0.5108429", "0.51039636", "0.51008177", "0.5100497", "0.5099868", "0.50958675", "0.5087251", "0.50842154", "0.5077664", "0.5072526", "0.50724345", "0.50663024", "0.50645584", "0.5061712", "0.5059894", "0.5053473", "0.5052128", "0.5047484", "0.50452775", "0.5041772", "0.50384223", "0.5036471", "0.50322676", "0.5029959", "0.5010517", "0.500909", "0.5004325", "0.49987063", "0.49903804", "0.49894294", "0.49891806", "0.49848872", "0.49834713", "0.49804646", "0.49734837", "0.4959723", "0.49429363", "0.49418747", "0.49359283", "0.49284455", "0.49274325", "0.49212217", "0.4918895", "0.4914337", "0.4914171" ]
0.7838505
0
$ANTLR end "entryRuleAction" $ANTLR start "ruleAction" InternalCsv.g:113:1: ruleAction : ( ( rule__Action__Alternatives ) ) ;
public final void ruleAction() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) ) // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) ) { // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) ) // InternalCsv.g:119:3: ( rule__Action__Alternatives ) { if ( state.backtracking==0 ) { before(grammarAccess.getActionAccess().getAlternatives()); } // InternalCsv.g:120:3: ( rule__Action__Alternatives ) // InternalCsv.g:120:4: rule__Action__Alternatives { pushFollow(FOLLOW_2); rule__Action__Alternatives(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getActionAccess().getAlternatives()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:280:1: ( ruleAction EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:281:1: ruleAction EOF\n {\n before(grammarAccess.getActionRule()); \n pushFollow(FOLLOW_ruleAction_in_entryRuleAction480);\n ruleAction();\n\n state._fsp--;\n\n after(grammarAccess.getActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAction487); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleEntry() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:74:2: ( ( ( rule__Entry__Alternatives ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:75:1: ( ( rule__Entry__Alternatives ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:75:1: ( ( rule__Entry__Alternatives ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:76:1: ( rule__Entry__Alternatives )\n {\n before(grammarAccess.getEntryAccess().getAlternatives()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:77:1: ( rule__Entry__Alternatives )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:77:2: rule__Entry__Alternatives\n {\n pushFollow(FollowSets000.FOLLOW_rule__Entry__Alternatives_in_ruleEntry94);\n rule__Entry__Alternatives();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getEntryAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAstAction() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1071:1: ( ruleAstAction EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1072:1: ruleAstAction EOF\n {\n before(grammarAccess.getAstActionRule()); \n pushFollow(FOLLOW_ruleAstAction_in_entryRuleAstAction2223);\n ruleAstAction();\n\n state._fsp--;\n\n after(grammarAccess.getAstActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstAction2230); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Entry__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:289:1: ( ( ruleApplication ) | ( ruleActivity ) )\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==11) ) {\n alt1=1;\n }\n else if ( (LA1_0==12) ) {\n alt1=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"285:1: rule__Entry__Alternatives : ( ( ruleApplication ) | ( ruleActivity ) );\", 1, 0, input);\n\n throw nvae;\n }\n switch (alt1) {\n case 1 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:290:1: ( ruleApplication )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:290:1: ( ruleApplication )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:291:1: ruleApplication\n {\n before(grammarAccess.getEntryAccess().getApplicationParserRuleCall_0()); \n pushFollow(FollowSets000.FOLLOW_ruleApplication_in_rule__Entry__Alternatives550);\n ruleApplication();\n _fsp--;\n\n after(grammarAccess.getEntryAccess().getApplicationParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:296:6: ( ruleActivity )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:296:6: ( ruleActivity )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:297:1: ruleActivity\n {\n before(grammarAccess.getEntryAccess().getActivityParserRuleCall_1()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_rule__Entry__Alternatives567);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getEntryAccess().getActivityParserRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleExpression() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:266:2: ( ( ( rule__Expression__Alternatives ) ) )\n // InternalBrowser.g:267:2: ( ( rule__Expression__Alternatives ) )\n {\n // InternalBrowser.g:267:2: ( ( rule__Expression__Alternatives ) )\n // InternalBrowser.g:268:3: ( rule__Expression__Alternatives )\n {\n before(grammarAccess.getExpressionAccess().getAlternatives()); \n // InternalBrowser.g:269:3: ( rule__Expression__Alternatives )\n // InternalBrowser.g:269:4: rule__Expression__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Expression__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getExpressionAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public HashMap<String,Rule> get_rules_to_action() throws Exception;", "public final void entryRuleActionProcess() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1864:1: ( ruleActionProcess EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1865:1: ruleActionProcess EOF\n {\n before(grammarAccess.getActionProcessRule()); \n pushFollow(FOLLOW_ruleActionProcess_in_entryRuleActionProcess3510);\n ruleActionProcess();\n\n state._fsp--;\n\n after(grammarAccess.getActionProcessRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleActionProcess3517); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleExpressions() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:908:2: ( ( ( rule__Expressions__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:909:1: ( ( rule__Expressions__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:909:1: ( ( rule__Expressions__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:910:1: ( rule__Expressions__Alternatives )\n {\n before(grammarAccess.getExpressionsAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:911:1: ( rule__Expressions__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:911:2: rule__Expressions__Alternatives\n {\n pushFollow(FOLLOW_rule__Expressions__Alternatives_in_ruleExpressions1687);\n rule__Expressions__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getExpressionsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void rule__Action__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2974:1: ( ( ( rule__Action__Alternatives_0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2975:1: ( ( rule__Action__Alternatives_0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2975:1: ( ( rule__Action__Alternatives_0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2976:1: ( rule__Action__Alternatives_0 )\n {\n before(grammarAccess.getActionAccess().getAlternatives_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2977:1: ( rule__Action__Alternatives_0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2977:2: rule__Action__Alternatives_0\n {\n pushFollow(FOLLOW_rule__Action__Alternatives_0_in_rule__Action__Group__0__Impl5860);\n rule__Action__Alternatives_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getActionAccess().getAlternatives_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Alternatives_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2114:1: ( ( ( rule__Action__Group_0_0__0 ) ) | ( ( rule__Action__Group_0_1__0 ) ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==RULE_LOWER) ) {\n int LA2_1 = input.LA(2);\n\n if ( (LA2_1==24) ) {\n alt2=1;\n }\n else if ( (LA2_1==25) ) {\n alt2=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 1, input);\n\n throw nvae;\n }\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2115:1: ( ( rule__Action__Group_0_0__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2115:1: ( ( rule__Action__Group_0_0__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2116:1: ( rule__Action__Group_0_0__0 )\n {\n before(grammarAccess.getActionAccess().getGroup_0_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2117:1: ( rule__Action__Group_0_0__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2117:2: rule__Action__Group_0_0__0\n {\n pushFollow(FOLLOW_rule__Action__Group_0_0__0_in_rule__Action__Alternatives_04018);\n rule__Action__Group_0_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getActionAccess().getGroup_0_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2121:6: ( ( rule__Action__Group_0_1__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2121:6: ( ( rule__Action__Group_0_1__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2122:1: ( rule__Action__Group_0_1__0 )\n {\n before(grammarAccess.getActionAccess().getGroup_0_1()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2123:1: ( rule__Action__Group_0_1__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2123:2: rule__Action__Group_0_1__0\n {\n pushFollow(FOLLOW_rule__Action__Group_0_1__0_in_rule__Action__Alternatives_04036);\n rule__Action__Group_0_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getActionAccess().getGroup_0_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleDeclaration() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1167:2: ( ( ( rule__Declaration__Alternatives ) ) )\r\n // InternalGo.g:1168:2: ( ( rule__Declaration__Alternatives ) )\r\n {\r\n // InternalGo.g:1168:2: ( ( rule__Declaration__Alternatives ) )\r\n // InternalGo.g:1169:3: ( rule__Declaration__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDeclarationAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:1170:3: ( rule__Declaration__Alternatives )\r\n // InternalGo.g:1170:4: rule__Declaration__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Declaration__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDeclarationAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRULE_ACTION() throws RecognitionException {\n try {\n int _type = RULE_ACTION;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalUniMapperGenerator.g:5123:13: ( RULE_NESTED_ACTION )\n // InternalUniMapperGenerator.g:5123:15: RULE_NESTED_ACTION\n {\n mRULE_NESTED_ACTION(); \n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void ruleInput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:166:2: ( ( ( rule__Input__Alternatives ) ) )\n // InternalWh.g:167:2: ( ( rule__Input__Alternatives ) )\n {\n // InternalWh.g:167:2: ( ( rule__Input__Alternatives ) )\n // InternalWh.g:168:3: ( rule__Input__Alternatives )\n {\n before(grammarAccess.getInputAccess().getAlternatives()); \n // InternalWh.g:169:3: ( rule__Input__Alternatives )\n // InternalWh.g:169:4: rule__Input__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Input__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleUpdate() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1052:2: ( ( ( rule__Update__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1053:1: ( ( rule__Update__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1053:1: ( ( rule__Update__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1054:1: ( rule__Update__Alternatives )\n {\n before(grammarAccess.getUpdateAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1055:1: ( rule__Update__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1055:2: rule__Update__Alternatives\n {\n pushFollow(FOLLOW_rule__Update__Alternatives_in_ruleUpdate1962);\n rule__Update__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getUpdateAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleElement() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2917:2: ( ( ( rule__Element__Alternatives ) ) )\r\n // InternalGo.g:2918:2: ( ( rule__Element__Alternatives ) )\r\n {\r\n // InternalGo.g:2918:2: ( ( rule__Element__Alternatives ) )\r\n // InternalGo.g:2919:3: ( rule__Element__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:2920:3: ( rule__Element__Alternatives )\r\n // InternalGo.g:2920:4: rule__Element__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Element__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleResult() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:817:2: ( ( ( rule__Result__Alternatives ) ) )\r\n // InternalGo.g:818:2: ( ( rule__Result__Alternatives ) )\r\n {\r\n // InternalGo.g:818:2: ( ( rule__Result__Alternatives ) )\r\n // InternalGo.g:819:3: ( rule__Result__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getResultAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:820:3: ( rule__Result__Alternatives )\r\n // InternalGo.g:820:4: rule__Result__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Result__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getResultAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleRefOpenAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) )\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n {\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives )\n // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__RefOpenAction__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "void applyAction(Action action, Session session) throws ActionException;", "public final void rule__AstAction__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12429:1: ( ( 'action' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12430:1: ( 'action' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12430:1: ( 'action' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12431:1: 'action'\n {\n before(grammarAccess.getAstActionAccess().getActionKeyword_3()); \n match(input,77,FOLLOW_77_in_rule__AstAction__Group__3__Impl25229); \n after(grammarAccess.getAstActionAccess().getActionKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleActivity() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:118:1: ( ruleActivity EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:119:1: ruleActivity EOF\n {\n before(grammarAccess.getActivityRule()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_entryRuleActivity181);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getActivityRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleActivity188); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleOperand() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2492:2: ( ( ( rule__Operand__Alternatives ) ) )\r\n // InternalGo.g:2493:2: ( ( rule__Operand__Alternatives ) )\r\n {\r\n // InternalGo.g:2493:2: ( ( rule__Operand__Alternatives ) )\r\n // InternalGo.g:2494:3: ( rule__Operand__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOperandAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:2495:3: ( rule__Operand__Alternatives )\r\n // InternalGo.g:2495:4: rule__Operand__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Operand__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOperandAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRULE_NESTED_ACTION() throws RecognitionException {\n try {\n // InternalUniMapperGenerator.g:5125:29: ( '___nested_action_' )\n // InternalUniMapperGenerator.g:5125:31: '___nested_action_'\n {\n match(\"___nested_action_\"); \n\n\n }\n\n }\n finally {\n }\n }", "public final void ruleStatement() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:167:2: ( ( ( rule__Statement__Alternatives ) ) )\r\n // InternalDroneScript.g:168:2: ( ( rule__Statement__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:168:2: ( ( rule__Statement__Alternatives ) )\r\n // InternalDroneScript.g:169:3: ( rule__Statement__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:170:3: ( rule__Statement__Alternatives )\r\n // InternalDroneScript.g:170:4: rule__Statement__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Statement__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleStatement() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1142:2: ( ( ( rule__Statement__Alternatives ) ) )\r\n // InternalGo.g:1143:2: ( ( rule__Statement__Alternatives ) )\r\n {\r\n // InternalGo.g:1143:2: ( ( rule__Statement__Alternatives ) )\r\n // InternalGo.g:1144:3: ( rule__Statement__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:1145:3: ( rule__Statement__Alternatives )\r\n // InternalGo.g:1145:4: rule__Statement__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Statement__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public AliasAction(Type actionType, String index, String alias, String filter) {\n\t\tthis.actionType = actionType;\n\t\tthis.index = index;\n\t\tthis.alias = alias;\n\t\tthis.filter = filter;\n\t}", "public final void rule__Element__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4250:1: ( ( ruleExpression ) | ( ruleLiteralValue ) )\r\n int alt44=2;\r\n int LA44_0 = input.LA(1);\r\n\r\n if ( ((LA44_0>=RULE_STRING && LA44_0<=RULE_FLOAT_LIT)||(LA44_0>=RULE_UNARY_OP && LA44_0<=RULE_BOOLEAN_LIT)||(LA44_0>=45 && LA44_0<=46)||LA44_0==48||(LA44_0>=51 && LA44_0<=52)||LA44_0==54||LA44_0==56||(LA44_0>=60 && LA44_0<=63)) ) {\r\n alt44=1;\r\n }\r\n else if ( (LA44_0==57) ) {\r\n alt44=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 44, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt44) {\r\n case 1 :\r\n // InternalGo.g:4251:2: ( ruleExpression )\r\n {\r\n // InternalGo.g:4251:2: ( ruleExpression )\r\n // InternalGo.g:4252:3: ruleExpression\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getExpressionParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getExpressionParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4257:2: ( ruleLiteralValue )\r\n {\r\n // InternalGo.g:4257:2: ( ruleLiteralValue )\r\n // InternalGo.g:4258:3: ruleLiteralValue\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getLiteralValueParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleLiteralValue();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getLiteralValueParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstActor__ActionsAssignment_10_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:23531:1: ( ( ruleAstAction ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:23532:1: ( ruleAstAction )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:23532:1: ( ruleAstAction )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:23533:1: ruleAstAction\n {\n before(grammarAccess.getAstActorAccess().getActionsAstActionParserRuleCall_10_2_0()); \n pushFollow(FOLLOW_ruleAstAction_in_rule__AstActor__ActionsAssignment_10_247185);\n ruleAstAction();\n\n state._fsp--;\n\n after(grammarAccess.getAstActorAccess().getActionsAstActionParserRuleCall_10_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleElement() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:102:2: ( ( ( rule__Element__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:103:1: ( ( rule__Element__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:103:1: ( ( rule__Element__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:104:1: ( rule__Element__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:105:1: ( rule__Element__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:105:2: rule__Element__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__Element__Alternatives_in_ruleElement160);\r\n rule__Element__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__ActionsAssignment_8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3682:1: ( ( ruleAction ) )\n // InternalCsv.g:3683:2: ( ruleAction )\n {\n // InternalCsv.g:3683:2: ( ruleAction )\n // InternalCsv.g:3684:3: ruleAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getActionsActionParserRuleCall_8_0()); \n }\n pushFollow(FOLLOW_2);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getActionsActionParserRuleCall_8_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setAction(String action) { this.action = action; }", "public final void ruleOpAdd() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:842:2: ( ( ( rule__OpAdd__Alternatives ) ) )\r\n // InternalDroneScript.g:843:2: ( ( rule__OpAdd__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:843:2: ( ( rule__OpAdd__Alternatives ) )\r\n // InternalDroneScript.g:844:3: ( rule__OpAdd__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:845:3: ( rule__OpAdd__Alternatives )\r\n // InternalDroneScript.g:845:4: rule__OpAdd__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpAdd__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public AliasAction(Type actionType, String index, String alias) {\n\t\tthis.actionType = actionType;\n\t\tthis.index = index;\n\t\tthis.alias = alias;\n\t}", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAction() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:296:2: ( ( ( rule__Action__Group__0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:297:1: ( ( rule__Action__Group__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:297:1: ( ( rule__Action__Group__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:298:1: ( rule__Action__Group__0 )\n {\n before(grammarAccess.getActionAccess().getGroup()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:299:1: ( rule__Action__Group__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:299:2: rule__Action__Group__0\n {\n pushFollow(FOLLOW_rule__Action__Group__0_in_ruleAction517);\n rule__Action__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getActionAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public void addAction(Action action) {\n\t\t\n\t}", "public final void ruleAstStatement() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1419:2: ( ( ( rule__AstStatement__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1420:1: ( ( rule__AstStatement__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1420:1: ( ( rule__AstStatement__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1421:1: ( rule__AstStatement__Alternatives )\n {\n before(grammarAccess.getAstStatementAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1422:1: ( rule__AstStatement__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1422:2: rule__AstStatement__Alternatives\n {\n pushFollow(FOLLOW_rule__AstStatement__Alternatives_in_ruleAstStatement2976);\n rule__AstStatement__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstStatementAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstAbstractActor() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:213:2: ( ( ( rule__AstAbstractActor__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:214:1: ( ( rule__AstAbstractActor__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:214:1: ( ( rule__AstAbstractActor__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:215:1: ( rule__AstAbstractActor__Alternatives )\n {\n before(grammarAccess.getAstAbstractActorAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:216:1: ( rule__AstAbstractActor__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:216:2: rule__AstAbstractActor__Alternatives\n {\n pushFollow(FOLLOW_rule__AstAbstractActor__Alternatives_in_ruleAstAbstractActor394);\n rule__AstAbstractActor__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstAbstractActorAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "void addAction(ActionDefinition actd) throws ResultException, DmcValueException {\n \t\n \t// We have to resolve the action at this point because we iterate over \n \t// references that it contains. This should be okay because the attributes\n \t// should have been loaded first\n \ttry {\n\t\t\tactd.resolveReferences(this,currentResolver);\n\t\t} catch (DmcValueExceptionSet e) {\n\t\t\te.printStackTrace();\n\t\t}\n \t\n if (checkAndAdd(actd.getObjectName(),actd,actionDefs) == false){\n \tResultException ex = new ResultException();\n \tex.addError(clashMsg(actd.getObjectName(),actd,actionDefs,\"action names\"));\n throw(ex);\n }\n\n if (checkAndAddDOT(actd.getDotName(),actd,globallyUniqueMAP,null) == false){\n \tResultException ex = new ResultException();\n \tex.addError(clashMsgDOT(actd.getObjectName(),actd,globallyUniqueMAP,\"definition names\"));\n \tthrow(ex);\n }\n \n if (actd.getObjectName().getNameString().length() > longestActionName)\n longestActionName = actd.getObjectName().getNameString().length();\n\n Iterator<AttributeDefinition> it = null;\n if ( (it = actd.getMayParm()) != null){\n while(it.hasNext()){\n AttributeDefinition ad = it.next();\n ad.addUsingAction(actd);\n }\n }\n\n if ( (it = actd.getMustParm()) != null){\n while(it.hasNext()){\n AttributeDefinition ad = it.next();\n ad.addUsingAction(actd);\n }\n }\n\n Iterator<ClassDefinition> cdit = null;\n if ( (cdit = actd.getAttachToClass()) != null){\n while(cdit.hasNext()){\n ClassDefinition cd = cdit.next();\n actd.addAttachedToClass(cd);\n }\n }\n \n if (extensions.size() > 0){\n \tfor(SchemaExtensionIF ext : extensions.values()){\n \t\text.addAction(actd);\n \t}\n }\n\n }", "public final EObject entryRuleGoal() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGoal = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:763:2: (iv_ruleGoal= ruleGoal EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:764:2: iv_ruleGoal= ruleGoal EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGoalRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGoal_in_entryRuleGoal1539);\r\n iv_ruleGoal=ruleGoal();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGoal; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGoal1549); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public void setRuleActionOverrides(java.util.Collection<RuleActionOverride> ruleActionOverrides) {\n if (ruleActionOverrides == null) {\n this.ruleActionOverrides = null;\n return;\n }\n\n this.ruleActionOverrides = new java.util.ArrayList<RuleActionOverride>(ruleActionOverrides);\n }", "public void add_rule(Rule rule) throws Exception;", "public final void ruleAstAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1083:2: ( ( ( rule__AstAction__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1084:1: ( ( rule__AstAction__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1084:1: ( ( rule__AstAction__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1085:1: ( rule__AstAction__Group__0 )\n {\n before(grammarAccess.getAstActionAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1086:1: ( rule__AstAction__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1086:2: rule__AstAction__Group__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group__0_in_ruleAstAction2256);\n rule__AstAction__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2157:2: ( ( ( rule__AstType__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2159:1: ( rule__AstType__Alternatives )\n {\n before(grammarAccess.getAstTypeAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:1: ( rule__AstType__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:2: rule__AstType__Alternatives\n {\n pushFollow(FOLLOW_rule__AstType__Alternatives_in_ruleAstType4547);\n rule__AstType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setAction(String action) {\n this.action = action;\n }", "public void setAction(String action) {\n this.action = action;\n }", "public final void rulePredicateAtomic() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:728:2: ( ( ( rule__PredicateAtomic__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:729:1: ( ( rule__PredicateAtomic__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:729:1: ( ( rule__PredicateAtomic__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:730:1: ( rule__PredicateAtomic__Alternatives )\n {\n before(grammarAccess.getPredicateAtomicAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:731:1: ( rule__PredicateAtomic__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:731:2: rule__PredicateAtomic__Alternatives\n {\n pushFollow(FOLLOW_rule__PredicateAtomic__Alternatives_in_rulePredicateAtomic1344);\n rule__PredicateAtomic__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getPredicateAtomicAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleOutput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:191:2: ( ( ( rule__Output__Alternatives ) ) )\n // InternalWh.g:192:2: ( ( rule__Output__Alternatives ) )\n {\n // InternalWh.g:192:2: ( ( rule__Output__Alternatives ) )\n // InternalWh.g:193:3: ( rule__Output__Alternatives )\n {\n before(grammarAccess.getOutputAccess().getAlternatives()); \n // InternalWh.g:194:3: ( rule__Output__Alternatives )\n // InternalWh.g:194:4: rule__Output__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Output__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getOutputAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleother() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:327:2: ( ( ( rule__Other__Alternatives ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:329:1: ( rule__Other__Alternatives )\n {\n before(grammarAccess.getOtherAccess().getAlternatives()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:1: ( rule__Other__Alternatives )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:2: rule__Other__Alternatives\n {\n pushFollow(FOLLOW_rule__Other__Alternatives_in_ruleother637);\n rule__Other__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getOtherAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setAction(String action) {\n\t\tthis.action = action;\n\t}", "public final void ruleOpAdd() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:671:2: ( ( ( rule__OpAdd__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:672:1: ( ( rule__OpAdd__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:672:1: ( ( rule__OpAdd__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:673:1: ( rule__OpAdd__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpAddAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:674:1: ( rule__OpAdd__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:674:2: rule__OpAdd__Alternatives\n {\n pushFollow(FOLLOW_rule__OpAdd__Alternatives_in_ruleOpAdd1367);\n rule__OpAdd__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpAddAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setAction (String action) {\n this.action = action;\n }", "public abstract void addAction(Context context, NAAction action);", "public final void entryRuleExpression() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2355:1: ( ruleExpression EOF )\r\n // InternalGo.g:2356:1: ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleOpCompare() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:742:2: ( ( ( rule__OpCompare__Alternatives ) ) )\r\n // InternalDroneScript.g:743:2: ( ( rule__OpCompare__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:743:2: ( ( rule__OpCompare__Alternatives ) )\r\n // InternalDroneScript.g:744:3: ( rule__OpCompare__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:745:3: ( rule__OpCompare__Alternatives )\r\n // InternalDroneScript.g:745:4: rule__OpCompare__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpCompare__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleArguments() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:800:2: ( ( ( rule__Arguments__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:801:1: ( ( rule__Arguments__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:801:1: ( ( rule__Arguments__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:802:1: ( rule__Arguments__Alternatives )\n {\n before(grammarAccess.getArgumentsAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:803:1: ( rule__Arguments__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:803:2: rule__Arguments__Alternatives\n {\n pushFollow(FOLLOW_rule__Arguments__Alternatives_in_ruleArguments1482);\n rule__Arguments__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getArgumentsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public void setAction(String action) {\n this.action = action == null ? null : action.trim();\n }", "public final void entryRuleChoice() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1720:1: ( ruleChoice EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1721:1: ruleChoice EOF\n {\n before(grammarAccess.getChoiceRule()); \n pushFollow(FOLLOW_ruleChoice_in_entryRuleChoice3234);\n ruleChoice();\n\n state._fsp--;\n\n after(grammarAccess.getChoiceRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleChoice3241); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public MapReduceToCollectionOperation action(final String action) {\n notNull(\"action\", action);\n isTrue(\"action must be one of: \\\"replace\\\", \\\"merge\\\", \\\"reduce\\\"\", VALID_ACTIONS.contains(action));\n this.action = action;\n return this;\n }", "public final void ruleOpAdd() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:754:2: ( ( ( rule__OpAdd__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:755:1: ( ( rule__OpAdd__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:755:1: ( ( rule__OpAdd__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:756:1: ( rule__OpAdd__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:757:1: ( rule__OpAdd__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:757:2: rule__OpAdd__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpAdd__Alternatives_in_ruleOpAdd1547);\r\n rule__OpAdd__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleType() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:367:2: ( ( ( rule__Type__Alternatives ) ) )\r\n // InternalGo.g:368:2: ( ( rule__Type__Alternatives ) )\r\n {\r\n // InternalGo.g:368:2: ( ( rule__Type__Alternatives ) )\r\n // InternalGo.g:369:3: ( rule__Type__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:370:3: ( rule__Type__Alternatives )\r\n // InternalGo.g:370:4: rule__Type__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Type__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private void appendAction(int action) {\n \t\tContext context = Settlers.getInstance().getContext();\n \t\tappendAction(context.getString(action));\n \t}", "public final void rule__ActionProcess__ActionAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:10656:1: ( ( ruleAction ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:10657:1: ( ruleAction )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:10657:1: ( ruleAction )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:10658:1: ruleAction\n {\n before(grammarAccess.getActionProcessAccess().getActionActionParserRuleCall_1_0()); \n pushFollow(FOLLOW_ruleAction_in_rule__ActionProcess__ActionAssignment_120979);\n ruleAction();\n\n state._fsp--;\n\n after(grammarAccess.getActionProcessAccess().getActionActionParserRuleCall_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public EmptyRuleActionImpl() {}", "public final void ruleOpOther() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:698:2: ( ( ( rule__OpOther__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:699:1: ( ( rule__OpOther__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:699:1: ( ( rule__OpOther__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:700:1: ( rule__OpOther__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:701:1: ( rule__OpOther__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:701:2: rule__OpOther__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Alternatives_in_ruleOpOther1427);\r\n rule__OpOther__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleExpressionStmt() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1730:1: ( ruleExpressionStmt EOF )\r\n // InternalGo.g:1731:1: ruleExpressionStmt EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionStmtRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpressionStmt();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionStmtRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleOpOther() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:615:2: ( ( ( rule__OpOther__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:616:1: ( ( rule__OpOther__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:616:1: ( ( rule__OpOther__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:617:1: ( rule__OpOther__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:618:1: ( rule__OpOther__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:618:2: rule__OpOther__Alternatives\n {\n pushFollow(FOLLOW_rule__OpOther__Alternatives_in_ruleOpOther1247);\n rule__OpOther__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleCommands() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:241:2: ( ( ( rule__Commands__Alternatives ) ) )\n // InternalWh.g:242:2: ( ( rule__Commands__Alternatives ) )\n {\n // InternalWh.g:242:2: ( ( rule__Commands__Alternatives ) )\n // InternalWh.g:243:3: ( rule__Commands__Alternatives )\n {\n before(grammarAccess.getCommandsAccess().getAlternatives()); \n // InternalWh.g:244:3: ( rule__Commands__Alternatives )\n // InternalWh.g:244:4: rule__Commands__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Commands__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getCommandsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleEntry() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:62:1: ( ruleEntry EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:63:1: ruleEntry EOF\n {\n before(grammarAccess.getEntryRule()); \n pushFollow(FollowSets000.FOLLOW_ruleEntry_in_entryRuleEntry61);\n ruleEntry();\n _fsp--;\n\n after(grammarAccess.getEntryRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleEntry68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void setAction(String action);", "public final void rule__Action__UpdatesAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9843:1: ( ( ruleUpdates ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9844:1: ( ruleUpdates )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9844:1: ( ruleUpdates )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9845:1: ruleUpdates\n {\n before(grammarAccess.getActionAccess().getUpdatesUpdatesParserRuleCall_3_0()); \n pushFollow(FOLLOW_ruleUpdates_in_rule__Action__UpdatesAssignment_319306);\n ruleUpdates();\n\n state._fsp--;\n\n after(grammarAccess.getActionAccess().getUpdatesUpdatesParserRuleCall_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:91:2: ( ( ( rule__Type__Alternatives ) ) )\n // InternalMyDsl.g:92:2: ( ( rule__Type__Alternatives ) )\n {\n // InternalMyDsl.g:92:2: ( ( rule__Type__Alternatives ) )\n // InternalMyDsl.g:93:3: ( rule__Type__Alternatives )\n {\n before(grammarAccess.getTypeAccess().getAlternatives()); \n // InternalMyDsl.g:94:3: ( rule__Type__Alternatives )\n // InternalMyDsl.g:94:4: rule__Type__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Type__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private String convertAction(String action) {\n\t\treturn action.toLowerCase();\n\t}", "public final EObject entryRuleGoalExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGoalExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1347:2: (iv_ruleGoalExpression= ruleGoalExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1348:2: iv_ruleGoalExpression= ruleGoalExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGoalExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGoalExpression_in_entryRuleGoalExpression2763);\r\n iv_ruleGoalExpression=ruleGoalExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGoalExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGoalExpression2773); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleStatement() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1130:1: ( ruleStatement EOF )\r\n // InternalGo.g:1131:1: ruleStatement EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleStatement();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleOpOther() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:792:2: ( ( ( rule__OpOther__Alternatives ) ) )\r\n // InternalDroneScript.g:793:2: ( ( rule__OpOther__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:793:2: ( ( rule__OpOther__Alternatives ) )\r\n // InternalDroneScript.g:794:3: ( rule__OpOther__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:795:3: ( rule__OpOther__Alternatives )\r\n // InternalDroneScript.g:795:4: rule__OpOther__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleExpressionList() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2330:1: ( ruleExpressionList EOF )\r\n // InternalGo.g:2331:1: ruleExpressionList EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionListRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpressionList();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionListRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__AstActor__Group__10__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7796:1: ( ( ( rule__AstActor__Alternatives_10 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7797:1: ( ( rule__AstActor__Alternatives_10 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7797:1: ( ( rule__AstActor__Alternatives_10 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7798:1: ( rule__AstActor__Alternatives_10 )*\n {\n before(grammarAccess.getAstActorAccess().getAlternatives_10()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7799:1: ( rule__AstActor__Alternatives_10 )*\n loop65:\n do {\n int alt65=2;\n int LA65_0 = input.LA(1);\n\n if ( (LA65_0==RULE_ID||(LA65_0>=38 && LA65_0<=45)||LA65_0==58||(LA65_0>=71 && LA65_0<=72)||(LA65_0>=74 && LA65_0<=75)||LA65_0==77||(LA65_0>=80 && LA65_0<=81)||LA65_0==91) ) {\n alt65=1;\n }\n\n\n switch (alt65) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7799:2: rule__AstActor__Alternatives_10\n \t {\n \t pushFollow(FOLLOW_rule__AstActor__Alternatives_10_in_rule__AstActor__Group__10__Impl16115);\n \t rule__AstActor__Alternatives_10();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop65;\n }\n } while (true);\n\n after(grammarAccess.getAstActorAccess().getAlternatives_10()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Lines__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:956:1: ( ( ruleDeclaration ) | ( ruleAffectation ) | ( ruleFunctionCall ) | ( ruleCheckContainsLink ) | ( ruleCheckContainsText ) | ( ruleFindProperty ) | ( ruleFindFirstProperty ) | ( ruleFindSecondProperty ) | ( ruleGetTitle ) )\n int alt3=9;\n alt3 = dfa3.predict(input);\n switch (alt3) {\n case 1 :\n // InternalBrowser.g:957:2: ( ruleDeclaration )\n {\n // InternalBrowser.g:957:2: ( ruleDeclaration )\n // InternalBrowser.g:958:3: ruleDeclaration\n {\n before(grammarAccess.getLinesAccess().getDeclarationParserRuleCall_0()); \n pushFollow(FOLLOW_2);\n ruleDeclaration();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getDeclarationParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // InternalBrowser.g:963:2: ( ruleAffectation )\n {\n // InternalBrowser.g:963:2: ( ruleAffectation )\n // InternalBrowser.g:964:3: ruleAffectation\n {\n before(grammarAccess.getLinesAccess().getAffectationParserRuleCall_1()); \n pushFollow(FOLLOW_2);\n ruleAffectation();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getAffectationParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // InternalBrowser.g:969:2: ( ruleFunctionCall )\n {\n // InternalBrowser.g:969:2: ( ruleFunctionCall )\n // InternalBrowser.g:970:3: ruleFunctionCall\n {\n before(grammarAccess.getLinesAccess().getFunctionCallParserRuleCall_2()); \n pushFollow(FOLLOW_2);\n ruleFunctionCall();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFunctionCallParserRuleCall_2()); \n\n }\n\n\n }\n break;\n case 4 :\n // InternalBrowser.g:975:2: ( ruleCheckContainsLink )\n {\n // InternalBrowser.g:975:2: ( ruleCheckContainsLink )\n // InternalBrowser.g:976:3: ruleCheckContainsLink\n {\n before(grammarAccess.getLinesAccess().getCheckContainsLinkParserRuleCall_3()); \n pushFollow(FOLLOW_2);\n ruleCheckContainsLink();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getCheckContainsLinkParserRuleCall_3()); \n\n }\n\n\n }\n break;\n case 5 :\n // InternalBrowser.g:981:2: ( ruleCheckContainsText )\n {\n // InternalBrowser.g:981:2: ( ruleCheckContainsText )\n // InternalBrowser.g:982:3: ruleCheckContainsText\n {\n before(grammarAccess.getLinesAccess().getCheckContainsTextParserRuleCall_4()); \n pushFollow(FOLLOW_2);\n ruleCheckContainsText();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getCheckContainsTextParserRuleCall_4()); \n\n }\n\n\n }\n break;\n case 6 :\n // InternalBrowser.g:987:2: ( ruleFindProperty )\n {\n // InternalBrowser.g:987:2: ( ruleFindProperty )\n // InternalBrowser.g:988:3: ruleFindProperty\n {\n before(grammarAccess.getLinesAccess().getFindPropertyParserRuleCall_5()); \n pushFollow(FOLLOW_2);\n ruleFindProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindPropertyParserRuleCall_5()); \n\n }\n\n\n }\n break;\n case 7 :\n // InternalBrowser.g:993:2: ( ruleFindFirstProperty )\n {\n // InternalBrowser.g:993:2: ( ruleFindFirstProperty )\n // InternalBrowser.g:994:3: ruleFindFirstProperty\n {\n before(grammarAccess.getLinesAccess().getFindFirstPropertyParserRuleCall_6()); \n pushFollow(FOLLOW_2);\n ruleFindFirstProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindFirstPropertyParserRuleCall_6()); \n\n }\n\n\n }\n break;\n case 8 :\n // InternalBrowser.g:999:2: ( ruleFindSecondProperty )\n {\n // InternalBrowser.g:999:2: ( ruleFindSecondProperty )\n // InternalBrowser.g:1000:3: ruleFindSecondProperty\n {\n before(grammarAccess.getLinesAccess().getFindSecondPropertyParserRuleCall_7()); \n pushFollow(FOLLOW_2);\n ruleFindSecondProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindSecondPropertyParserRuleCall_7()); \n\n }\n\n\n }\n break;\n case 9 :\n // InternalBrowser.g:1005:2: ( ruleGetTitle )\n {\n // InternalBrowser.g:1005:2: ( ruleGetTitle )\n // InternalBrowser.g:1006:3: ruleGetTitle\n {\n before(grammarAccess.getLinesAccess().getGetTitleParserRuleCall_8()); \n pushFollow(FOLLOW_2);\n ruleGetTitle();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getGetTitleParserRuleCall_8()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void executeAction( String actionInfo );", "public final void ruleAstExpressionLiteral() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1951:2: ( ( ( rule__AstExpressionLiteral__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1952:1: ( ( rule__AstExpressionLiteral__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1952:1: ( ( rule__AstExpressionLiteral__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1953:1: ( rule__AstExpressionLiteral__Alternatives )\n {\n before(grammarAccess.getAstExpressionLiteralAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1954:1: ( rule__AstExpressionLiteral__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1954:2: rule__AstExpressionLiteral__Alternatives\n {\n pushFollow(FOLLOW_rule__AstExpressionLiteral__Alternatives_in_ruleAstExpressionLiteral4116);\n rule__AstExpressionLiteral__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstExpressionLiteralAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAliasDecl() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1630:1: ( ruleAliasDecl EOF )\r\n // InternalGo.g:1631:1: ruleAliasDecl EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getAliasDeclRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleAliasDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getAliasDeclRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__Element__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2172:1: ( ( ruleKonto ) | ( ruleBuchung ) | ( ruleKontakt ) | ( ruleBuchungsintervall ) | ( ruleKategorie ) )\r\n int alt2=5;\r\n switch ( input.LA(1) ) {\r\n case 73:\r\n {\r\n alt2=1;\r\n }\r\n break;\r\n case 88:\r\n {\r\n alt2=2;\r\n }\r\n break;\r\n case 94:\r\n {\r\n alt2=3;\r\n }\r\n break;\r\n case 86:\r\n {\r\n alt2=4;\r\n }\r\n break;\r\n case 85:\r\n {\r\n alt2=5;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 2, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt2) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2173:1: ( ruleKonto )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2173:1: ( ruleKonto )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2174:1: ruleKonto\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getKontoParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleKonto_in_rule__Element__Alternatives4562);\r\n ruleKonto();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getKontoParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2179:6: ( ruleBuchung )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2179:6: ( ruleBuchung )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2180:1: ruleBuchung\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getBuchungParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleBuchung_in_rule__Element__Alternatives4579);\r\n ruleBuchung();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getBuchungParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2185:6: ( ruleKontakt )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2185:6: ( ruleKontakt )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2186:1: ruleKontakt\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getKontaktParserRuleCall_2()); \r\n }\r\n pushFollow(FOLLOW_ruleKontakt_in_rule__Element__Alternatives4596);\r\n ruleKontakt();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getKontaktParserRuleCall_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 4 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2191:6: ( ruleBuchungsintervall )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2191:6: ( ruleBuchungsintervall )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2192:1: ruleBuchungsintervall\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getBuchungsintervallParserRuleCall_3()); \r\n }\r\n pushFollow(FOLLOW_ruleBuchungsintervall_in_rule__Element__Alternatives4613);\r\n ruleBuchungsintervall();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getBuchungsintervallParserRuleCall_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 5 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2197:6: ( ruleKategorie )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2197:6: ( ruleKategorie )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2198:1: ruleKategorie\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getKategorieParserRuleCall_4()); \r\n }\r\n pushFollow(FOLLOW_ruleKategorie_in_rule__Element__Alternatives4630);\r\n ruleKategorie();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getKategorieParserRuleCall_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "Builder addPotentialAction(Action value);", "public boolean addAction(Action<E> ac);", "void noteActionEvaluationStarted(ActionLookupData actionLookupData, Action action);", "public final void mRULE_ACTION_CHAR_LITERAL() throws RecognitionException {\n try {\n // InternalUniMapperGenerator.g:5129:35: ( '\\\\'' ( RULE_ACTION_ESC | ~ ( ( '\\\\\\\\' | '\\\\'' ) ) )* '\\\\'' )\n // InternalUniMapperGenerator.g:5129:37: '\\\\'' ( RULE_ACTION_ESC | ~ ( ( '\\\\\\\\' | '\\\\'' ) ) )* '\\\\''\n {\n match('\\''); \n // InternalUniMapperGenerator.g:5129:42: ( RULE_ACTION_ESC | ~ ( ( '\\\\\\\\' | '\\\\'' ) ) )*\n loop10:\n do {\n int alt10=3;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0=='\\\\') ) {\n alt10=1;\n }\n else if ( ((LA10_0>='\\u0000' && LA10_0<='&')||(LA10_0>='(' && LA10_0<='[')||(LA10_0>=']' && LA10_0<='\\uFFFF')) ) {\n alt10=2;\n }\n\n\n switch (alt10) {\n \tcase 1 :\n \t // InternalUniMapperGenerator.g:5129:43: RULE_ACTION_ESC\n \t {\n \t mRULE_ACTION_ESC(); \n\n \t }\n \t break;\n \tcase 2 :\n \t // InternalUniMapperGenerator.g:5129:59: ~ ( ( '\\\\\\\\' | '\\\\'' ) )\n \t {\n \t if ( (input.LA(1)>='\\u0000' && input.LA(1)<='&')||(input.LA(1)>='(' && input.LA(1)<='[')||(input.LA(1)>=']' && input.LA(1)<='\\uFFFF') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop10;\n }\n } while (true);\n\n match('\\''); \n\n }\n\n }\n finally {\n }\n }", "public final ANTLRv3Parser.exceptionHandler_return exceptionHandler() throws RecognitionException {\r\n ANTLRv3Parser.exceptionHandler_return retval = new ANTLRv3Parser.exceptionHandler_return();\r\n retval.start = input.LT(1);\r\n\r\n\r\n CommonTree root_0 = null;\r\n\r\n Token string_literal89=null;\r\n Token ARG_ACTION90=null;\r\n Token ACTION91=null;\r\n\r\n CommonTree string_literal89_tree=null;\r\n CommonTree ARG_ACTION90_tree=null;\r\n CommonTree ACTION91_tree=null;\r\n RewriteRuleTokenStream stream_81=new RewriteRuleTokenStream(adaptor,\"token 81\");\r\n RewriteRuleTokenStream stream_ACTION=new RewriteRuleTokenStream(adaptor,\"token ACTION\");\r\n RewriteRuleTokenStream stream_ARG_ACTION=new RewriteRuleTokenStream(adaptor,\"token ARG_ACTION\");\r\n\r\n try {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:226:5: ( 'catch' ARG_ACTION ACTION -> ^( 'catch' ARG_ACTION ACTION ) )\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:226:10: 'catch' ARG_ACTION ACTION\r\n {\r\n string_literal89=(Token)match(input,81,FOLLOW_81_in_exceptionHandler1438); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_81.add(string_literal89);\r\n\r\n\r\n ARG_ACTION90=(Token)match(input,ARG_ACTION,FOLLOW_ARG_ACTION_in_exceptionHandler1440); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_ARG_ACTION.add(ARG_ACTION90);\r\n\r\n\r\n ACTION91=(Token)match(input,ACTION,FOLLOW_ACTION_in_exceptionHandler1442); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_ACTION.add(ACTION91);\r\n\r\n\r\n // AST REWRITE\r\n // elements: ARG_ACTION, 81, ACTION\r\n // token labels: \r\n // rule labels: retval\r\n // token list labels: \r\n // rule list labels: \r\n // wildcard labels: \r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = root_0;\r\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\r\n\r\n root_0 = (CommonTree)adaptor.nil();\r\n // 226:36: -> ^( 'catch' ARG_ACTION ACTION )\r\n {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:226:39: ^( 'catch' ARG_ACTION ACTION )\r\n {\r\n CommonTree root_1 = (CommonTree)adaptor.nil();\r\n root_1 = (CommonTree)adaptor.becomeRoot(\r\n stream_81.nextNode()\r\n , root_1);\r\n\r\n adaptor.addChild(root_1, \r\n stream_ARG_ACTION.nextNode()\r\n );\r\n\r\n adaptor.addChild(root_1, \r\n stream_ACTION.nextNode()\r\n );\r\n\r\n adaptor.addChild(root_0, root_1);\r\n }\r\n\r\n }\r\n\r\n\r\n retval.tree = root_0;\r\n }\r\n\r\n }\r\n\r\n retval.stop = input.LT(-1);\r\n\r\n\r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = (CommonTree)adaptor.rulePostProcessing(root_0);\r\n adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n \tretval.tree = (CommonTree)adaptor.errorNode(input, retval.start, input.LT(-1), re);\r\n\r\n }\r\n\r\n finally {\r\n \t// do for sure before leaving\r\n }\r\n return retval;\r\n }", "public final void ruleIDENTIFIER() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:267:2: ( ( ( rule__IDENTIFIER__Alternatives ) ) )\r\n // InternalGo.g:268:2: ( ( rule__IDENTIFIER__Alternatives ) )\r\n {\r\n // InternalGo.g:268:2: ( ( rule__IDENTIFIER__Alternatives ) )\r\n // InternalGo.g:269:3: ( rule__IDENTIFIER__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIDENTIFIERAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:270:3: ( rule__IDENTIFIER__Alternatives )\r\n // InternalGo.g:270:4: rule__IDENTIFIER__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IDENTIFIER__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIDENTIFIERAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void addActionChoice () {\r\n\t\tactionChoices.add(new ActionChoice());\r\n\t}", "@SkylarkModule(\n name = \"feedback.action\",\n doc = \"An action that will be executed in a feedback workflow or on_finish hook\",\n category = SkylarkModuleCategory.TOP_LEVEL_TYPE,\n documented = false)\npublic interface Action {\n\n void run(SkylarkContext<?> context) throws ValidationException, RepoException;\n\n String getName();\n\n /** Returns a key-value ist of the options the action was instantiated with. */\n ImmutableSetMultimap<String, String> describe();\n}", "public final void entryRuleExpression2() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2380:1: ( ruleExpression2 EOF )\r\n // InternalGo.g:2381:1: ruleExpression2 EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpression2Rule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpression2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpression2Rule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public abstract ActionInMatch act();", "public final void ruleOpCompare() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:642:2: ( ( ( rule__OpCompare__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:643:1: ( ( rule__OpCompare__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:643:1: ( ( rule__OpCompare__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:644:1: ( rule__OpCompare__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:645:1: ( rule__OpCompare__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:645:2: rule__OpCompare__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpCompare__Alternatives_in_ruleOpCompare1307);\r\n rule__OpCompare__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAbstractActor__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2614:1: ( ( ruleAstActor ) | ( ruleAstNetwork ) | ( ruleAstExternalActor ) )\n int alt7=3;\n switch ( input.LA(1) ) {\n case 70:\n {\n alt7=1;\n }\n break;\n case 57:\n {\n alt7=2;\n }\n break;\n case 68:\n {\n alt7=3;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n\n switch (alt7) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2615:1: ( ruleAstActor )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2615:1: ( ruleAstActor )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2616:1: ruleAstActor\n {\n before(grammarAccess.getAstAbstractActorAccess().getAstActorParserRuleCall_0()); \n pushFollow(FOLLOW_ruleAstActor_in_rule__AstAbstractActor__Alternatives5583);\n ruleAstActor();\n\n state._fsp--;\n\n after(grammarAccess.getAstAbstractActorAccess().getAstActorParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2621:6: ( ruleAstNetwork )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2621:6: ( ruleAstNetwork )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2622:1: ruleAstNetwork\n {\n before(grammarAccess.getAstAbstractActorAccess().getAstNetworkParserRuleCall_1()); \n pushFollow(FOLLOW_ruleAstNetwork_in_rule__AstAbstractActor__Alternatives5600);\n ruleAstNetwork();\n\n state._fsp--;\n\n after(grammarAccess.getAstAbstractActorAccess().getAstNetworkParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2627:6: ( ruleAstExternalActor )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2627:6: ( ruleAstExternalActor )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2628:1: ruleAstExternalActor\n {\n before(grammarAccess.getAstAbstractActorAccess().getAstExternalActorParserRuleCall_2()); \n pushFollow(FOLLOW_ruleAstExternalActor_in_rule__AstAbstractActor__Alternatives5617);\n ruleAstExternalActor();\n\n state._fsp--;\n\n after(grammarAccess.getAstAbstractActorAccess().getAstExternalActorParserRuleCall_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionAdditive__OperatorAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25355:1: ( ( ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25356:1: ( ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25356:1: ( ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25357:1: ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 )\n {\n before(grammarAccess.getAstExpressionAdditiveAccess().getOperatorAlternatives_1_1_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25358:1: ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25358:2: rule__AstExpressionAdditive__OperatorAlternatives_1_1_0\n {\n pushFollow(FOLLOW_rule__AstExpressionAdditive__OperatorAlternatives_1_1_0_in_rule__AstExpressionAdditive__OperatorAssignment_1_150941);\n rule__AstExpressionAdditive__OperatorAlternatives_1_1_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstExpressionAdditiveAccess().getOperatorAlternatives_1_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "interface Action {\n /**\n * Executes the action. Called upon state entry or exit by an automaton.\n */\n void execute();\n }", "public final EObject entryRuleRule() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRule = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2736:2: (iv_ruleRule= ruleRule EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2737:2: iv_ruleRule= ruleRule EOF\n {\n newCompositeNode(grammarAccess.getRuleRule()); \n pushFollow(FOLLOW_ruleRule_in_entryRuleRule6136);\n iv_ruleRule=ruleRule();\n\n state._fsp--;\n\n current =iv_ruleRule; \n match(input,EOF,FOLLOW_EOF_in_entryRuleRule6146); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }" ]
[ "0.6681963", "0.6466339", "0.6366309", "0.6365635", "0.61555374", "0.6082344", "0.58327234", "0.5786186", "0.54872996", "0.5465111", "0.54292756", "0.53872836", "0.5349074", "0.5312789", "0.53011274", "0.5201283", "0.5199306", "0.5194412", "0.5175901", "0.5173956", "0.5162435", "0.51214063", "0.5108609", "0.5087711", "0.5077175", "0.5071987", "0.5038283", "0.50248593", "0.49827513", "0.4981653", "0.49764907", "0.49445546", "0.49283224", "0.4927613", "0.49080798", "0.48996225", "0.48849845", "0.48813286", "0.4873881", "0.48715174", "0.48701656", "0.48509347", "0.4845978", "0.48379272", "0.48321143", "0.4828391", "0.4828391", "0.4827214", "0.4825595", "0.48226973", "0.48189583", "0.48096618", "0.48002166", "0.47936895", "0.47640222", "0.47564137", "0.4753292", "0.47368255", "0.4734349", "0.47323993", "0.47238666", "0.47214097", "0.47129983", "0.47007182", "0.47005245", "0.4681724", "0.4674572", "0.46675956", "0.46472514", "0.46468762", "0.46464294", "0.46429422", "0.4635596", "0.4632688", "0.4629024", "0.46204573", "0.4603094", "0.4599401", "0.45987546", "0.45939967", "0.45886588", "0.45885736", "0.4588163", "0.458688", "0.45715028", "0.45626274", "0.455717", "0.45509347", "0.4544187", "0.45434976", "0.45279154", "0.45187464", "0.4514143", "0.45035148", "0.45026407", "0.45026383", "0.45012662", "0.45007345", "0.45000157", "0.44994304" ]
0.8036777
0
$ANTLR end "ruleAction" $ANTLR start "entryRuleOpenCSV" InternalCsv.g:129:1: entryRuleOpenCSV : ruleOpenCSV EOF ;
public final void entryRuleOpenCSV() throws RecognitionException { try { // InternalCsv.g:130:1: ( ruleOpenCSV EOF ) // InternalCsv.g:131:1: ruleOpenCSV EOF { if ( state.backtracking==0 ) { before(grammarAccess.getOpenCSVRule()); } pushFollow(FOLLOW_1); ruleOpenCSV(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getOpenCSVRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleSaveCSV() throws RecognitionException {\n try {\n // InternalCsv.g:255:1: ( ruleSaveCSV EOF )\n // InternalCsv.g:256:1: ruleSaveCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__PrintCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3791:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n // InternalCsv.g:3793:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3794:3: ( RULE_ID )\n // InternalCsv.g:3795:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3848:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n // InternalCsv.g:3850:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3851:3: ( RULE_ID )\n // InternalCsv.g:3852:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "protected AbstractCSVParser(TokenStream input) {\n super(input);\n }", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3742:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3743:2: ( RULE_STRING )\n {\n // InternalCsv.g:3743:2: ( RULE_STRING )\n // InternalCsv.g:3744:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleActivity() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:118:1: ( ruleActivity EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:119:1: ruleActivity EOF\n {\n before(grammarAccess.getActivityRule()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_entryRuleActivity181);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getActivityRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleActivity188); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:280:1: ( ruleAction EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:281:1: ruleAction EOF\n {\n before(grammarAccess.getActionRule()); \n pushFollow(FOLLOW_ruleAction_in_entryRuleAction480);\n ruleAction();\n\n state._fsp--;\n\n after(grammarAccess.getActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAction487); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAstAction() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1071:1: ( ruleAstAction EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1072:1: ruleAstAction EOF\n {\n before(grammarAccess.getAstActionRule()); \n pushFollow(FOLLOW_ruleAstAction_in_entryRuleAstAction2223);\n ruleAstAction();\n\n state._fsp--;\n\n after(grammarAccess.getAstActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstAction2230); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3810:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n // InternalCsv.g:3812:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3813:3: ( RULE_ID )\n // InternalCsv.g:3814:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleRefOpenAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) )\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n {\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives )\n // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__RefOpenAction__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "protected AbstractCSVParser(TokenStream input, RecognizerSharedState state) {\n super(input, state);\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n DBO consume(String csv) throws TransformerException;", "public final void rule__NbCol__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3829:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n // InternalCsv.g:3831:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3832:3: ( RULE_ID )\n // InternalCsv.g:3833:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__NameAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3727:1: ( ( RULE_ID ) )\n // InternalCsv.g:3728:2: ( RULE_ID )\n {\n // InternalCsv.g:3728:2: ( RULE_ID )\n // InternalCsv.g:3729:3: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getNameIDTerminalRuleCall_2_0()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getNameIDTerminalRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__HeaderAssignment_7_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3772:1: ( ( ( 'true' ) ) )\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n {\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n // InternalCsv.g:3774:3: ( 'true' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n // InternalCsv.g:3775:3: ( 'true' )\n // InternalCsv.g:3776:4: 'true'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n match(input,40,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJoinOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJoinOperator = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:537:2: (iv_ruleJoinOperator= ruleJoinOperator EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:538:2: iv_ruleJoinOperator= ruleJoinOperator EOF\n {\n newCompositeNode(grammarAccess.getJoinOperatorRule()); \n pushFollow(FOLLOW_ruleJoinOperator_in_entryRuleJoinOperator1182);\n iv_ruleJoinOperator=ruleJoinOperator();\n\n state._fsp--;\n\n current =iv_ruleJoinOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleJoinOperator1192); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalCsv.g:55:1: ( ruleModel EOF )\n // InternalCsv.g:56:1: ruleModel EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelRule()); \n }\n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1261:1: ( ( 'read' ) )\n // InternalCsv.g:1262:1: ( 'read' )\n {\n // InternalCsv.g:1262:1: ( 'read' )\n // InternalCsv.g:1263:2: 'read'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n match(input,20,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:229:1: ( ruleImport EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:230:1: ruleImport EOF\n {\n before(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport421);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getImportRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public static void main(String[] args) throws IOException {\n\t\t\n\t\tFileManager csv=new FileManager();\n\t\t\n\t\tcsv.readListOfFiles();\n\t\tcsv.readFile();\n\t\t\n\t\t//csv.tk.displayTokens();\n\t\t//csv.it.displayHashMap();\n\t\tcsv.writeTokensToFile(csv.tk.tokensMap);\n\t\tcsv.matcher.longestSequence(csv.it);\t//csv.it.intTokenList was supposed to be passed but since I need csv.it object in caller so im passing it\n\t\tcsv.matcher.displaySubsequences(csv.it);\n\t\tcsv.writeMatchesToFile(csv.matcher.resultMap,csv.it);\n\t System.out.println(\"\\nProgram Ends \");\n\t \t \n\t}", "public final void rule__OpenCSV__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1369:1: ( ( 'header' ) )\n // InternalCsv.g:1370:1: ( 'header' )\n {\n // InternalCsv.g:1370:1: ( 'header' )\n // InternalCsv.g:1371:2: 'header'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n match(input,21,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // InternalCsv.g:80:1: ( ruleLanguage EOF )\n // InternalCsv.g:81:1: ruleLanguage EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageRule()); \n }\n pushFollow(FOLLOW_1);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleSaveCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:267:2: ( ( ( rule__SaveCSV__Group__0 ) ) )\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n {\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n // InternalCsv.g:269:3: ( rule__SaveCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n // InternalCsv.g:270:3: ( rule__SaveCSV__Group__0 )\n // InternalCsv.g:270:4: rule__SaveCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void process(final File outputFile) {\r\n\t\tvalidateAnalyzed();\r\n\r\n\t\tfinal ReadCSV csv = new ReadCSV(getInputFilename().toString(),\r\n\t\t\t\tisExpectInputHeaders(), getFormat());\r\n\t\tLoadedRow row;\r\n\r\n\t\tfinal PrintWriter tw = prepareOutputFile(outputFile);\r\n\r\n\t\tresetStatus();\r\n\t\twhile ((row = getNextRow(csv)) != null) {\r\n\t\t\twriteRow(tw, row);\r\n\t\t\tupdateStatus(false);\r\n\t\t}\r\n\t\treportDone(false);\r\n\t\ttw.close();\r\n\t\tcsv.close();\r\n\t}", "public final EObject entryRuleOpenField() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleOpenField = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1138:2: (iv_ruleOpenField= ruleOpenField EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1139:2: iv_ruleOpenField= ruleOpenField EOF\n {\n newCompositeNode(grammarAccess.getOpenFieldRule()); \n pushFollow(FollowSets000.FOLLOW_ruleOpenField_in_entryRuleOpenField2285);\n iv_ruleOpenField=ruleOpenField();\n\n state._fsp--;\n\n current =iv_ruleOpenField; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleOpenField2295); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleActionProcess() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1864:1: ( ruleActionProcess EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1865:1: ruleActionProcess EOF\n {\n before(grammarAccess.getActionProcessRule()); \n pushFollow(FOLLOW_ruleActionProcess_in_entryRuleActionProcess3510);\n ruleActionProcess();\n\n state._fsp--;\n\n after(grammarAccess.getActionProcessRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleActionProcess3517); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "private void processCSVFile( BufferedReader csvFile ) throws IOException {\r\n\t\t\r\n\t\tboolean headerRowRead = false;\r\n\t\tString[] headerArray = null;\r\n\t\t\r\n\t\t//loop through all rows and create contacts\r\n\t\tString row = csvFile.readLine();\r\n\t\t\r\n\t\twhile (row != null) {\r\n\t\t\t\r\n\t\t\tif (row.length()==0 || row.startsWith(\"#\") || row.startsWith(\";\") ) {\t\t\r\n\t\t\t\t\r\n\t\t\t\t//empty or comment row: skip\r\n\t\t\t\t\r\n\t\t\t} else if (!headerRowRead) {\r\n\t\t\t\t\r\n\t\t\t\t//header row is the first non-blank, not-comment row in the CSV file\r\n\t\t\t\t//the required header row contains the attribute names\r\n\t\t\t\t\r\n\t\t\t\theaderRowRead = true;\r\n\t\t\t\t\r\n\t\t\t\t//read header\r\n\t\t\t\theaderArray = parseCSVLine( row, true); \t\t\r\n\t\t\t\tLogger.debug(\"header: \" + row);\r\n\t\t\t\t\r\n\t\t\t} else {\r\n\t\t\t\r\n\t\t\t\tHashMap<String,String> contactObject = ContactsImport.getRowValues(headerArray, row);\r\n\t\t\t\tcreateContact(contactObject);\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\trow = csvFile.readLine(); //read next line form csv file\r\n\t\t}\r\n\t\t\r\n\t\tLogger.debug(\"finished\");\r\n\r\n\t}", "public final void rule__PrintCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1503:1: ( ( ( rule__PrintCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1505:2: ( rule__PrintCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1506:2: ( rule__PrintCSV__OpenAssignment_2 )\n // InternalCsv.g:1506:3: rule__PrintCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "@Override\n public void parse(CSVParser context, char character) {\n if (character == '\"') { // transition to enclosed cell parse.\n context.setState(new EnclosedRecordReadState());\n } else if (Character.isWhitespace(character)) { // continue consuming whitespace.\n return;\n } else if (character == ',') { // terminate the cell\n context.terminateCell();\n } else { // All other characters enter cell parse state.\n context.append(character);\n context.setState(new CellReadState());\n }\n }", "public final void ruleAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) )\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n {\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n // InternalCsv.g:119:3: ( rule__Action__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getAlternatives()); \n }\n // InternalCsv.g:120:3: ( rule__Action__Alternatives )\n // InternalCsv.g:120:4: rule__Action__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Action__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "CSV createCSV();", "private Result outputCsv(Request request, Entry entry) throws Exception {\r\n Result result = getCsvResult(request, entry);\r\n result.setReturnFilename(\r\n IOUtil.stripExtension(getStorageManager().getFileTail(entry))\r\n + \".csv\");\r\n result.setMimeType(\"text/csv\");\r\n\r\n return result;\r\n }", "public final void entryRuleXImportDeclaration() throws RecognitionException {\n try {\n // InternalCsv.g:605:1: ( ruleXImportDeclaration EOF )\n // InternalCsv.g:606:1: ruleXImportDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXImportDeclaration();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleOpOr() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:580:1: ( ruleOpOr EOF )\r\n // InternalDroneScript.g:581:1: ruleOpOr EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOrRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleOpOr();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOrRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Alternatives_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==40) ) {\n alt4=1;\n }\n else if ( (LA4_0==12) ) {\n alt4=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n {\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__HeaderAssignment_7_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:713:2: ( 'false' )\n {\n // InternalCsv.g:713:2: ( 'false' )\n // InternalCsv.g:714:3: 'false'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n match(input,12,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleRelationalOp() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleRelationalOp = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2975:2: (iv_ruleRelationalOp= ruleRelationalOp EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2976:2: iv_ruleRelationalOp= ruleRelationalOp EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getRelationalOpRule()); \n }\n pushFollow(FOLLOW_ruleRelationalOp_in_entryRuleRelationalOp7036);\n iv_ruleRelationalOp=ruleRelationalOp();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleRelationalOp.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleRelationalOp7047); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__AstAction__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12936:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12938:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_6_1__0__Impl26229); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void csv() throws IOException {\n\t\t\n\t\tSystem.out.println(); //spacing\\\n\t\tFileWriter f;\n\t\t\n\t\tif (bundle.getString(\"csvName\").endsWith(\".csv\")) {\n\t\t\tf = new FileWriter(bundle.getString(\"csvName\"));\n\t\t}\n\t\t\n\t\telse {\n\t\t\tf = new FileWriter(bundle.getString(\"csvName\") + \".csv\");\n\t\t}\n\t\t\n\t\tPrintWriter p = new PrintWriter(f);\n\t\tObject[][] input = {revisionsToo, flowOfTime};\n\t\tCSVWork(input, p, f);\n\t\t\n\t\tObject[][] nextInput = {revisions, ratings};\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[1] = irrelevants;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[1] = relevants;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[0] = intervals;\n\t\tnextInput[1] = commits;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tspecialCSV(existsHere, p);\n\t\t\n\t\tp.flush();\n\t\tp.close();\n\t\tf.close();\n\t}", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAstToken() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1155:1: ( ruleAstToken EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1156:1: ruleAstToken EOF\n {\n before(grammarAccess.getAstTokenRule()); \n pushFollow(FOLLOW_ruleAstToken_in_entryRuleAstToken2403);\n ruleAstToken();\n\n state._fsp--;\n\n after(grammarAccess.getAstTokenRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstToken2410); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Test\n public void parse_validArgs_returnsExportCommand() {\n ExportCommand expectedExportCommand =\n new ExportCommand(\"lifeTEST.csv\", \"groupTEST.csv\", \"eventTEST.csv\");\n assertParseSuccess(parser, \" l/lifeTEST.csv\"\n + \" g/groupTEST.csv\"\n + \" e/eventTEST.csv\", expectedExportCommand);\n\n //multiple whitespaces between keywords\n assertParseSuccess(parser, \" \\n l/\"\n + TEST_LIFE_EXPORT_CSV\n + \" \\n \\t g/\" + TEST_GROUP_EXPORT_CSV\n + \" \\n \\t e/\" + TEST_EVENT_EXPORT_CSV\n + \"\\t\", expectedExportCommand);\n }", "public final void mRULE_COMMA() throws RecognitionException {\n try {\n int _type = RULE_COMMA;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12801:12: ( ',' )\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12801:14: ','\n {\n match(','); \n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "@Override\n public void actionPerformed(ActionEvent e) {\n Object obj = e.getSource();\n if(obj == go){\n String text = filter.getText();\n if (text.length() == 0) {\n sorter.setRowFilter(null);\n } else {\n try {\n sorter.setRowFilter(\n RowFilter.regexFilter(text));\n } catch (PatternSyntaxException pse) {\n System.err.println(\"Bad regex pattern\");\n }\n }\n }\n }", "public final void entryRuleOpOther() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:780:1: ( ruleOpOther EOF )\r\n // InternalDroneScript.g:781:1: ruleOpOther EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleOpOther();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public void exportCSV(ActionEvent actionEvent) {\n\t\tLOGGER.info(\"Exportando ficheros CSV\");\n\t\ttry {\n\t\t\tDirectoryChooser dir = new DirectoryChooser();\n\t\t\tFile file = new File(ConfigHelper.getProperty(\"csvFolderPath\", \"./\"));\n\t\t\tif (file.exists() && file.isDirectory()) {\n\t\t\t\tdir.setInitialDirectory(file);\n\t\t\t}\n\n\t\t\tFile selectedDir = dir.showDialog(controller.getStage());\n\t\t\tif (selectedDir != null) {\n\t\t\t\tCSVBuilderAbstract.setPath(selectedDir.toPath());\n\t\t\t\tCharsets charset = controller.getMainConfiguration().getValue(MainConfiguration.GENERAL, \"charset\");\n\t\t\t\tCSVExport.run(charset.get());\n\t\t\t\tUtilMethods.infoWindow(I18n.get(\"message.export_csv_success\") + selectedDir.getAbsolutePath());\n\t\t\t\tConfigHelper.setProperty(\"csvFolderPath\", selectedDir.getAbsolutePath());\n\t\t\t}\n\n\t\t} catch (Exception e) {\n\t\t\tLOGGER.error(\"Error al exportar ficheros CSV.\", e);\n\t\t\tUtilMethods.errorWindow(I18n.get(\"error.savecsvfiles\"), e);\n\t\t}\n\t}", "public final void rule__AstAction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12812:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12814:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_4_1__0__Impl25984); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMappingDsl.g:1797:47: (iv_ruleImport= ruleImport EOF )\n // InternalMappingDsl.g:1798:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__SaveCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1747:1: ( ( ( rule__SaveCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1749:2: ( rule__SaveCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1750:2: ( rule__SaveCSV__OpenAssignment_2 )\n // InternalCsv.g:1750:3: rule__SaveCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpOther() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:603:1: ( ruleOpOther EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:604:1: ruleOpOther EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherRule()); \n }\n pushFollow(FOLLOW_ruleOpOther_in_entryRuleOpOther1214);\n ruleOpOther();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleOpOther1221); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Override\n public void importCSV(File file) {\n System.out.println(\"oi\");\n System.out.println(file.isFile()+\" \"+file.getAbsolutePath());\n if(file.isFile() && file.getPath().toLowerCase().contains(\".csv\")){\n System.out.println(\"Entro\");\n try {\n final Reader reader = new FileReader(file);\n final BufferedReader bufferReader = new BufferedReader(reader);\n String[] cabecalho = bufferReader.readLine().split(\",\");\n int tipo;\n if(cabecalho.length == 3){\n if(cabecalho[2].equalsIgnoreCase(\"SIGLA\")){\n tipo = 1;\n System.out.println(\"TIPO PAIS\");\n }\n else {\n tipo = 2;\n System.out.println(\"TIPO CIDADE\");\n }\n }else {\n tipo = 3;\n System.out.println(\"TIPO ESTADO\");\n }\n \n while(true){\n String linha = bufferReader.readLine();\n if(linha == null){\n break;\n }\n String[] row = linha.split(\",\");\n switch (tipo) {\n case 1:\n Pais pais = new Pais();\n pais.setId(Long.parseLong(row[0]));\n pais.setNome(row[1]);\n pais.setSigla(row[2]);\n new PaisDaoImpl().insert(pais);\n break;\n case 2:\n Cidade cidade = new Cidade();\n cidade.setId(Long.parseLong(row[0]));\n cidade.setNome(row[1]);\n cidade.setEstado(Long.parseLong(row[2]));\n new CidadeDaoImpl().insert(cidade);\n break;\n default:\n Estado estado = new Estado();\n estado.setId(Long.parseLong(row[0]));\n estado.setNome(row[1]);\n estado.setUf(row[2]);\n estado.setPais(Long.parseLong(row[3]));\n new EstadoDaoImpl().insert(estado);\n break;\n }\n }\n \n } catch (FileNotFoundException ex) {\n Logger.getLogger(SQLUtilsImpl.class.getName()).log(Level.SEVERE, null, ex);\n } catch (IOException ex) {\n Logger.getLogger(SQLUtilsImpl.class.getName()).log(Level.SEVERE, null, ex);\n }\n }\n }", "public interface DboCsvTransformer<DBO extends DatabaseObject<?>> extends DboFileTransformer<DBO> {\n\n String COMMA_IN_QUOTES_REGEX = \",(?=(?:[^\\\\\\\"]*\\\\\\\"[^\\\\\\\"]*\\\\\\\")*[^\\\\\\\"]*$)\";\n\n /**\n * This method consumes a single line of CSV to produce a DatabaseObject.\n *\n * @param csv the single line of CSV representing a single DatabaseObject\n * @return the DatabaseObject represented\n * @throws TransformerException if the object cannot be produced\n */\n @Override\n DBO consume(String csv) throws TransformerException;\n\n /**\n * This method consumes a DatabaseObject to produce a String in CSV format.\n *\n * @param object the DatabaseObject\n * @return a String in CSV format\n * @throws TransformerException if the object cannot be consumed\n */\n @Override\n String produce(DBO object) throws TransformerException;\n\n}", "public final EObject entryRuleMatchOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleMatchOperator = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:964:2: (iv_ruleMatchOperator= ruleMatchOperator EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:965:2: iv_ruleMatchOperator= ruleMatchOperator EOF\n {\n newCompositeNode(grammarAccess.getMatchOperatorRule()); \n pushFollow(FOLLOW_ruleMatchOperator_in_entryRuleMatchOperator2103);\n iv_ruleMatchOperator=ruleMatchOperator();\n\n state._fsp--;\n\n current =iv_ruleMatchOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleMatchOperator2113); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void mT__46() throws RecognitionException {\n try {\n int _type = T__46;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalVizualizer.g:46:7: ( 'CSV' )\n // InternalVizualizer.g:46:9: 'CSV'\n {\n match(\"CSV\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__AstAction__Group_8_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13250:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13251:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13251:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13252:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_8_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_8_2__0__Impl26847); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_8_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "void openWithRule () \n throws IOException, FileNotFoundException {\n for (int i = 1; i <= MAX_CATEGORY_LEVEL; i++) {\n storeField (CATEGORY_FIELD_NAME [i], \"\");\n category [i] = \"\";\n }\n storeField (ANCHOR, \"\");\n storeField (EMAIL, \"\");\n storeField (URL, \"\");\n getNextLine();\n\t\tgetNextCharacter();\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:287:2: (iv_ruleImport= ruleImport EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:288:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport625);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport635); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleOpOr() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:375:1: ( ruleOpOr EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:376:1: ruleOpOr EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOrRule()); \n }\n pushFollow(FOLLOW_ruleOpOr_in_entryRuleOpOr730);\n ruleOpOr();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOrRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleOpOr737); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleValidID() throws RecognitionException {\n try {\n // InternalCsv.g:580:1: ( ruleValidID EOF )\n // InternalCsv.g:581:1: ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_1);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getValidIDRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleExpression() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2355:1: ( ruleExpression EOF )\r\n // InternalGo.g:2356:1: ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleOpOther() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:686:1: ( ruleOpOther EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:687:1: ruleOpOther EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherRule()); \r\n }\r\n pushFollow(FOLLOW_ruleOpOther_in_entryRuleOpOther1394);\r\n ruleOpOther();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleOpOther1401); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleOpOr() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:458:1: ( ruleOpOr EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:459:1: ruleOpOr EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOrRule()); \r\n }\r\n pushFollow(FOLLOW_ruleOpOr_in_entryRuleOpOr910);\r\n ruleOpOr();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOrRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleOpOr917); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "@Test\n public void testCSVHandlerForEmployees() throws IOException, URISyntaxException {\n val csvHandler = TestInjector.create(CSVHandler.class);\n // todo clean this up but also keep it working on windows\n val input = Paths.get(getClass().getResource(\"PrototypeEmployees.csv\").toURI()).toString();\n val output = \"build/Employees.csv\";\n csvHandler.importEmployees(input);\n csvHandler.exportEmployees(output);\n val inputLines = Files.readAllLines(Paths.get(input));\n val outputLines = Files.readAllLines(Paths.get(output));\n assertEquals(inputLines.size(), outputLines.size());\n assertEquals(inputLines.get(0), outputLines.get(0)); // make sure header lines are the same\n assertTrue(outputLines.containsAll(inputLines));\n assertTrue(inputLines.containsAll(outputLines));\n }", "public final void entryRuleEnum() throws RecognitionException {\n try {\n // InternalMyDsl.g:304:1: ( ruleEnum EOF )\n // InternalMyDsl.g:305:1: ruleEnum EOF\n {\n before(grammarAccess.getEnumRule()); \n pushFollow(FOLLOW_1);\n ruleEnum();\n\n state._fsp--;\n\n after(grammarAccess.getEnumRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleAstExpression() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1435:1: ( ruleAstExpression EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1436:1: ruleAstExpression EOF\n {\n before(grammarAccess.getAstExpressionRule()); \n pushFollow(FOLLOW_ruleAstExpression_in_entryRuleAstExpression3003);\n ruleAstExpression();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstExpression3010); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleExpression() throws RecognitionException {\n try {\n // InternalBrowser.g:254:1: ( ruleExpression EOF )\n // InternalBrowser.g:255:1: ruleExpression EOF\n {\n before(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_1);\n ruleExpression();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Test\n public void doImport_doesNotModifyOriginalCsv() {\n ExternalDataReader externalDataReader = new ExternalDataReaderImpl(null);\n externalDataReader.doImport(formDefToCsvMedia);\n\n assertThat(dbFile.exists(), is(true));\n assertThat(csvFile.exists(), is(true));\n }", "private ActionErrors storeCsvFile(HttpServletRequest request, FormFile csvFile) {\n ActionErrors errors = new ActionErrors();\n HttpSession session = request.getSession();\n String savePath = generateSavePath(session);\n File file = new File(savePath);\n InputStream inputStream = null;\n FileOutputStream outputStream = null;\n try {\n file.createNewFile();\n inputStream = csvFile.getInputStream();\n outputStream = new FileOutputStream(file, false);\n IOUtils.copy(inputStream, outputStream);\n removeStoredCsvFile(request);\n session.setAttribute(CSV_FILE_PATH_KEY, savePath);\n session.setAttribute(CSV_ORIGINAL_FILE_NAME_KEY, csvFile.getFileName());\n fileUploadPerformed = true;\n } catch (IOException e) {\n errors.add(\"csvFile\", new ActionMessage(\"error.import.no_file\"));\n return errors;\n } finally {\n \tIOUtils.closeQuietly(inputStream);\n \tIOUtils.closeQuietly(outputStream);\n }\n return errors;\n }", "public final void entryRuleConstDecl() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1505:1: ( ruleConstDecl EOF )\r\n // InternalGo.g:1506:1: ruleConstDecl EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConstDeclRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleConstDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConstDeclRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "@Test\r\n\tpublic void readCsvTest() throws IOException {\r\n\t\t\tfail(\"Not yet implemented\");\r\n\t}", "public final void mRULE_ACTION_CHAR_LITERAL() throws RecognitionException {\n try {\n // InternalUniMapperGenerator.g:5129:35: ( '\\\\'' ( RULE_ACTION_ESC | ~ ( ( '\\\\\\\\' | '\\\\'' ) ) )* '\\\\'' )\n // InternalUniMapperGenerator.g:5129:37: '\\\\'' ( RULE_ACTION_ESC | ~ ( ( '\\\\\\\\' | '\\\\'' ) ) )* '\\\\''\n {\n match('\\''); \n // InternalUniMapperGenerator.g:5129:42: ( RULE_ACTION_ESC | ~ ( ( '\\\\\\\\' | '\\\\'' ) ) )*\n loop10:\n do {\n int alt10=3;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0=='\\\\') ) {\n alt10=1;\n }\n else if ( ((LA10_0>='\\u0000' && LA10_0<='&')||(LA10_0>='(' && LA10_0<='[')||(LA10_0>=']' && LA10_0<='\\uFFFF')) ) {\n alt10=2;\n }\n\n\n switch (alt10) {\n \tcase 1 :\n \t // InternalUniMapperGenerator.g:5129:43: RULE_ACTION_ESC\n \t {\n \t mRULE_ACTION_ESC(); \n\n \t }\n \t break;\n \tcase 2 :\n \t // InternalUniMapperGenerator.g:5129:59: ~ ( ( '\\\\\\\\' | '\\\\'' ) )\n \t {\n \t if ( (input.LA(1)>='\\u0000' && input.LA(1)<='&')||(input.LA(1)>='(' && input.LA(1)<='[')||(input.LA(1)>=']' && input.LA(1)<='\\uFFFF') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop10;\n }\n } while (true);\n\n match('\\''); \n\n }\n\n }\n finally {\n }\n }", "public void receiveBatch(CsvParser parser, Consumer<List<Customer>> action)\n\t\t\tthrows ServerConnectException, ReadFileException {\n\t\t\tparser.forEachBatch(action);\n\t\t\n\t}", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:140:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) ) )\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n {\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n // InternalMyDsl.g:142:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n {\n otherlv_0=(Token)match(input,19,FOLLOW_5); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n }\n // InternalMyDsl.g:146:3: ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n {\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n // InternalMyDsl.g:148:5: lv_importURI_1_0= RULE_IMPORT_URI\n {\n lv_importURI_1_0=(Token)match(input,RULE_IMPORT_URI,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURIIMPORT_URITerminalRuleCall_1_0());\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.xtext.example.mydsl.MyDsl.IMPORT_URI\");\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "@Test\n public void testCSVHandlerForNodes() throws IOException, URISyntaxException {\n val csvHandler = TestInjector.create(CSVHandler.class);\n // todo clean this up but also keep it working on windows\n val input = Paths.get(getClass().getResource(\"PrototypeNodes.csv\").toURI()).toString();\n val output = \"build/Nodes.csv\";\n csvHandler.importNodes(input);\n csvHandler.exportNodes(output);\n val inputLines = Files.readAllLines(Paths.get(input));\n val outputLines = Files.readAllLines(Paths.get(output));\n assertEquals(inputLines.size(), outputLines.size());\n assertEquals(inputLines.get(0), outputLines.get(0)); // make sure header lines are the same\n assertTrue(outputLines.containsAll(inputLines));\n assertTrue(inputLines.containsAll(outputLines));\n }", "@Test\n public void testCSVHandlerForEdges() throws IOException, URISyntaxException {\n val csvHandler = TestInjector.create(CSVHandler.class);\n // todo clean this up but also keep it working on windows\n val input = Paths.get(getClass().getResource(\"PrototypeEdges.csv\").toURI()).toString();\n val output = \"build/Edges.csv\";\n\n //nodes must be imported first so that they can be recognized while importing edges\n val nodesPath = Paths.get(getClass().getResource(\"PrototypeNodes.csv\").toURI()).toString();\n csvHandler.importNodes(nodesPath);\n\n csvHandler.importEdges(input);\n csvHandler.exportEdges(output);\n val inputLines = Files.readAllLines(Paths.get(input));\n val outputLines = Files.readAllLines(Paths.get(output));\n assertEquals(inputLines.size(), outputLines.size());\n assertEquals(inputLines.get(0), outputLines.get(0)); // make sure header lines are the same\n assertTrue(outputLines.containsAll(inputLines));\n assertTrue(inputLines.containsAll(outputLines));\n }", "public IndexModifierCSVMessage(pgrid.GUID guid, Key key, short mode, CSVIndexTable csvItems) {\n\t\tsuper(guid);\n\t\tmItems = new CSVIndexTable(\"IMcsv_\"+randomString()+\"_\"+(++num)+\".csv\",false);\n\t\tmKey = key;\n\t\tif(csvItems != null){\n\t\t\ttry{\n\t\t\t\tcsvItems.openFileForReading();\n\t\t\t\tmItems.openFileForWriting();\n\t\t\t\tIndexEntry dataItem = null;\n\t\t\t\twhile((dataItem = (IndexEntry)csvItems.getNextIndexEntry())!=null) {\n\t\t\t\t\tmItems.addIndexEntry(dataItem);\n\t\t\t\t}\n\t\t\t} catch (Exception e) {\n\t\t\t\t// TODO Auto-generated catch block\n\t\t\t\te.printStackTrace();\n\t\t\t}finally{\n\t\t\t\tmItems.closeFileForWriting();\n\t\t\t\tcsvItems.closeFileOnReading();\n\t\t\t}\n\t\t}\n\t\tmMode = mode;\n\n\t\tCompression.compressFile(getFileName(),getFileName()+\".zip\" );\n\t\tmFileSize = new File(getFilePath()+\".zip\").length();\n\t\tthis.getHeader().setAdditionalAttribute(\"FileLength\", getFileSize()+\"\");\n\t\tthis.getHeader().setAdditionalAttribute(\"FileName\", getFileName());\n\n\t}", "@Override\n\tpublic void doHandleEvent(CsvEvent event) {\n\t\t\n\t}", "public void exportContact(String csvId) {\n String[] csv= MainActivity.appDb.getEditData(csvId); //get the data ready to export\n //String[] csv = Contact.split(\"~\", -1);\n\n Intent intent = new Intent(Intent.ACTION_INSERT); //create an intent to to place the contact data to the Phone contacts\n intent.setType(ContactsContract.Contacts.CONTENT_TYPE);\n intent.putExtra(ContactsContract.Intents.Insert.NAME, csv[0]); //place the data in the fields\n intent.putExtra(ContactsContract.Intents.Insert.PHONE, csv[1]);\n intent.putExtra(ContactsContract.Intents.Insert.EMAIL, csv[2]);\n intent.putExtra(ContactsContract.Intents.Insert.POSTAL, csv[3]);\n intent.putExtra(ContactsContract.Intents.Insert.COMPANY, csv[4]);\n intent.putExtra(ContactsContract.Intents.Insert.JOB_TITLE, csv[5]);\n ArrayList<ContentValues> data = new ArrayList<ContentValues>(); //use an arraylist containing content values specfically for the website\n\n ContentValues row1 = new ContentValues(); //establish new row\n row1.put(ContactsContract.Data.MIMETYPE, Website.CONTENT_ITEM_TYPE); //specify the type\n row1.put(Website.URL, csv[6]); //insert the website\n row1.put(Website.TYPE, Website.TYPE_WORK);\n\n data.add(row1); //add it to the data entry\n\n\n intent.putParcelableArrayListExtra(ContactsContract.Intents.Insert.DATA, data); //insert the data row in extras\n\n //intent.putExtra(ContactsContract.Intents.Insert.DATA, csv[6]);\n intent.putExtra(ContactsContract.Intents.Insert.NOTES, csv[7]);\n\n startActivity(intent); //start the activity\n }", "public static void test000(String[] args) throws IOException\n {\n\n\n //System.out.println(sql_insert_shipto_template);\n\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SALES_ORGANIZATION_CODE%\", \"261\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%DC_SHORTNAME%\", \"PF\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SHIPTO_CODE%\", \"10156409\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%PRODUCT_CODE%\", \"10104574\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%STARTDATE%\", \"01.02.2014\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%FINISHDATE%\", \"31.12.9999\");\n\n\n // String test = \"1\\t2\\t3\\n4\\t5\\t6\";\n\n String test = \"SO;SHIPTO;SHIPTO;DCSHORT;REP;GRD;Name;start date;end date\\n\" +\n \"261;10156405PF;10156405;PF;249394;10104570;A.KORKUNOV DARK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"261;10156405CH;10156405;CH;249410;10104542;A.KORKUNOV MILK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"377;10156409PF;10156409;PF;249399;10104574;A.KORKUNOV DARK ALMOND 5*10*100G;07.10.2014;31.12.9999\\n\";\n\n\n //CSVParser parser = CSVParser.parse(test, CSVFormat.newFormat(';'));\n File file = new File(\"c:\\\\MATDET_SHIPTO_EXAMPLE.csv\");\n CSVParser parser = CSVParser.parse(file, java.nio.charset.Charset.defaultCharset(), CSVFormat.newFormat(';'));\n\n int rownum = 0;\n for (CSVRecord strings : parser)\n {\n\n if (rownum++ == 0)\n continue;\n String SO = strings.get(0);\n String SHIPTO = strings.get(2);\n String DCSHORT = strings.get(3);\n //String REP = strings.get(4);\n String PRODUCT = strings.get(5);\n String START = strings.get(7);\n String END = strings.get(8);\n\n String temp = SQL_INSERT_TMATDET_SHIPTO_TEMPLATE;\n temp = temp.replaceAll(\"%SALES_ORGANIZATION_CODE%\", SO);\n temp = temp.replaceAll(\"%DC_SHORTNAME%\", DCSHORT);\n temp = temp.replaceAll(\"%SHIPTO_CODE%\", SHIPTO);\n temp = temp.replaceAll(\"%PRODUCT_CODE%\", PRODUCT);\n temp = temp.replaceAll(\"%STARTDATE%\", START);\n temp = temp.replaceAll(\"%FINISHDATE%\", END);\n\n\n System.out.println(temp);\n }\n\n System.out.println(\"rows=\" + rownum);\n\n\n// CsvParser parser = new CsvParserImpl();\n// CSV\n// parser.\n// List parsed = parser.parse(\"1\\t2\\t3\\n4\\t5\\t6\");\n// System.out.println(parsed.get(0));\n\n //System.out.println(sql_insert_shipto_template);\n\n }", "public interface CSVSearch {\n public CSVRecord find(String query);\n}", "@Test\n\tpublic void testReadCsvFile() throws FileNotFoundException {\n\t\tFileParser fp = new FileParser();\n\t\tArrayList<String> parsedLines = fp.readCsvFile(\"movies.csv\");\n\t\tassertEquals(\"toy story\", parsedLines.get(0));\n\t}" ]
[ "0.6710011", "0.6492332", "0.63858265", "0.62195814", "0.62108654", "0.57468176", "0.55340016", "0.5413583", "0.5348342", "0.5173949", "0.5088165", "0.502443", "0.49896908", "0.4896899", "0.48658445", "0.47876054", "0.47780886", "0.47365907", "0.47122514", "0.4701668", "0.4698859", "0.4676197", "0.46654576", "0.45893466", "0.45805266", "0.45555294", "0.45507994", "0.45448908", "0.4539249", "0.45348284", "0.4520815", "0.45179543", "0.45137465", "0.4512387", "0.44792962", "0.44757527", "0.44676423", "0.44546697", "0.44281524", "0.44153503", "0.43985268", "0.43969023", "0.43934062", "0.43846163", "0.43807957", "0.43763787", "0.4376255", "0.43754035", "0.43676", "0.43624184", "0.43405107", "0.43364406", "0.43346652", "0.43319395", "0.43316624", "0.4327221", "0.43150735", "0.43123037", "0.43032944", "0.43031684", "0.43006298", "0.42407045", "0.42292634", "0.4228024", "0.42230174", "0.42216894", "0.4220017", "0.42181233", "0.4203528", "0.41780138", "0.41772538", "0.41741294", "0.41712952", "0.41684714", "0.41653526", "0.41625434", "0.41439173", "0.41343203", "0.41339415", "0.41301727", "0.41298056", "0.4123519", "0.41136214", "0.4103341", "0.40927958", "0.40890887", "0.4072653", "0.40725023", "0.40649503", "0.40634948", "0.40583634", "0.40551585", "0.40535113", "0.40500712", "0.40496185", "0.40490887", "0.40406147", "0.40331456", "0.40326554", "0.40244284" ]
0.7601945
0
$ANTLR end "entryRuleOpenCSV" $ANTLR start "ruleOpenCSV" InternalCsv.g:138:1: ruleOpenCSV : ( ( rule__OpenCSV__Group__0 ) ) ;
public final void ruleOpenCSV() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) ) // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) ) { // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) ) // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getOpenCSVAccess().getGroup()); } // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 ) // InternalCsv.g:145:4: rule__OpenCSV__Group__0 { pushFollow(FOLLOW_2); rule__OpenCSV__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getOpenCSVAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1261:1: ( ( 'read' ) )\n // InternalCsv.g:1262:1: ( 'read' )\n {\n // InternalCsv.g:1262:1: ( 'read' )\n // InternalCsv.g:1263:2: 'read'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n match(input,20,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1503:1: ( ( ( rule__PrintCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1505:2: ( rule__PrintCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1506:2: ( rule__PrintCSV__OpenAssignment_2 )\n // InternalCsv.g:1506:3: rule__PrintCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1369:1: ( ( 'header' ) )\n // InternalCsv.g:1370:1: ( 'header' )\n {\n // InternalCsv.g:1370:1: ( 'header' )\n // InternalCsv.g:1371:2: 'header'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n match(input,21,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1747:1: ( ( ( rule__SaveCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1749:2: ( rule__SaveCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1750:2: ( rule__SaveCSV__OpenAssignment_2 )\n // InternalCsv.g:1750:3: rule__SaveCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleSaveCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:267:2: ( ( ( rule__SaveCSV__Group__0 ) ) )\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n {\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n // InternalCsv.g:269:3: ( rule__SaveCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n // InternalCsv.g:270:3: ( rule__SaveCSV__Group__0 )\n // InternalCsv.g:270:4: rule__SaveCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1288:1: ( ( ( rule__OpenCSV__NameAssignment_2 ) ) )\n // InternalCsv.g:1289:1: ( ( rule__OpenCSV__NameAssignment_2 ) )\n {\n // InternalCsv.g:1289:1: ( ( rule__OpenCSV__NameAssignment_2 ) )\n // InternalCsv.g:1290:2: ( rule__OpenCSV__NameAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getNameAssignment_2()); \n }\n // InternalCsv.g:1291:2: ( rule__OpenCSV__NameAssignment_2 )\n // InternalCsv.g:1291:3: rule__OpenCSV__NameAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__NameAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getNameAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1342:1: ( ( ( rule__OpenCSV__CharsetAssignment_4 ) ) )\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n {\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n // InternalCsv.g:1344:2: ( rule__OpenCSV__CharsetAssignment_4 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n // InternalCsv.g:1345:2: ( rule__OpenCSV__CharsetAssignment_4 )\n // InternalCsv.g:1345:3: rule__OpenCSV__CharsetAssignment_4\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAssignment_4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1465:1: ( rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2 )\n // InternalCsv.g:1466:2: rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__PrintCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3490:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\n // InternalCsv.g:3491:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "public final void rule__ImportDecl__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15461:1: ( ( () ) )\r\n // InternalGo.g:15462:1: ( () )\r\n {\r\n // InternalGo.g:15462:1: ( () )\r\n // InternalGo.g:15463:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportDeclAction_0()); \r\n }\r\n // InternalGo.g:15464:2: ()\r\n // InternalGo.g:15464:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportDeclAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3791:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n // InternalCsv.g:3793:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3794:3: ( RULE_ID )\n // InternalCsv.g:3795:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12812:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12814:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_4_1__0__Impl25984); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3409:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\n // InternalCsv.g:3410:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\n {\n pushFollow(FOLLOW_40);\n rule__XImportDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1665:1: ( ( ( rule__NbCol__OpenAssignment_2 ) ) )\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n // InternalCsv.g:1667:2: ( rule__NbCol__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1668:2: ( rule__NbCol__OpenAssignment_2 )\n // InternalCsv.g:1668:3: rule__NbCol__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2071:1: ( ( '(' ) )\n // InternalCsv.g:2072:1: ( '(' )\n {\n // InternalCsv.g:2072:1: ( '(' )\n // InternalCsv.g:2073:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2206:1: ( ( ',' ) )\n // InternalCsv.g:2207:1: ( ',' )\n {\n // InternalCsv.g:2207:1: ( ',' )\n // InternalCsv.g:2208:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2194:1: ( rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1 )\n // InternalCsv.g:2195:2: rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1\n {\n pushFollow(FOLLOW_27);\n rule__XFunctionTypeRef__Group_0_1_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3517:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\n // InternalCsv.g:3518:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2140:1: ( rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1 )\n // InternalCsv.g:2141:2: rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1\n {\n pushFollow(FOLLOW_29);\n rule__XFunctionTypeRef__Group_0_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "public final void ruleImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:130:2: ( ( ( rule__Import__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:132:1: ( rule__Import__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:1: ( rule__Import__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:2: rule__Import__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport220);\r\n rule__Import__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1477:1: ( ( 'print' ) )\n // InternalCsv.g:1478:1: ( 'print' )\n {\n // InternalCsv.g:1478:1: ( 'print' )\n // InternalCsv.g:1479:2: 'print'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintKeyword_1()); \n }\n match(input,23,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12936:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12938:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_6_1__0__Impl26229); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3848:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n // InternalCsv.g:3850:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3851:3: ( RULE_ID )\n // InternalCsv.g:3852:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13250:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13251:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13251:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13252:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_8_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_8_2__0__Impl26847); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_8_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1720:1: ( ( 'save' ) )\n // InternalCsv.g:1721:1: ( 'save' )\n {\n // InternalCsv.g:1721:1: ( 'save' )\n // InternalCsv.g:1722:2: 'save'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveKeyword_1()); \n }\n match(input,26,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:241:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:243:1: ( rule__Import__Group__0 )\n {\n before(grammarAccess.getImportAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:1: ( rule__Import__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport454);\n rule__Import__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getImportAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2059:1: ( rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1 )\n // InternalCsv.g:2060:2: rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1\n {\n pushFollow(FOLLOW_28);\n rule__XFunctionTypeRef__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1584:1: ( ( ( rule__NbRow__OpenAssignment_2 ) ) )\n // InternalCsv.g:1585:1: ( ( rule__NbRow__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1585:1: ( ( rule__NbRow__OpenAssignment_2 ) )\n // InternalCsv.g:1586:2: ( rule__NbRow__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1587:2: ( rule__NbRow__OpenAssignment_2 )\n // InternalCsv.g:1587:3: rule__NbRow__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3474:1: ( ( ( ';' )? ) )\n // InternalCsv.g:3475:1: ( ( ';' )? )\n {\n // InternalCsv.g:3475:1: ( ( ';' )? )\n // InternalCsv.g:3476:2: ( ';' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n // InternalCsv.g:3477:2: ( ';' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==14) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // InternalCsv.g:3477:3: ';'\n {\n match(input,14,FOLLOW_2); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4062:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4063:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__08733);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__08736);\n rule__Import__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXImportDeclaration() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:617:2: ( ( ( rule__XImportDeclaration__Group__0 ) ) )\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n {\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n // InternalCsv.g:619:3: ( rule__XImportDeclaration__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n // InternalCsv.g:620:3: ( rule__XImportDeclaration__Group__0 )\n // InternalCsv.g:620:4: rule__XImportDeclaration__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2178:1: ( ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* ) )\n // InternalCsv.g:2179:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\n {\n // InternalCsv.g:2179:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\n // InternalCsv.g:2180:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \n }\n // InternalCsv.g:2181:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\n loop17:\n do {\n int alt17=2;\n int LA17_0 = input.LA(1);\n\n if ( (LA17_0==30) ) {\n alt17=1;\n }\n\n\n switch (alt17) {\n \tcase 1 :\n \t // InternalCsv.g:2181:3: rule__XFunctionTypeRef__Group_0_1_1__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__XFunctionTypeRef__Group_0_1_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop17;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group_2_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15542:1: ( ( '(' ) )\r\n // InternalGo.g:15543:1: ( '(' )\r\n {\r\n // InternalGo.g:15543:1: ( '(' )\r\n // InternalGo.g:15544:2: '('\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getLeftParenthesisKeyword_2_1_0()); \r\n }\r\n match(input,52,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getLeftParenthesisKeyword_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2086:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\n // InternalCsv.g:2087:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\n {\n pushFollow(FOLLOW_28);\n rule__XFunctionTypeRef__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__HeaderAssignment_7_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3772:1: ( ( ( 'true' ) ) )\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n {\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n // InternalCsv.g:3774:3: ( 'true' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n // InternalCsv.g:3775:3: ( 'true' )\n // InternalCsv.g:3776:4: 'true'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n match(input,40,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1646:1: ( ( ',' ) )\n // InternalMyDsl.g:1647:1: ( ',' )\n {\n // InternalMyDsl.g:1647:1: ( ',' )\n // InternalMyDsl.g:1648:2: ','\n {\n before(grammarAccess.getEnumAccess().getCommaKeyword_6_0()); \n match(input,26,FOLLOW_2); \n after(grammarAccess.getEnumAccess().getCommaKeyword_6_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3421:1: ( ( 'import' ) )\n // InternalCsv.g:3422:1: ( 'import' )\n {\n // InternalCsv.g:3422:1: ( 'import' )\n // InternalCsv.g:3423:2: 'import'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n match(input,39,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleConstDecl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1517:2: ( ( ( rule__ConstDecl__Group__0 ) ) )\r\n // InternalGo.g:1518:2: ( ( rule__ConstDecl__Group__0 ) )\r\n {\r\n // InternalGo.g:1518:2: ( ( rule__ConstDecl__Group__0 ) )\r\n // InternalGo.g:1519:3: ( rule__ConstDecl__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConstDeclAccess().getGroup()); \r\n }\r\n // InternalGo.g:1520:3: ( rule__ConstDecl__Group__0 )\r\n // InternalGo.g:1520:4: rule__ConstDecl__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ConstDecl__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConstDeclAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Alternatives_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==40) ) {\n alt4=1;\n }\n else if ( (LA4_0==12) ) {\n alt4=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n {\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__HeaderAssignment_7_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:713:2: ( 'false' )\n {\n // InternalCsv.g:713:2: ( 'false' )\n // InternalCsv.g:714:3: 'false'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n match(input,12,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:103:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:105:1: ( rule__Import__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:1: ( rule__Import__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport160);\n rule__Import__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1612:1: ( ( () ) )\n // InternalCsv.g:1613:1: ( () )\n {\n // InternalCsv.g:1613:1: ( () )\n // InternalCsv.g:1614:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n // InternalCsv.g:1615:2: ()\n // InternalCsv.g:1615:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2124:1: ( ( ')' ) )\n // InternalCsv.g:2125:1: ( ')' )\n {\n // InternalCsv.g:2125:1: ( ')' )\n // InternalCsv.g:2126:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14509:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14511:1: ','\n {\n before(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstInputPattern__Group_3__0__Impl29333); \n after(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleSaveCSV() throws RecognitionException {\n try {\n // InternalCsv.g:255:1: ( ruleSaveCSV EOF )\n // InternalCsv.g:256:1: ruleSaveCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__ConstDecl__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:8495:1: ( ( () ) )\r\n // InternalGo.g:8496:1: ( () )\r\n {\r\n // InternalGo.g:8496:1: ( () )\r\n // InternalGo.g:8497:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConstDeclAccess().getConstDeclAction_0()); \r\n }\r\n // InternalGo.g:8498:2: ()\r\n // InternalGo.g:8498:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConstDeclAccess().getConstDeclAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_7_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13093:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13094:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13094:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13095:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_7_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_7_2__0__Impl26538); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_7_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "protected AbstractCSVParser(TokenStream input) {\n super(input);\n }", "public final void rule__AstFunction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8787:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8788:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8788:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8789:1: ','\n {\n before(grammarAccess.getAstFunctionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstFunction__Group_4_1__0__Impl18057); \n after(grammarAccess.getAstFunctionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n {\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n {\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\n // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0\n {\n pushFollow(FOLLOW_3);\n rule__QualifiedNameInStaticImport__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==33) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__QualifiedNameInStaticImport__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XOrExpression__Group_1_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6592:1: ( ( ( rule__XOrExpression__Group_1_0_0__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6593:1: ( ( rule__XOrExpression__Group_1_0_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6593:1: ( ( rule__XOrExpression__Group_1_0_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6594:1: ( rule__XOrExpression__Group_1_0_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXOrExpressionAccess().getGroup_1_0_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6595:1: ( rule__XOrExpression__Group_1_0_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6595:2: rule__XOrExpression__Group_1_0_0__0\r\n {\r\n pushFollow(FOLLOW_rule__XOrExpression__Group_1_0_0__0_in_rule__XOrExpression__Group_1_0__0__Impl13832);\r\n rule__XOrExpression__Group_1_0_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXOrExpressionAccess().getGroup_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PredicateOr__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3510:1: ( ( '||' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3511:1: ( '||' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3511:1: ( '||' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3512:1: '||'\n {\n before(grammarAccess.getPredicateOrAccess().getVerticalLineVerticalLineKeyword_1_1()); \n match(input,27,FOLLOW_27_in_rule__PredicateOr__Group_1__1__Impl6911); \n after(grammarAccess.getPredicateOrAccess().getVerticalLineVerticalLineKeyword_1_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3742:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3743:2: ( RULE_STRING )\n {\n // InternalCsv.g:3743:2: ( RULE_STRING )\n // InternalCsv.g:3744:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2098:1: ( ( ( rule__XFunctionTypeRef__Group_0_1__0 )? ) )\n // InternalCsv.g:2099:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\n {\n // InternalCsv.g:2099:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\n // InternalCsv.g:2100:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \n }\n // InternalCsv.g:2101:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\n int alt16=2;\n int LA16_0 = input.LA(1);\n\n if ( (LA16_0==RULE_ID||LA16_0==18||LA16_0==29) ) {\n alt16=1;\n }\n switch (alt16) {\n case 1 :\n // InternalCsv.g:2101:3: rule__XFunctionTypeRef__Group_0_1__0\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4074:1: ( ( 'import' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4075:1: ( 'import' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4075:1: ( 'import' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4076:1: 'import'\n {\n before(grammarAccess.getImportAccess().getImportKeyword_0()); \n match(input,54,FOLLOW_54_in_rule__Import__Group__0__Impl8764); \n after(grammarAccess.getImportAccess().getImportKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2563:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2564:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__05516);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__05519);\n rule__Import__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XOrExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6611:1: ( rule__XOrExpression__Group_1_0_0__0__Impl rule__XOrExpression__Group_1_0_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6612:2: rule__XOrExpression__Group_1_0_0__0__Impl rule__XOrExpression__Group_1_0_0__1\r\n {\r\n pushFollow(FOLLOW_rule__XOrExpression__Group_1_0_0__0__Impl_in_rule__XOrExpression__Group_1_0_0__013864);\r\n rule__XOrExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XOrExpression__Group_1_0_0__1_in_rule__XOrExpression__Group_1_0_0__013867);\r\n rule__XOrExpression__Group_1_0_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstExpressionList__Group_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19410:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19411:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19411:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19412:1: ','\n {\n before(grammarAccess.getAstExpressionListAccess().getCommaKeyword_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstExpressionList__Group_2__0__Impl38976); \n after(grammarAccess.getAstExpressionListAccess().getCommaKeyword_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3274:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // InternalCsv.g:3275:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_5);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExternalFunction__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9422:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9423:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9423:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9424:1: ','\n {\n before(grammarAccess.getAstExternalFunctionAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstExternalFunction__Group_6_1__0__Impl19305); \n after(grammarAccess.getAstExternalFunctionAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:736:1: ( ( ',' ) )\n // InternalWh.g:737:1: ( ',' )\n {\n // InternalWh.g:737:1: ( ',' )\n // InternalWh.g:738:2: ','\n {\n before(grammarAccess.getInputAccess().getCommaKeyword_1_0()); \n match(input,18,FOLLOW_2); \n after(grammarAccess.getInputAccess().getCommaKeyword_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3406:1: ( ( ( rule__FinModelFile__Group_0__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3408:1: ( rule__FinModelFile__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:1: ( rule__FinModelFile__Group_0__0 )?\r\n int alt38=2;\r\n int LA38_0 = input.LA(1);\r\n\r\n if ( (LA38_0==71) ) {\r\n alt38=1;\r\n }\r\n switch (alt38) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:2: rule__FinModelFile__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0_in_rule__FinModelFile__Group__0__Impl7566);\r\n rule__FinModelFile__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstConstructor__Group_2_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7431:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7432:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7432:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7433:1: ','\n {\n before(grammarAccess.getAstConstructorAccess().getCommaKeyword_2_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstConstructor__Group_2_1__0__Impl15379); \n after(grammarAccess.getAstConstructorAccess().getCommaKeyword_2_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7940:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7941:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7941:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7942:1: ','\n {\n before(grammarAccess.getAstActorAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstActor__Group_4_1__0__Impl16382); \n after(grammarAccess.getAstActorAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1531:1: ( ( () ) )\n // InternalCsv.g:1532:1: ( () )\n {\n // InternalCsv.g:1532:1: ( () )\n // InternalCsv.g:1533:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n // InternalCsv.g:1534:2: ()\n // InternalCsv.g:1534:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3549:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3550:2: rule__Import__Group__0__Impl rule__Import__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__07845);\r\n rule__Import__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__07848);\r\n rule__Import__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1153:1: ( ( '(' ) )\n // InternalCsv.g:1154:1: ( '(' )\n {\n // InternalCsv.g:1154:1: ( '(' )\n // InternalCsv.g:1155:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3598:1: ( rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1 )\n // InternalCsv.g:3599:2: rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameInStaticImport__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameInStaticImport__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7715057", "0.75372577", "0.7291391", "0.71596557", "0.7158639", "0.7131701", "0.7093056", "0.70592475", "0.6868392", "0.6525014", "0.63957536", "0.63473415", "0.6249287", "0.619727", "0.6138918", "0.6095734", "0.6070943", "0.599107", "0.59873456", "0.5954187", "0.59152174", "0.5890449", "0.5859025", "0.56925315", "0.55335337", "0.55317265", "0.5478049", "0.5450156", "0.54342985", "0.5331858", "0.5331098", "0.5318929", "0.5276751", "0.5247983", "0.5208064", "0.5186764", "0.51639456", "0.51595974", "0.5157878", "0.5156839", "0.51457566", "0.5127332", "0.5126224", "0.5101011", "0.50995165", "0.50830895", "0.5073398", "0.5071631", "0.50645345", "0.5062429", "0.50578356", "0.5057355", "0.50526154", "0.50243074", "0.501075", "0.50076365", "0.50034755", "0.4982764", "0.49808827", "0.49733803", "0.49651825", "0.49518093", "0.49414334", "0.49288073", "0.49231368", "0.49225882", "0.49193656", "0.49129167", "0.4891758", "0.48883814", "0.4886303", "0.4885646", "0.48842677", "0.48809746", "0.48674163", "0.48518664", "0.4851591", "0.48463342", "0.4842006", "0.48394442", "0.4838121", "0.48360562", "0.482852", "0.48282257", "0.48167646", "0.48134327", "0.4808268", "0.48052654", "0.48023492", "0.48013222", "0.47989017", "0.47959933", "0.47952515", "0.47943985", "0.4793436", "0.47865716", "0.47862178", "0.47860497", "0.47758466", "0.4775209" ]
0.86177355
0
$ANTLR end "ruleOpenCSV" $ANTLR start "entryRuleRefOpenAction" InternalCsv.g:154:1: entryRuleRefOpenAction : ruleRefOpenAction EOF ;
public final void entryRuleRefOpenAction() throws RecognitionException { try { // InternalCsv.g:155:1: ( ruleRefOpenAction EOF ) // InternalCsv.g:156:1: ruleRefOpenAction EOF { if ( state.backtracking==0 ) { before(grammarAccess.getRefOpenActionRule()); } pushFollow(FOLLOW_1); ruleRefOpenAction(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getRefOpenActionRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleRefOpenAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) )\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n {\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives )\n // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__RefOpenAction__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__PrintCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3791:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n // InternalCsv.g:3793:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3794:3: ( RULE_ID )\n // InternalCsv.g:3795:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3848:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n // InternalCsv.g:3850:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3851:3: ( RULE_ID )\n // InternalCsv.g:3852:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3810:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n // InternalCsv.g:3812:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3813:3: ( RULE_ID )\n // InternalCsv.g:3814:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleOpenField() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleOpenField = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1138:2: (iv_ruleOpenField= ruleOpenField EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1139:2: iv_ruleOpenField= ruleOpenField EOF\n {\n newCompositeNode(grammarAccess.getOpenFieldRule()); \n pushFollow(FollowSets000.FOLLOW_ruleOpenField_in_entryRuleOpenField2285);\n iv_ruleOpenField=ruleOpenField();\n\n state._fsp--;\n\n current =iv_ruleOpenField; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleOpenField2295); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__NbCol__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3829:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n // InternalCsv.g:3831:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3832:3: ( RULE_ID )\n // InternalCsv.g:3833:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3742:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3743:2: ( RULE_STRING )\n {\n // InternalCsv.g:3743:2: ( RULE_STRING )\n // InternalCsv.g:3744:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\n try {\n // InternalCsv.g:330:1: ( ruleXFunctionTypeRef EOF )\n // InternalCsv.g:331:1: ruleXFunctionTypeRef EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void open() throws RecognitionException {\r\n Token a=null;\r\n\r\n try {\r\n // D:\\\\entornotrabajo\\\\workspace-sgo\\\\persistance\\\\src\\\\main\\\\java\\\\es\\\\caser\\\\persistance\\\\sql\\\\antlr\\\\SQLGrammar.g:194:6: ( (a= OPEN ) )\r\n // D:\\\\entornotrabajo\\\\workspace-sgo\\\\persistance\\\\src\\\\main\\\\java\\\\es\\\\caser\\\\persistance\\\\sql\\\\antlr\\\\SQLGrammar.g:194:8: (a= OPEN )\r\n {\r\n // D:\\\\entornotrabajo\\\\workspace-sgo\\\\persistance\\\\src\\\\main\\\\java\\\\es\\\\caser\\\\persistance\\\\sql\\\\antlr\\\\SQLGrammar.g:194:8: (a= OPEN )\r\n // D:\\\\entornotrabajo\\\\workspace-sgo\\\\persistance\\\\src\\\\main\\\\java\\\\es\\\\caser\\\\persistance\\\\sql\\\\antlr\\\\SQLGrammar.g:194:9: a= OPEN\r\n {\r\n a=(Token)match(input,OPEN,FOLLOW_OPEN_in_open1183); \r\n out(\"(\");\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1503:1: ( ( ( rule__PrintCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1505:2: ( rule__PrintCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1506:2: ( rule__PrintCSV__OpenAssignment_2 )\n // InternalCsv.g:1506:3: rule__PrintCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private Ref handleRef() throws XMLStreamException{\n String name = reader.getAttributeValue(0);\n nextTag();\n nextTag();\n return new Ref(definedGrammar, name);\n }", "public final void entryRuleActivity() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:118:1: ( ruleActivity EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:119:1: ruleActivity EOF\n {\n before(grammarAccess.getActivityRule()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_entryRuleActivity181);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getActivityRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleActivity188); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__NameAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3727:1: ( ( RULE_ID ) )\n // InternalCsv.g:3728:2: ( RULE_ID )\n {\n // InternalCsv.g:3728:2: ( RULE_ID )\n // InternalCsv.g:3729:3: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getNameIDTerminalRuleCall_2_0()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getNameIDTerminalRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Alternatives_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==40) ) {\n alt4=1;\n }\n else if ( (LA4_0==12) ) {\n alt4=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n {\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__HeaderAssignment_7_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:713:2: ( 'false' )\n {\n // InternalCsv.g:713:2: ( 'false' )\n // InternalCsv.g:714:3: 'false'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n match(input,12,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "protected AbstractCSVParser(TokenStream input) {\n super(input);\n }", "void openWithRule () \n throws IOException, FileNotFoundException {\n for (int i = 1; i <= MAX_CATEGORY_LEVEL; i++) {\n storeField (CATEGORY_FIELD_NAME [i], \"\");\n category [i] = \"\";\n }\n storeField (ANCHOR, \"\");\n storeField (EMAIL, \"\");\n storeField (URL, \"\");\n getNextLine();\n\t\tgetNextCharacter();\n }", "public BondType(String mainTag, String mainTable, String refTable, String actionTable, boolean knownActionFlags) {\n open = false;\n\n this.mainTag = mainTag;\n this.mainTable = mainTable;\n this.refTable = refTable;\n this.knownActionFlags = knownActionFlags;\n actions = new TwoFieldXMLParser(actionTable,\n BondTypeTags.getInstance().ACTIONS, BondTypeTags.getInstance().ACTION);\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic Handle tokenRef(TerminalAST node) {\n\t\tif (node.getText().equals(\"EOF\") ) {\n\t\t\tATNState left = newState(node);\n\t\t\tATNState right = newState(node);\n\t\t\tleft.addTransition(new AtomTransition(right, IntStream.EOF));\n\t\t\treturn new Handle(left, right);\n\t\t}\n\t\treturn _ruleRef(node);\n\t}", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "public final void rule__OpenCSV__HeaderAssignment_7_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3772:1: ( ( ( 'true' ) ) )\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n {\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n // InternalCsv.g:3774:3: ( 'true' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n // InternalCsv.g:3775:3: ( 'true' )\n // InternalCsv.g:3776:4: 'true'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n match(input,40,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1747:1: ( ( ( rule__SaveCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1749:2: ( rule__SaveCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1750:2: ( rule__SaveCSV__OpenAssignment_2 )\n // InternalCsv.g:1750:3: rule__SaveCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:280:1: ( ruleAction EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:281:1: ruleAction EOF\n {\n before(grammarAccess.getActionRule()); \n pushFollow(FOLLOW_ruleAction_in_entryRuleAction480);\n ruleAction();\n\n state._fsp--;\n\n after(grammarAccess.getActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAction487); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final EObject entryRuleJoinOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJoinOperator = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:537:2: (iv_ruleJoinOperator= ruleJoinOperator EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:538:2: iv_ruleJoinOperator= ruleJoinOperator EOF\n {\n newCompositeNode(grammarAccess.getJoinOperatorRule()); \n pushFollow(FOLLOW_ruleJoinOperator_in_entryRuleJoinOperator1182);\n iv_ruleJoinOperator=ruleJoinOperator();\n\n state._fsp--;\n\n current =iv_ruleJoinOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleJoinOperator1192); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2124:1: ( ( ')' ) )\n // InternalCsv.g:2125:1: ( ')' )\n {\n // InternalCsv.g:2125:1: ( ')' )\n // InternalCsv.g:2126:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "public static void main(String[] args) throws IOException {\n\t\t\n\t\tFileManager csv=new FileManager();\n\t\t\n\t\tcsv.readListOfFiles();\n\t\tcsv.readFile();\n\t\t\n\t\t//csv.tk.displayTokens();\n\t\t//csv.it.displayHashMap();\n\t\tcsv.writeTokensToFile(csv.tk.tokensMap);\n\t\tcsv.matcher.longestSequence(csv.it);\t//csv.it.intTokenList was supposed to be passed but since I need csv.it object in caller so im passing it\n\t\tcsv.matcher.displaySubsequences(csv.it);\n\t\tcsv.writeMatchesToFile(csv.matcher.resultMap,csv.it);\n\t System.out.println(\"\\nProgram Ends \");\n\t \t \n\t}", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2206:1: ( ( ',' ) )\n // InternalCsv.g:2207:1: ( ',' )\n {\n // InternalCsv.g:2207:1: ( ',' )\n // InternalCsv.g:2208:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleConstDecl() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1505:1: ( ruleConstDecl EOF )\r\n // InternalGo.g:1506:1: ruleConstDecl EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConstDeclRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleConstDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConstDeclRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "@Override\n DBO consume(String csv) throws TransformerException;", "public final void entryRuleSaveCSV() throws RecognitionException {\n try {\n // InternalCsv.g:255:1: ( ruleSaveCSV EOF )\n // InternalCsv.g:256:1: ruleSaveCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleReference() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:136:1: ( ruleReference EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:137:1: ruleReference EOF\n {\n before(grammarAccess.getReferenceRule()); \n pushFollow(FOLLOW_ruleReference_in_entryRuleReference204);\n ruleReference();\n\n state._fsp--;\n\n after(grammarAccess.getReferenceRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleReference211); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public void fileOpened(OpenDefinitionsDocument doc) { }", "public void fileOpened(OpenDefinitionsDocument doc) { }", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2071:1: ( ( '(' ) )\n // InternalCsv.g:2072:1: ( '(' )\n {\n // InternalCsv.g:2072:1: ( '(' )\n // InternalCsv.g:2073:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "ActionOpen()\n {\n super(\"Open\");\n this.setShortcut(UtilGUI.createKeyStroke('O', true));\n }", "public final EObject entryRuleClickOn() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleClickOn = null;\n\n\n try {\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:611:2: (iv_ruleClickOn= ruleClickOn EOF )\n // ../org.xtext.example.browser/src-gen/org/xtext/example/browser/parser/antlr/internal/InternalBrowser.g:612:2: iv_ruleClickOn= ruleClickOn EOF\n {\n newCompositeNode(grammarAccess.getClickOnRule()); \n pushFollow(FOLLOW_ruleClickOn_in_entryRuleClickOn1132);\n iv_ruleClickOn=ruleClickOn();\n\n state._fsp--;\n\n current =iv_ruleClickOn; \n match(input,EOF,FOLLOW_EOF_in_entryRuleClickOn1142); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final String entryRuleRelationalOp() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleRelationalOp = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2975:2: (iv_ruleRelationalOp= ruleRelationalOp EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2976:2: iv_ruleRelationalOp= ruleRelationalOp EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getRelationalOpRule()); \n }\n pushFollow(FOLLOW_ruleRelationalOp_in_entryRuleRelationalOp7036);\n iv_ruleRelationalOp=ruleRelationalOp();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleRelationalOp.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleRelationalOp7047); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "@Override\n public String visit(ModuleOpensDirective n, Object arg) {\n return null;\n }", "protected AbstractCSVParser(TokenStream input, RecognizerSharedState state) {\n super(input, state);\n }", "public final void entryRuleValidID() throws RecognitionException {\n try {\n // InternalCsv.g:580:1: ( ruleValidID EOF )\n // InternalCsv.g:581:1: ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_1);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getValidIDRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "private ReoFile<T> parse(CharStream c) throws IOException {\n\t\tReoLexer lexer = new ReoLexer(c); \n\t\tCommonTokenStream tokens = new CommonTokenStream(lexer);\n\t\t\n\t\tReoParser parser = new ReoParser(tokens);\n\t\tMyErrorListener errListener = new MyErrorListener();\n\t\tparser.removeErrorListeners();\n\t\tparser.addErrorListener(errListener);\n\t\t\n\t\tParseTree tree = parser.file();\n\t\tif (errListener.hasError)\n\t\t\treturn null;\n\t\t\n\t\tParseTreeWalker walker = new ParseTreeWalker();\n\t\twalker.walk(listener, tree);\n\t\treturn listener.getMain();\n\t}", "public void testConstructorWithURL() throws Exception {\r\n\t\tString [] r1 = {\"NAME\", \"ADDRESS\",\"EMAIL\"};\r\n\t\t// should not remove space inside of quotes\r\n\t\tString [] r2 = {\"Santa\",\"North Pole\",\"[email protected]\"};\r\n\t\twriteArrayToLine(r1);\r\n\t\twriteArrayToLine(r2);\r\n\t\tout.close();\r\n\t\tString url = file.toURI().toString();\r\n\t\t// add gratuitous \"//\" after protocol to match pattern in assignment\r\n\t\tif (url.startsWith(\"file:\")) url = \"file://\" +url.substring(5);\r\n\t\t// System.out.println(\"test: new CSVReader(\"+url+\")\");\r\n\t\tCSVReader csv = new CSVReader(url);\r\n\t\tassertTrue(\"Open with url \"+url, csv.hasNext());\r\n\t\tassertArrayEquals( r1, csv.next() );\r\n\t}", "public final EObject entryRuleFieldReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleFieldReference = null;\n\n\n try {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:254:2: (iv_ruleFieldReference= ruleFieldReference EOF )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:255:2: iv_ruleFieldReference= ruleFieldReference EOF\n {\n newCompositeNode(grammarAccess.getFieldReferenceRule()); \n pushFollow(FOLLOW_ruleFieldReference_in_entryRuleFieldReference479);\n iv_ruleFieldReference=ruleFieldReference();\n\n state._fsp--;\n\n current =iv_ruleFieldReference; \n match(input,EOF,FOLLOW_EOF_in_entryRuleFieldReference489); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:140:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) ) )\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n {\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n // InternalMyDsl.g:142:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n {\n otherlv_0=(Token)match(input,19,FOLLOW_5); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n }\n // InternalMyDsl.g:146:3: ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n {\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n // InternalMyDsl.g:148:5: lv_importURI_1_0= RULE_IMPORT_URI\n {\n lv_importURI_1_0=(Token)match(input,RULE_IMPORT_URI,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURIIMPORT_URITerminalRuleCall_1_0());\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.xtext.example.mydsl.MyDsl.IMPORT_URI\");\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) )\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n {\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n // InternalCsv.g:119:3: ( rule__Action__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getAlternatives()); \n }\n // InternalCsv.g:120:3: ( rule__Action__Alternatives )\n // InternalCsv.g:120:4: rule__Action__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Action__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void openOtherRecords()\n {\n Booking recBooking = (Booking)this.getRecord(Booking.BOOKING_FILE);\n Tour recTour = (Tour)((ReferenceField)recBooking.getField(Booking.TOUR_ID)).getReferenceRecord(this);\n super.openOtherRecords();\n }", "public final void rule__OpenCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1261:1: ( ( 'read' ) )\n // InternalCsv.g:1262:1: ( 'read' )\n {\n // InternalCsv.g:1262:1: ( 'read' )\n // InternalCsv.g:1263:2: 'read'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n match(input,20,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleEnum() throws RecognitionException {\n try {\n // InternalMyDsl.g:304:1: ( ruleEnum EOF )\n // InternalMyDsl.g:305:1: ruleEnum EOF\n {\n before(grammarAccess.getEnumRule()); \n pushFollow(FOLLOW_1);\n ruleEnum();\n\n state._fsp--;\n\n after(grammarAccess.getEnumRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2017:1: ( ( '=>' ) )\n // InternalCsv.g:2018:1: ( '=>' )\n {\n // InternalCsv.g:2018:1: ( '=>' )\n // InternalCsv.g:2019:2: '=>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n match(input,29,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRULE_ACTION_CHAR_LITERAL() throws RecognitionException {\n try {\n // InternalUniMapperGenerator.g:5129:35: ( '\\\\'' ( RULE_ACTION_ESC | ~ ( ( '\\\\\\\\' | '\\\\'' ) ) )* '\\\\'' )\n // InternalUniMapperGenerator.g:5129:37: '\\\\'' ( RULE_ACTION_ESC | ~ ( ( '\\\\\\\\' | '\\\\'' ) ) )* '\\\\''\n {\n match('\\''); \n // InternalUniMapperGenerator.g:5129:42: ( RULE_ACTION_ESC | ~ ( ( '\\\\\\\\' | '\\\\'' ) ) )*\n loop10:\n do {\n int alt10=3;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0=='\\\\') ) {\n alt10=1;\n }\n else if ( ((LA10_0>='\\u0000' && LA10_0<='&')||(LA10_0>='(' && LA10_0<='[')||(LA10_0>=']' && LA10_0<='\\uFFFF')) ) {\n alt10=2;\n }\n\n\n switch (alt10) {\n \tcase 1 :\n \t // InternalUniMapperGenerator.g:5129:43: RULE_ACTION_ESC\n \t {\n \t mRULE_ACTION_ESC(); \n\n \t }\n \t break;\n \tcase 2 :\n \t // InternalUniMapperGenerator.g:5129:59: ~ ( ( '\\\\\\\\' | '\\\\'' ) )\n \t {\n \t if ( (input.LA(1)>='\\u0000' && input.LA(1)<='&')||(input.LA(1)>='(' && input.LA(1)<='[')||(input.LA(1)>=']' && input.LA(1)<='\\uFFFF') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop10;\n }\n } while (true);\n\n match('\\''); \n\n }\n\n }\n finally {\n }\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleOpCompare() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:730:1: ( ruleOpCompare EOF )\r\n // InternalDroneScript.g:731:1: ruleOpCompare EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleOpCompare();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // InternalCsv.g:530:1: ( ruleQualifiedName EOF )\n // InternalCsv.g:531:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:229:1: ( ruleImport EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:230:1: ruleImport EOF\n {\n before(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport421);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getImportRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleXImportDeclaration() throws RecognitionException {\n try {\n // InternalCsv.g:605:1: ( ruleXImportDeclaration EOF )\n // InternalCsv.g:606:1: ruleXImportDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXImportDeclaration();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void open (\n long timestamp,\n boolean forward,\n EntityFilter filter\n );", "public final void rule__OpenCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1288:1: ( ( ( rule__OpenCSV__NameAssignment_2 ) ) )\n // InternalCsv.g:1289:1: ( ( rule__OpenCSV__NameAssignment_2 ) )\n {\n // InternalCsv.g:1289:1: ( ( rule__OpenCSV__NameAssignment_2 ) )\n // InternalCsv.g:1290:2: ( rule__OpenCSV__NameAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getNameAssignment_2()); \n }\n // InternalCsv.g:1291:2: ( rule__OpenCSV__NameAssignment_2 )\n // InternalCsv.g:1291:3: rule__OpenCSV__NameAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__NameAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getNameAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1369:1: ( ( 'header' ) )\n // InternalCsv.g:1370:1: ( 'header' )\n {\n // InternalCsv.g:1370:1: ( 'header' )\n // InternalCsv.g:1371:2: 'header'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n match(input,21,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final ANTLRv3Parser.atom_return atom() throws RecognitionException {\r\n ANTLRv3Parser.atom_return retval = new ANTLRv3Parser.atom_return();\r\n retval.start = input.LT(1);\r\n\r\n\r\n CommonTree root_0 = null;\r\n\r\n Token op=null;\r\n Token RULE_REF110=null;\r\n Token ARG_ACTION111=null;\r\n ANTLRv3Parser.terminal_return terminal107 =null;\r\n\r\n ANTLRv3Parser.range_return range108 =null;\r\n\r\n ANTLRv3Parser.notSet_return notSet109 =null;\r\n\r\n\r\n CommonTree op_tree=null;\r\n CommonTree RULE_REF110_tree=null;\r\n CommonTree ARG_ACTION111_tree=null;\r\n RewriteRuleTokenStream stream_BANG=new RewriteRuleTokenStream(adaptor,\"token BANG\");\r\n RewriteRuleTokenStream stream_ROOT=new RewriteRuleTokenStream(adaptor,\"token ROOT\");\r\n RewriteRuleTokenStream stream_RULE_REF=new RewriteRuleTokenStream(adaptor,\"token RULE_REF\");\r\n RewriteRuleTokenStream stream_ARG_ACTION=new RewriteRuleTokenStream(adaptor,\"token ARG_ACTION\");\r\n RewriteRuleSubtreeStream stream_range=new RewriteRuleSubtreeStream(adaptor,\"rule range\");\r\n RewriteRuleSubtreeStream stream_notSet=new RewriteRuleSubtreeStream(adaptor,\"rule notSet\");\r\n try {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:255:5: ( terminal | range ( (op= '^' |op= '!' ) -> ^( $op range ) | -> range ) | notSet ( (op= '^' |op= '!' ) -> ^( $op notSet ) | -> notSet ) | RULE_REF ( ARG_ACTION )? ( (op= '^' |op= '!' ) -> ^( $op RULE_REF ( ARG_ACTION )? ) | -> ^( RULE_REF ( ARG_ACTION )? ) ) )\r\n int alt54=4;\r\n switch ( input.LA(1) ) {\r\n case CHAR_LITERAL:\r\n {\r\n int LA54_1 = input.LA(2);\r\n\r\n if ( (LA54_1==RANGE) ) {\r\n alt54=2;\r\n }\r\n else if ( (LA54_1==ACTION||LA54_1==BANG||LA54_1==CHAR_LITERAL||(LA54_1 >= REWRITE && LA54_1 <= ROOT)||LA54_1==RULE_REF||LA54_1==SEMPRED||LA54_1==STRING_LITERAL||(LA54_1 >= TOKEN_REF && LA54_1 <= TREE_BEGIN)||(LA54_1 >= 68 && LA54_1 <= 71)||LA54_1==73||(LA54_1 >= 76 && LA54_1 <= 77)||LA54_1==80||LA54_1==91||LA54_1==93) ) {\r\n alt54=1;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return retval;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 54, 1, input);\r\n\r\n throw nvae;\r\n\r\n }\r\n }\r\n break;\r\n case STRING_LITERAL:\r\n case TOKEN_REF:\r\n case 73:\r\n {\r\n alt54=1;\r\n }\r\n break;\r\n case 93:\r\n {\r\n alt54=3;\r\n }\r\n break;\r\n case RULE_REF:\r\n {\r\n alt54=4;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return retval;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 54, 0, input);\r\n\r\n throw nvae;\r\n\r\n }\r\n\r\n switch (alt54) {\r\n case 1 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:255:9: terminal\r\n {\r\n root_0 = (CommonTree)adaptor.nil();\r\n\r\n\r\n pushFollow(FOLLOW_terminal_in_atom1800);\r\n terminal107=terminal();\r\n\r\n state._fsp--;\r\n if (state.failed) return retval;\r\n if ( state.backtracking==0 ) adaptor.addChild(root_0, terminal107.getTree());\r\n\r\n }\r\n break;\r\n case 2 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:256:4: range ( (op= '^' |op= '!' ) -> ^( $op range ) | -> range )\r\n {\r\n pushFollow(FOLLOW_range_in_atom1805);\r\n range108=range();\r\n\r\n state._fsp--;\r\n if (state.failed) return retval;\r\n if ( state.backtracking==0 ) stream_range.add(range108.getTree());\r\n\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:257:3: ( (op= '^' |op= '!' ) -> ^( $op range ) | -> range )\r\n int alt48=2;\r\n int LA48_0 = input.LA(1);\r\n\r\n if ( (LA48_0==BANG||LA48_0==ROOT) ) {\r\n alt48=1;\r\n }\r\n else if ( (LA48_0==ACTION||LA48_0==CHAR_LITERAL||LA48_0==REWRITE||LA48_0==RULE_REF||LA48_0==SEMPRED||LA48_0==STRING_LITERAL||(LA48_0 >= TOKEN_REF && LA48_0 <= TREE_BEGIN)||(LA48_0 >= 68 && LA48_0 <= 71)||LA48_0==73||LA48_0==76||LA48_0==80||LA48_0==91||LA48_0==93) ) {\r\n alt48=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return retval;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 48, 0, input);\r\n\r\n throw nvae;\r\n\r\n }\r\n switch (alt48) {\r\n case 1 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:257:5: (op= '^' |op= '!' )\r\n {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:257:5: (op= '^' |op= '!' )\r\n int alt47=2;\r\n int LA47_0 = input.LA(1);\r\n\r\n if ( (LA47_0==ROOT) ) {\r\n alt47=1;\r\n }\r\n else if ( (LA47_0==BANG) ) {\r\n alt47=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return retval;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 47, 0, input);\r\n\r\n throw nvae;\r\n\r\n }\r\n switch (alt47) {\r\n case 1 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:257:6: op= '^'\r\n {\r\n op=(Token)match(input,ROOT,FOLLOW_ROOT_in_atom1815); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_ROOT.add(op);\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:257:13: op= '!'\r\n {\r\n op=(Token)match(input,BANG,FOLLOW_BANG_in_atom1819); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_BANG.add(op);\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n // AST REWRITE\r\n // elements: range, op\r\n // token labels: op\r\n // rule labels: retval\r\n // token list labels: \r\n // rule list labels: \r\n // wildcard labels: \r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = root_0;\r\n RewriteRuleTokenStream stream_op=new RewriteRuleTokenStream(adaptor,\"token op\",op);\r\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\r\n\r\n root_0 = (CommonTree)adaptor.nil();\r\n // 257:21: -> ^( $op range )\r\n {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:257:24: ^( $op range )\r\n {\r\n CommonTree root_1 = (CommonTree)adaptor.nil();\r\n root_1 = (CommonTree)adaptor.becomeRoot(stream_op.nextNode(), root_1);\r\n\r\n adaptor.addChild(root_1, stream_range.nextTree());\r\n\r\n adaptor.addChild(root_0, root_1);\r\n }\r\n\r\n }\r\n\r\n\r\n retval.tree = root_0;\r\n }\r\n\r\n }\r\n break;\r\n case 2 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:258:9: \r\n {\r\n // AST REWRITE\r\n // elements: range\r\n // token labels: \r\n // rule labels: retval\r\n // token list labels: \r\n // rule list labels: \r\n // wildcard labels: \r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = root_0;\r\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\r\n\r\n root_0 = (CommonTree)adaptor.nil();\r\n // 258:9: -> range\r\n {\r\n adaptor.addChild(root_0, stream_range.nextTree());\r\n\r\n }\r\n\r\n\r\n retval.tree = root_0;\r\n }\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:260:7: notSet ( (op= '^' |op= '!' ) -> ^( $op notSet ) | -> notSet )\r\n {\r\n pushFollow(FOLLOW_notSet_in_atom1853);\r\n notSet109=notSet();\r\n\r\n state._fsp--;\r\n if (state.failed) return retval;\r\n if ( state.backtracking==0 ) stream_notSet.add(notSet109.getTree());\r\n\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:261:3: ( (op= '^' |op= '!' ) -> ^( $op notSet ) | -> notSet )\r\n int alt50=2;\r\n int LA50_0 = input.LA(1);\r\n\r\n if ( (LA50_0==BANG||LA50_0==ROOT) ) {\r\n alt50=1;\r\n }\r\n else if ( (LA50_0==ACTION||LA50_0==CHAR_LITERAL||LA50_0==REWRITE||LA50_0==RULE_REF||LA50_0==SEMPRED||LA50_0==STRING_LITERAL||(LA50_0 >= TOKEN_REF && LA50_0 <= TREE_BEGIN)||(LA50_0 >= 68 && LA50_0 <= 71)||LA50_0==73||LA50_0==76||LA50_0==80||LA50_0==91||LA50_0==93) ) {\r\n alt50=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return retval;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 50, 0, input);\r\n\r\n throw nvae;\r\n\r\n }\r\n switch (alt50) {\r\n case 1 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:261:5: (op= '^' |op= '!' )\r\n {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:261:5: (op= '^' |op= '!' )\r\n int alt49=2;\r\n int LA49_0 = input.LA(1);\r\n\r\n if ( (LA49_0==ROOT) ) {\r\n alt49=1;\r\n }\r\n else if ( (LA49_0==BANG) ) {\r\n alt49=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return retval;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 49, 0, input);\r\n\r\n throw nvae;\r\n\r\n }\r\n switch (alt49) {\r\n case 1 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:261:6: op= '^'\r\n {\r\n op=(Token)match(input,ROOT,FOLLOW_ROOT_in_atom1862); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_ROOT.add(op);\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:261:13: op= '!'\r\n {\r\n op=(Token)match(input,BANG,FOLLOW_BANG_in_atom1866); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_BANG.add(op);\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n // AST REWRITE\r\n // elements: notSet, op\r\n // token labels: op\r\n // rule labels: retval\r\n // token list labels: \r\n // rule list labels: \r\n // wildcard labels: \r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = root_0;\r\n RewriteRuleTokenStream stream_op=new RewriteRuleTokenStream(adaptor,\"token op\",op);\r\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\r\n\r\n root_0 = (CommonTree)adaptor.nil();\r\n // 261:21: -> ^( $op notSet )\r\n {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:261:24: ^( $op notSet )\r\n {\r\n CommonTree root_1 = (CommonTree)adaptor.nil();\r\n root_1 = (CommonTree)adaptor.becomeRoot(stream_op.nextNode(), root_1);\r\n\r\n adaptor.addChild(root_1, stream_notSet.nextTree());\r\n\r\n adaptor.addChild(root_0, root_1);\r\n }\r\n\r\n }\r\n\r\n\r\n retval.tree = root_0;\r\n }\r\n\r\n }\r\n break;\r\n case 2 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:262:9: \r\n {\r\n // AST REWRITE\r\n // elements: notSet\r\n // token labels: \r\n // rule labels: retval\r\n // token list labels: \r\n // rule list labels: \r\n // wildcard labels: \r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = root_0;\r\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\r\n\r\n root_0 = (CommonTree)adaptor.nil();\r\n // 262:9: -> notSet\r\n {\r\n adaptor.addChild(root_0, stream_notSet.nextTree());\r\n\r\n }\r\n\r\n\r\n retval.tree = root_0;\r\n }\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 4 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:264:9: RULE_REF ( ARG_ACTION )? ( (op= '^' |op= '!' ) -> ^( $op RULE_REF ( ARG_ACTION )? ) | -> ^( RULE_REF ( ARG_ACTION )? ) )\r\n {\r\n RULE_REF110=(Token)match(input,RULE_REF,FOLLOW_RULE_REF_in_atom1902); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_RULE_REF.add(RULE_REF110);\r\n\r\n\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:264:18: ( ARG_ACTION )?\r\n int alt51=2;\r\n int LA51_0 = input.LA(1);\r\n\r\n if ( (LA51_0==ARG_ACTION) ) {\r\n alt51=1;\r\n }\r\n switch (alt51) {\r\n case 1 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:264:18: ARG_ACTION\r\n {\r\n ARG_ACTION111=(Token)match(input,ARG_ACTION,FOLLOW_ARG_ACTION_in_atom1904); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_ARG_ACTION.add(ARG_ACTION111);\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:265:3: ( (op= '^' |op= '!' ) -> ^( $op RULE_REF ( ARG_ACTION )? ) | -> ^( RULE_REF ( ARG_ACTION )? ) )\r\n int alt53=2;\r\n int LA53_0 = input.LA(1);\r\n\r\n if ( (LA53_0==BANG||LA53_0==ROOT) ) {\r\n alt53=1;\r\n }\r\n else if ( (LA53_0==ACTION||LA53_0==CHAR_LITERAL||LA53_0==REWRITE||LA53_0==RULE_REF||LA53_0==SEMPRED||LA53_0==STRING_LITERAL||(LA53_0 >= TOKEN_REF && LA53_0 <= TREE_BEGIN)||(LA53_0 >= 68 && LA53_0 <= 71)||LA53_0==73||LA53_0==76||LA53_0==80||LA53_0==91||LA53_0==93) ) {\r\n alt53=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return retval;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 53, 0, input);\r\n\r\n throw nvae;\r\n\r\n }\r\n switch (alt53) {\r\n case 1 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:265:5: (op= '^' |op= '!' )\r\n {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:265:5: (op= '^' |op= '!' )\r\n int alt52=2;\r\n int LA52_0 = input.LA(1);\r\n\r\n if ( (LA52_0==ROOT) ) {\r\n alt52=1;\r\n }\r\n else if ( (LA52_0==BANG) ) {\r\n alt52=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return retval;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 52, 0, input);\r\n\r\n throw nvae;\r\n\r\n }\r\n switch (alt52) {\r\n case 1 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:265:6: op= '^'\r\n {\r\n op=(Token)match(input,ROOT,FOLLOW_ROOT_in_atom1914); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_ROOT.add(op);\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:265:13: op= '!'\r\n {\r\n op=(Token)match(input,BANG,FOLLOW_BANG_in_atom1918); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_BANG.add(op);\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n // AST REWRITE\r\n // elements: ARG_ACTION, op, RULE_REF\r\n // token labels: op\r\n // rule labels: retval\r\n // token list labels: \r\n // rule list labels: \r\n // wildcard labels: \r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = root_0;\r\n RewriteRuleTokenStream stream_op=new RewriteRuleTokenStream(adaptor,\"token op\",op);\r\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\r\n\r\n root_0 = (CommonTree)adaptor.nil();\r\n // 265:21: -> ^( $op RULE_REF ( ARG_ACTION )? )\r\n {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:265:24: ^( $op RULE_REF ( ARG_ACTION )? )\r\n {\r\n CommonTree root_1 = (CommonTree)adaptor.nil();\r\n root_1 = (CommonTree)adaptor.becomeRoot(stream_op.nextNode(), root_1);\r\n\r\n adaptor.addChild(root_1, \r\n stream_RULE_REF.nextNode()\r\n );\r\n\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:265:39: ( ARG_ACTION )?\r\n if ( stream_ARG_ACTION.hasNext() ) {\r\n adaptor.addChild(root_1, \r\n stream_ARG_ACTION.nextNode()\r\n );\r\n\r\n }\r\n stream_ARG_ACTION.reset();\r\n\r\n adaptor.addChild(root_0, root_1);\r\n }\r\n\r\n }\r\n\r\n\r\n retval.tree = root_0;\r\n }\r\n\r\n }\r\n break;\r\n case 2 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:266:9: \r\n {\r\n // AST REWRITE\r\n // elements: ARG_ACTION, RULE_REF\r\n // token labels: \r\n // rule labels: retval\r\n // token list labels: \r\n // rule list labels: \r\n // wildcard labels: \r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = root_0;\r\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\r\n\r\n root_0 = (CommonTree)adaptor.nil();\r\n // 266:9: -> ^( RULE_REF ( ARG_ACTION )? )\r\n {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:266:12: ^( RULE_REF ( ARG_ACTION )? )\r\n {\r\n CommonTree root_1 = (CommonTree)adaptor.nil();\r\n root_1 = (CommonTree)adaptor.becomeRoot(\r\n stream_RULE_REF.nextNode()\r\n , root_1);\r\n\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:266:23: ( ARG_ACTION )?\r\n if ( stream_ARG_ACTION.hasNext() ) {\r\n adaptor.addChild(root_1, \r\n stream_ARG_ACTION.nextNode()\r\n );\r\n\r\n }\r\n stream_ARG_ACTION.reset();\r\n\r\n adaptor.addChild(root_0, root_1);\r\n }\r\n\r\n }\r\n\r\n\r\n retval.tree = root_0;\r\n }\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n retval.stop = input.LT(-1);\r\n\r\n\r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = (CommonTree)adaptor.rulePostProcessing(root_0);\r\n adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n \tretval.tree = (CommonTree)adaptor.errorNode(input, retval.start, input.LT(-1), re);\r\n\r\n }\r\n\r\n finally {\r\n \t// do for sure before leaving\r\n }\r\n return retval;\r\n }", "public final void entryRuleUniformReference() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1288:1: ( ruleUniformReference EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1289:1: ruleUniformReference EOF\n {\n before(grammarAccess.getUniformReferenceRule()); \n pushFollow(FOLLOW_ruleUniformReference_in_entryRuleUniformReference2408);\n ruleUniformReference();\n\n state._fsp--;\n\n after(grammarAccess.getUniformReferenceRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleUniformReference2415); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "boolean filter(List<ReferenceOrderedDatum> rodData, char ref, LocusContext context);", "protected abstract <T extends ReferenceAnnotation> AnnotationImporter<T> getImporter(ReferenceMetadata<T> ref);", "private Reference parseReference(Record record) {\n return new Reference(record.value(CommonTerms.identifierTerm),\n record.value(TermFactory.instance().findTerm(TermURIs.publicationTypeURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.fullReferenceURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.primaryTitleURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.titleURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.pagesURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.pageStartURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.pageEndURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.volumeURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.editionURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.publisherURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.authorsListURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.editorsListURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.createdURI)),\n record.value(CommonTerms.languageTerm),\n record.value(TermFactory.instance().findTerm(TermURIs.uriURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.doiURI)),\n record.value(TermFactory.instance().findTerm(TermURIs.localityOfPublisherURI)));\n }", "public final void rule__XFunctionTypeRef__Group_0_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11350:1: ( ( ',' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11351:1: ( ',' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11351:1: ( ',' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11352:1: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_2_0()); \n }\n match(input,39,FOLLOW_39_in_rule__XFunctionTypeRef__Group_0_2__0__Impl22780); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleFieldReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n\n enterRule(); \n \n try {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:265:28: ( (otherlv_0= 'ref' ( (otherlv_1= RULE_ID ) ) ) )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:266:1: (otherlv_0= 'ref' ( (otherlv_1= RULE_ID ) ) )\n {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:266:1: (otherlv_0= 'ref' ( (otherlv_1= RULE_ID ) ) )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:266:3: otherlv_0= 'ref' ( (otherlv_1= RULE_ID ) )\n {\n otherlv_0=(Token)match(input,16,FOLLOW_16_in_ruleFieldReference526); \n\n \tnewLeafNode(otherlv_0, grammarAccess.getFieldReferenceAccess().getRefKeyword_0());\n \n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:270:1: ( (otherlv_1= RULE_ID ) )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:271:1: (otherlv_1= RULE_ID )\n {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:271:1: (otherlv_1= RULE_ID )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:272:3: otherlv_1= RULE_ID\n {\n\n \t\t\tif (current==null) {\n \t current = createModelElement(grammarAccess.getFieldReferenceRule());\n \t }\n \n otherlv_1=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleFieldReference546); \n\n \t\tnewLeafNode(otherlv_1, grammarAccess.getFieldReferenceAccess().getReferenceFieldCrossReference_1_0()); \n \t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2086:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\n // InternalCsv.g:2087:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\n {\n pushFollow(FOLLOW_28);\n rule__XFunctionTypeRef__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalCsv.g:55:1: ( ruleModel EOF )\n // InternalCsv.g:56:1: ruleModel EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelRule()); \n }\n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@OutVertex\n ActionTrigger getSource();", "public final EObject entryRuleMatchOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleMatchOperator = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:964:2: (iv_ruleMatchOperator= ruleMatchOperator EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:965:2: iv_ruleMatchOperator= ruleMatchOperator EOF\n {\n newCompositeNode(grammarAccess.getMatchOperatorRule()); \n pushFollow(FOLLOW_ruleMatchOperator_in_entryRuleMatchOperator2103);\n iv_ruleMatchOperator=ruleMatchOperator();\n\n state._fsp--;\n\n current =iv_ruleMatchOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleMatchOperator2113); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public interface DboCsvTransformer<DBO extends DatabaseObject<?>> extends DboFileTransformer<DBO> {\n\n String COMMA_IN_QUOTES_REGEX = \",(?=(?:[^\\\\\\\"]*\\\\\\\"[^\\\\\\\"]*\\\\\\\")*[^\\\\\\\"]*$)\";\n\n /**\n * This method consumes a single line of CSV to produce a DatabaseObject.\n *\n * @param csv the single line of CSV representing a single DatabaseObject\n * @return the DatabaseObject represented\n * @throws TransformerException if the object cannot be produced\n */\n @Override\n DBO consume(String csv) throws TransformerException;\n\n /**\n * This method consumes a DatabaseObject to produce a String in CSV format.\n *\n * @param object the DatabaseObject\n * @return a String in CSV format\n * @throws TransformerException if the object cannot be consumed\n */\n @Override\n String produce(DBO object) throws TransformerException;\n\n}", "public final void rule__NbCol__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1665:1: ( ( ( rule__NbCol__OpenAssignment_2 ) ) )\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n // InternalCsv.g:1667:2: ( rule__NbCol__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1668:2: ( rule__NbCol__OpenAssignment_2 )\n // InternalCsv.g:1668:3: rule__NbCol__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void exportContact(String csvId) {\n String[] csv= MainActivity.appDb.getEditData(csvId); //get the data ready to export\n //String[] csv = Contact.split(\"~\", -1);\n\n Intent intent = new Intent(Intent.ACTION_INSERT); //create an intent to to place the contact data to the Phone contacts\n intent.setType(ContactsContract.Contacts.CONTENT_TYPE);\n intent.putExtra(ContactsContract.Intents.Insert.NAME, csv[0]); //place the data in the fields\n intent.putExtra(ContactsContract.Intents.Insert.PHONE, csv[1]);\n intent.putExtra(ContactsContract.Intents.Insert.EMAIL, csv[2]);\n intent.putExtra(ContactsContract.Intents.Insert.POSTAL, csv[3]);\n intent.putExtra(ContactsContract.Intents.Insert.COMPANY, csv[4]);\n intent.putExtra(ContactsContract.Intents.Insert.JOB_TITLE, csv[5]);\n ArrayList<ContentValues> data = new ArrayList<ContentValues>(); //use an arraylist containing content values specfically for the website\n\n ContentValues row1 = new ContentValues(); //establish new row\n row1.put(ContactsContract.Data.MIMETYPE, Website.CONTENT_ITEM_TYPE); //specify the type\n row1.put(Website.URL, csv[6]); //insert the website\n row1.put(Website.TYPE, Website.TYPE_WORK);\n\n data.add(row1); //add it to the data entry\n\n\n intent.putParcelableArrayListExtra(ContactsContract.Intents.Insert.DATA, data); //insert the data row in extras\n\n //intent.putExtra(ContactsContract.Intents.Insert.DATA, csv[6]);\n intent.putExtra(ContactsContract.Intents.Insert.NOTES, csv[7]);\n\n startActivity(intent); //start the activity\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2178:1: ( ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* ) )\n // InternalCsv.g:2179:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\n {\n // InternalCsv.g:2179:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\n // InternalCsv.g:2180:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \n }\n // InternalCsv.g:2181:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\n loop17:\n do {\n int alt17=2;\n int LA17_0 = input.LA(1);\n\n if ( (LA17_0==30) ) {\n alt17=1;\n }\n\n\n switch (alt17) {\n \tcase 1 :\n \t // InternalCsv.g:2181:3: rule__XFunctionTypeRef__Group_0_1_1__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__XFunctionTypeRef__Group_0_1_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop17;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAstAction() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1071:1: ( ruleAstAction EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1072:1: ruleAstAction EOF\n {\n before(grammarAccess.getAstActionRule()); \n pushFollow(FOLLOW_ruleAstAction_in_entryRuleAstAction2223);\n ruleAstAction();\n\n state._fsp--;\n\n after(grammarAccess.getAstActionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstAction2230); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleReference() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:152:2: ( ( ( rule__Reference__Group__0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:153:1: ( ( rule__Reference__Group__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:153:1: ( ( rule__Reference__Group__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:154:1: ( rule__Reference__Group__0 )\n {\n before(grammarAccess.getReferenceAccess().getGroup()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:155:1: ( rule__Reference__Group__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:155:2: rule__Reference__Group__0\n {\n pushFollow(FOLLOW_rule__Reference__Group__0_in_ruleReference241);\n rule__Reference__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getReferenceAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleImportDecl() throws RecognitionException {\r\n try {\r\n // InternalGo.g:3030:1: ( ruleImportDecl EOF )\r\n // InternalGo.g:3031:1: ruleImportDecl EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleImportDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "static public void extractFromCSVRefFile(String file_path) throws Exception\n\t{\n\t\tDataExtractor de = new DataExtractor();\n\t\t\n\t\tFile commitFile = new File(file_path);\n\t\tBufferedReader reader = new BufferedReader(new FileReader(commitFile));\n\t\t\n\t\tString line = \"\";\n\t\tList<String> commit_ids = new ArrayList<String>();\n\n\t\twhile(line != null)\n\t\t{\n\t\t\tline = reader.readLine();\n\t\t\tif(line!= null && !line.isEmpty() && line.contains(\";\"))\n\t\t\t{\n\t\t\t\tString id = line.split(\";\")[1];\n\t\t\t\tcommit_ids.add(id);\n\t\t\t}\n\t\t}\n\t\treader.close();\n\t\tde.extractCommitInfo(commit_ids);\t\t\n\t}", "public void setOpenUrlValueForCustomAction(String openURLValue) {\n\t\tthis.openUrlValue = openURLValue;\n\t}", "public final void entryRuleOpEquality() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:680:1: ( ruleOpEquality EOF )\r\n // InternalDroneScript.g:681:1: ruleOpEquality EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpEqualityRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleOpEquality();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpEqualityRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public static void writeDataToCsvUsingStringArrayForReference(PrintWriter writer, List<ReferenceTabDTO> referenceTabList) {\n\n String[] CSV_REFERENCE_TITLE = {\"Reference Details\"};\n\n String[] CSV_REFERENCE_HEADER = {\"REF_ID\", \"REF_TYPE\", \"JOURNAL_PATENT_NAME\", \"REFERENCE\", \"YEAR\", \"VOLUME\", \"ISSUE\", \"START_PAGE\", \"END_PAGE\", \"DOI\", \"PUBMED_ID\", \"PATENT_NO\", \"APPLICATION_TYPE\", \"ISSN_NO\", \"TITLE\", \"ABSTRACT\", \"AUTHORS\", \"COMPANY_NAMES\", \"COMPANY_ADDRESSES\"};\n try (\n CSVWriter csvWriter = new CSVWriter(writer,\n CSVWriter.DEFAULT_SEPARATOR,\n CSVWriter.DEFAULT_ESCAPE_CHARACTER,\n CSVWriter.DEFAULT_LINE_END);\n ) {\n csvWriter.writeNext(CSV_REFERENCE_TITLE);\n csvWriter.writeNext(CSV_REFERENCE_HEADER);\n\n for (ReferenceTabDTO referenceTabDataReturn : referenceTabList) {\n String[] referenceData = new String[]{\n referenceTabDataReturn.getRefId() + \"\",\n referenceTabDataReturn.getRefType() + \"\",\n referenceTabDataReturn.getJournalPatentName(),\n referenceTabDataReturn.getReference(),\n referenceTabDataReturn.getYear() + \"\",\n referenceTabDataReturn.getVolume() + \"\",\n referenceTabDataReturn.getIssue() + \"\",\n referenceTabDataReturn.getStartPage() + \"\",\n referenceTabDataReturn.getEndPage() + \"\",\n referenceTabDataReturn.getDoi() + \"\",\n referenceTabDataReturn.getPubmedId() + \"\",\n referenceTabDataReturn.getPatentNo() + \"\",\n referenceTabDataReturn.getApplicationType() + \"\",\n referenceTabDataReturn.getIssnNo() + \"\",\n referenceTabDataReturn.getTitle() + \"\",\n referenceTabDataReturn.getAbstrac(),\n referenceTabDataReturn.getAuthors() + \"\",\n referenceTabDataReturn.getCompanyNames() + \"\",\n referenceTabDataReturn.getCompanyAddresses() + \"\"\n\n };\n csvWriter.writeNext(referenceData);\n }\n\n } catch (Exception e) {\n System.out.println(\"Exception occured into the ReferenceTab Data Export\" + e.getMessage());\n e.printStackTrace();\n }\n\n }", "public static void main(String[] args) throws FileNotFoundException {\n\t\tScanner sc = new Scanner(new File(\"F:\\\\CSVDemo.csv\")); \n\t\tsc.useDelimiter(\",\"); //sets the delimiter pattern \n\t\twhile (sc.hasNext()) //returns a boolean value \n\t\t{ \n\t\tSystem.out.print(sc.next()); //find and returns the next complete token from this scanner \n\t\t} \n\t\tsc.close(); //closes the scanner \n\t\tCSVCompare();\n\t}", "public final EObject entryRuleGoalReference() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGoalReference = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1857:2: (iv_ruleGoalReference= ruleGoalReference EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1858:2: iv_ruleGoalReference= ruleGoalReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGoalReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGoalReference_in_entryRuleGoalReference3862);\r\n iv_ruleGoalReference=ruleGoalReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGoalReference; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGoalReference3872); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public IndexModifierCSVMessage(pgrid.GUID guid, Key key, short mode, CSVIndexTable csvItems) {\n\t\tsuper(guid);\n\t\tmItems = new CSVIndexTable(\"IMcsv_\"+randomString()+\"_\"+(++num)+\".csv\",false);\n\t\tmKey = key;\n\t\tif(csvItems != null){\n\t\t\ttry{\n\t\t\t\tcsvItems.openFileForReading();\n\t\t\t\tmItems.openFileForWriting();\n\t\t\t\tIndexEntry dataItem = null;\n\t\t\t\twhile((dataItem = (IndexEntry)csvItems.getNextIndexEntry())!=null) {\n\t\t\t\t\tmItems.addIndexEntry(dataItem);\n\t\t\t\t}\n\t\t\t} catch (Exception e) {\n\t\t\t\t// TODO Auto-generated catch block\n\t\t\t\te.printStackTrace();\n\t\t\t}finally{\n\t\t\t\tmItems.closeFileForWriting();\n\t\t\t\tcsvItems.closeFileOnReading();\n\t\t\t}\n\t\t}\n\t\tmMode = mode;\n\n\t\tCompression.compressFile(getFileName(),getFileName()+\".zip\" );\n\t\tmFileSize = new File(getFilePath()+\".zip\").length();\n\t\tthis.getHeader().setAdditionalAttribute(\"FileLength\", getFileSize()+\"\");\n\t\tthis.getHeader().setAdditionalAttribute(\"FileName\", getFileName());\n\n\t}" ]
[ "0.70042527", "0.6907648", "0.6662778", "0.61308134", "0.57768834", "0.5642425", "0.557629", "0.5357286", "0.5186602", "0.50484544", "0.50384986", "0.4656089", "0.45886865", "0.45724308", "0.4555972", "0.4536772", "0.45072886", "0.44973743", "0.44800726", "0.44412214", "0.44345173", "0.44199538", "0.4414655", "0.44132474", "0.44001228", "0.43860185", "0.43792292", "0.43689677", "0.43580797", "0.4324393", "0.42855766", "0.42817128", "0.42756352", "0.4268465", "0.42640665", "0.42314434", "0.42220813", "0.41646484", "0.4120178", "0.41133675", "0.41077635", "0.4105621", "0.41043884", "0.4086596", "0.4086217", "0.40720522", "0.4051159", "0.4051159", "0.404026", "0.40254763", "0.40246975", "0.40225226", "0.39964846", "0.39955682", "0.39709046", "0.3968572", "0.39664668", "0.39546448", "0.39444798", "0.39386147", "0.39350593", "0.393179", "0.39290163", "0.39225304", "0.39219218", "0.3921826", "0.39214662", "0.3919958", "0.39131266", "0.39129913", "0.3910635", "0.39063215", "0.39037567", "0.3894517", "0.38858747", "0.38818628", "0.38739365", "0.3856881", "0.38544047", "0.38527167", "0.3849918", "0.38479307", "0.3836462", "0.3835659", "0.38347748", "0.38307527", "0.3827877", "0.38245338", "0.38244298", "0.38188273", "0.3815176", "0.3808515", "0.3807404", "0.37942475", "0.37925264", "0.37867185", "0.37862697", "0.37801436", "0.37770668", "0.37757686" ]
0.7883589
0
$ANTLR end "entryRuleRefOpenAction" $ANTLR start "ruleRefOpenAction" InternalCsv.g:163:1: ruleRefOpenAction : ( ( rule__RefOpenAction__Alternatives ) ) ;
public final void ruleRefOpenAction() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) ) // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) ) { // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) ) // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives ) { if ( state.backtracking==0 ) { before(grammarAccess.getRefOpenActionAccess().getAlternatives()); } // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives ) // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives { pushFollow(FOLLOW_2); rule__RefOpenAction__Alternatives(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getRefOpenActionAccess().getAlternatives()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) )\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n {\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n // InternalCsv.g:119:3: ( rule__Action__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getAlternatives()); \n }\n // InternalCsv.g:120:3: ( rule__Action__Alternatives )\n // InternalCsv.g:120:4: rule__Action__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Action__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpOther() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:698:2: ( ( ( rule__OpOther__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:699:1: ( ( rule__OpOther__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:699:1: ( ( rule__OpOther__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:700:1: ( rule__OpOther__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:701:1: ( rule__OpOther__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:701:2: rule__OpOther__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Alternatives_in_ruleOpOther1427);\r\n rule__OpOther__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpOther() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:615:2: ( ( ( rule__OpOther__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:616:1: ( ( rule__OpOther__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:616:1: ( ( rule__OpOther__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:617:1: ( rule__OpOther__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:618:1: ( rule__OpOther__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:618:2: rule__OpOther__Alternatives\n {\n pushFollow(FOLLOW_rule__OpOther__Alternatives_in_ruleOpOther1247);\n rule__OpOther__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpCompare() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:742:2: ( ( ( rule__OpCompare__Alternatives ) ) )\r\n // InternalDroneScript.g:743:2: ( ( rule__OpCompare__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:743:2: ( ( rule__OpCompare__Alternatives ) )\r\n // InternalDroneScript.g:744:3: ( rule__OpCompare__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:745:3: ( rule__OpCompare__Alternatives )\r\n // InternalDroneScript.g:745:4: rule__OpCompare__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpCompare__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpCompare() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:559:2: ( ( ( rule__OpCompare__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:560:1: ( ( rule__OpCompare__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:560:1: ( ( rule__OpCompare__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:561:1: ( rule__OpCompare__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:562:1: ( rule__OpCompare__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:562:2: rule__OpCompare__Alternatives\n {\n pushFollow(FOLLOW_rule__OpCompare__Alternatives_in_ruleOpCompare1127);\n rule__OpCompare__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpCompare() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:642:2: ( ( ( rule__OpCompare__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:643:1: ( ( rule__OpCompare__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:643:1: ( ( rule__OpCompare__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:644:1: ( rule__OpCompare__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:645:1: ( rule__OpCompare__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:645:2: rule__OpCompare__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpCompare__Alternatives_in_ruleOpCompare1307);\r\n rule__OpCompare__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Action__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2974:1: ( ( ( rule__Action__Alternatives_0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2975:1: ( ( rule__Action__Alternatives_0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2975:1: ( ( rule__Action__Alternatives_0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2976:1: ( rule__Action__Alternatives_0 )\n {\n before(grammarAccess.getActionAccess().getAlternatives_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2977:1: ( rule__Action__Alternatives_0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2977:2: rule__Action__Alternatives_0\n {\n pushFollow(FOLLOW_rule__Action__Alternatives_0_in_rule__Action__Group__0__Impl5860);\n rule__Action__Alternatives_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getActionAccess().getAlternatives_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpOther() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:792:2: ( ( ( rule__OpOther__Alternatives ) ) )\r\n // InternalDroneScript.g:793:2: ( ( rule__OpOther__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:793:2: ( ( rule__OpOther__Alternatives ) )\r\n // InternalDroneScript.g:794:3: ( rule__OpOther__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:795:3: ( rule__OpOther__Alternatives )\r\n // InternalDroneScript.g:795:4: rule__OpOther__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpAdd() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:671:2: ( ( ( rule__OpAdd__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:672:1: ( ( rule__OpAdd__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:672:1: ( ( rule__OpAdd__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:673:1: ( rule__OpAdd__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpAddAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:674:1: ( rule__OpAdd__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:674:2: rule__OpAdd__Alternatives\n {\n pushFollow(FOLLOW_rule__OpAdd__Alternatives_in_ruleOpAdd1367);\n rule__OpAdd__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpAddAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpEquality() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:692:2: ( ( ( rule__OpEquality__Alternatives ) ) )\r\n // InternalDroneScript.g:693:2: ( ( rule__OpEquality__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:693:2: ( ( rule__OpEquality__Alternatives ) )\r\n // InternalDroneScript.g:694:3: ( rule__OpEquality__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpEqualityAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:695:3: ( rule__OpEquality__Alternatives )\r\n // InternalDroneScript.g:695:4: rule__OpEquality__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpEquality__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpEqualityAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void open() throws RecognitionException {\r\n Token a=null;\r\n\r\n try {\r\n // D:\\\\entornotrabajo\\\\workspace-sgo\\\\persistance\\\\src\\\\main\\\\java\\\\es\\\\caser\\\\persistance\\\\sql\\\\antlr\\\\SQLGrammar.g:194:6: ( (a= OPEN ) )\r\n // D:\\\\entornotrabajo\\\\workspace-sgo\\\\persistance\\\\src\\\\main\\\\java\\\\es\\\\caser\\\\persistance\\\\sql\\\\antlr\\\\SQLGrammar.g:194:8: (a= OPEN )\r\n {\r\n // D:\\\\entornotrabajo\\\\workspace-sgo\\\\persistance\\\\src\\\\main\\\\java\\\\es\\\\caser\\\\persistance\\\\sql\\\\antlr\\\\SQLGrammar.g:194:8: (a= OPEN )\r\n // D:\\\\entornotrabajo\\\\workspace-sgo\\\\persistance\\\\src\\\\main\\\\java\\\\es\\\\caser\\\\persistance\\\\sql\\\\antlr\\\\SQLGrammar.g:194:9: a= OPEN\r\n {\r\n a=(Token)match(input,OPEN,FOLLOW_OPEN_in_open1183); \r\n out(\"(\");\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleOpAdd() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:754:2: ( ( ( rule__OpAdd__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:755:1: ( ( rule__OpAdd__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:755:1: ( ( rule__OpAdd__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:756:1: ( rule__OpAdd__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:757:1: ( rule__OpAdd__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:757:2: rule__OpAdd__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpAdd__Alternatives_in_ruleOpAdd1547);\r\n rule__OpAdd__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpAdd() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:842:2: ( ( ( rule__OpAdd__Alternatives ) ) )\r\n // InternalDroneScript.g:843:2: ( ( rule__OpAdd__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:843:2: ( ( rule__OpAdd__Alternatives ) )\r\n // InternalDroneScript.g:844:3: ( rule__OpAdd__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:845:3: ( rule__OpAdd__Alternatives )\r\n // InternalDroneScript.g:845:4: rule__OpAdd__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpAdd__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1927:1: ( ( '->' ) | ( '..' ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==21) ) {\n alt7=1;\n }\n else if ( (LA7_0==22) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1928:1: ( '->' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1928:1: ( '->' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1929:1: '->'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \n }\n match(input,21,FOLLOW_21_in_rule__OpOther__Alternatives4068); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1936:6: ( '..' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1936:6: ( '..' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1937:1: '..'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \n }\n match(input,22,FOLLOW_22_in_rule__OpOther__Alternatives4088); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2368:1: ( ( '->' ) | ( '..' ) | ( '=>' ) | ( ( rule__OpOther__Group_3__0 ) ) | ( ( rule__OpOther__Group_4__0 ) ) | ( '<>' ) | ( '?:' ) | ( '<=>' ) )\r\n int alt9=8;\r\n switch ( input.LA(1) ) {\r\n case 24:\r\n {\r\n alt9=1;\r\n }\r\n break;\r\n case 25:\r\n {\r\n alt9=2;\r\n }\r\n break;\r\n case 26:\r\n {\r\n alt9=3;\r\n }\r\n break;\r\n case 22:\r\n {\r\n alt9=4;\r\n }\r\n break;\r\n case 23:\r\n {\r\n alt9=5;\r\n }\r\n break;\r\n case 27:\r\n {\r\n alt9=6;\r\n }\r\n break;\r\n case 28:\r\n {\r\n alt9=7;\r\n }\r\n break;\r\n case 29:\r\n {\r\n alt9=8;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt9) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2369:1: ( '->' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2369:1: ( '->' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2370:1: '->'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \r\n }\r\n match(input,24,FOLLOW_24_in_rule__OpOther__Alternatives5017); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2377:6: ( '..' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2377:6: ( '..' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2378:1: '..'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \r\n }\r\n match(input,25,FOLLOW_25_in_rule__OpOther__Alternatives5037); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2385:6: ( '=>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2385:6: ( '=>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2386:1: '=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_2()); \r\n }\r\n match(input,26,FOLLOW_26_in_rule__OpOther__Alternatives5057); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 4 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2393:6: ( ( rule__OpOther__Group_3__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2393:6: ( ( rule__OpOther__Group_3__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2394:1: ( rule__OpOther__Group_3__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_3()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2395:1: ( rule__OpOther__Group_3__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2395:2: rule__OpOther__Group_3__0\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Group_3__0_in_rule__OpOther__Alternatives5076);\r\n rule__OpOther__Group_3__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 5 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2399:6: ( ( rule__OpOther__Group_4__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2399:6: ( ( rule__OpOther__Group_4__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2400:1: ( rule__OpOther__Group_4__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_4()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2401:1: ( rule__OpOther__Group_4__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2401:2: rule__OpOther__Group_4__0\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Group_4__0_in_rule__OpOther__Alternatives5094);\r\n rule__OpOther__Group_4__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 6 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2405:6: ( '<>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2405:6: ( '<>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2406:1: '<>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_5()); \r\n }\r\n match(input,27,FOLLOW_27_in_rule__OpOther__Alternatives5113); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_5()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 7 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2413:6: ( '?:' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2413:6: ( '?:' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2414:1: '?:'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_6()); \r\n }\r\n match(input,28,FOLLOW_28_in_rule__OpOther__Alternatives5133); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 8 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2421:6: ( '<=>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2421:6: ( '<=>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2422:1: '<=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getLessThanSignEqualsSignGreaterThanSignKeyword_7()); \r\n }\r\n match(input,29,FOLLOW_29_in_rule__OpOther__Alternatives5153); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getLessThanSignEqualsSignGreaterThanSignKeyword_7()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleOpenField() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleOpenField = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1138:2: (iv_ruleOpenField= ruleOpenField EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1139:2: iv_ruleOpenField= ruleOpenField EOF\n {\n newCompositeNode(grammarAccess.getOpenFieldRule()); \n pushFollow(FollowSets000.FOLLOW_ruleOpenField_in_entryRuleOpenField2285);\n iv_ruleOpenField=ruleOpenField();\n\n state._fsp--;\n\n current =iv_ruleOpenField; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleOpenField2295); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleOpMulti() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:727:2: ( ( ( rule__OpMulti__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:728:1: ( ( rule__OpMulti__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:728:1: ( ( rule__OpMulti__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:729:1: ( rule__OpMulti__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpMultiAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:730:1: ( rule__OpMulti__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:730:2: rule__OpMulti__Alternatives\n {\n pushFollow(FOLLOW_rule__OpMulti__Alternatives_in_ruleOpMulti1487);\n rule__OpMulti__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpMultiAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Group_3__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7732:1: ( ( ( rule__OpOther__Alternatives_3_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7733:1: ( ( rule__OpOther__Alternatives_3_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7733:1: ( ( rule__OpOther__Alternatives_3_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7734:1: ( rule__OpOther__Alternatives_3_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives_3_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7735:1: ( rule__OpOther__Alternatives_3_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7735:2: rule__OpOther__Alternatives_3_1\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Alternatives_3_1_in_rule__OpOther__Group_3__1__Impl16071);\r\n rule__OpOther__Alternatives_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleother() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:327:2: ( ( ( rule__Other__Alternatives ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:329:1: ( rule__Other__Alternatives )\n {\n before(grammarAccess.getOtherAccess().getAlternatives()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:1: ( rule__Other__Alternatives )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:2: rule__Other__Alternatives\n {\n pushFollow(FOLLOW_rule__Other__Alternatives_in_ruleother637);\n rule__Other__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getOtherAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Alternatives_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2438:1: ( ( ( rule__OpOther__Group_3_1_0__0 ) ) | ( '>' ) )\r\n int alt10=2;\r\n int LA10_0 = input.LA(1);\r\n\r\n if ( (LA10_0==22) ) {\r\n int LA10_1 = input.LA(2);\r\n\r\n if ( (LA10_1==22) ) {\r\n alt10=1;\r\n }\r\n else if ( (LA10_1==EOF||(LA10_1>=RULE_ID && LA10_1<=RULE_STRING)||LA10_1==23||(LA10_1>=30 && LA10_1<=31)||LA10_1==36||(LA10_1>=39 && LA10_1<=40)||LA10_1==74||LA10_1==104||(LA10_1>=106 && LA10_1<=107)||LA10_1==109||(LA10_1>=113 && LA10_1<=115)||(LA10_1>=117 && LA10_1<=122)||LA10_1==132) ) {\r\n alt10=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 10, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 10, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt10) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2439:1: ( ( rule__OpOther__Group_3_1_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2439:1: ( ( rule__OpOther__Group_3_1_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2440:1: ( rule__OpOther__Group_3_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_3_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2441:1: ( rule__OpOther__Group_3_1_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2441:2: rule__OpOther__Group_3_1_0__0\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Group_3_1_0__0_in_rule__OpOther__Alternatives_3_15187);\r\n rule__OpOther__Group_3_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2445:6: ( '>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2445:6: ( '>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2446:1: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_3_1_1()); \r\n }\r\n match(input,22,FOLLOW_22_in_rule__OpOther__Alternatives_3_15206); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_3_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpMulti() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:810:2: ( ( ( rule__OpMulti__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:811:1: ( ( rule__OpMulti__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:811:1: ( ( rule__OpMulti__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:812:1: ( rule__OpMulti__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:813:1: ( rule__OpMulti__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:813:2: rule__OpMulti__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpMulti__Alternatives_in_ruleOpMulti1667);\r\n rule__OpMulti__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Action__Alternatives_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2114:1: ( ( ( rule__Action__Group_0_0__0 ) ) | ( ( rule__Action__Group_0_1__0 ) ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==RULE_LOWER) ) {\n int LA2_1 = input.LA(2);\n\n if ( (LA2_1==24) ) {\n alt2=1;\n }\n else if ( (LA2_1==25) ) {\n alt2=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 1, input);\n\n throw nvae;\n }\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2115:1: ( ( rule__Action__Group_0_0__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2115:1: ( ( rule__Action__Group_0_0__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2116:1: ( rule__Action__Group_0_0__0 )\n {\n before(grammarAccess.getActionAccess().getGroup_0_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2117:1: ( rule__Action__Group_0_0__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2117:2: rule__Action__Group_0_0__0\n {\n pushFollow(FOLLOW_rule__Action__Group_0_0__0_in_rule__Action__Alternatives_04018);\n rule__Action__Group_0_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getActionAccess().getGroup_0_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2121:6: ( ( rule__Action__Group_0_1__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2121:6: ( ( rule__Action__Group_0_1__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2122:1: ( rule__Action__Group_0_1__0 )\n {\n before(grammarAccess.getActionAccess().getGroup_0_1()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2123:1: ( rule__Action__Group_0_1__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2123:2: rule__Action__Group_0_1__0\n {\n pushFollow(FOLLOW_rule__Action__Group_0_1__0_in_rule__Action__Alternatives_04036);\n rule__Action__Group_0_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getActionAccess().getGroup_0_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpPostfix() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1017:2: ( ( ( rule__OpPostfix__Alternatives ) ) )\r\n // InternalDroneScript.g:1018:2: ( ( rule__OpPostfix__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:1018:2: ( ( rule__OpPostfix__Alternatives ) )\r\n // InternalDroneScript.g:1019:3: ( rule__OpPostfix__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpPostfixAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:1020:3: ( rule__OpPostfix__Alternatives )\r\n // InternalDroneScript.g:1020:4: rule__OpPostfix__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpPostfix__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpPostfixAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpEquality() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:503:2: ( ( ( rule__OpEquality__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:504:1: ( ( rule__OpEquality__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:504:1: ( ( rule__OpEquality__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:505:1: ( rule__OpEquality__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpEqualityAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:506:1: ( rule__OpEquality__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:506:2: rule__OpEquality__Alternatives\n {\n pushFollow(FOLLOW_rule__OpEquality__Alternatives_in_ruleOpEquality1007);\n rule__OpEquality__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpEqualityAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleEntry() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:74:2: ( ( ( rule__Entry__Alternatives ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:75:1: ( ( rule__Entry__Alternatives ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:75:1: ( ( rule__Entry__Alternatives ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:76:1: ( rule__Entry__Alternatives )\n {\n before(grammarAccess.getEntryAccess().getAlternatives()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:77:1: ( rule__Entry__Alternatives )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:77:2: rule__Entry__Alternatives\n {\n pushFollow(FollowSets000.FOLLOW_rule__Entry__Alternatives_in_ruleEntry94);\n rule__Entry__Alternatives();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getEntryAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Group_4__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7890:1: ( ( ( rule__OpOther__Alternatives_4_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7891:1: ( ( rule__OpOther__Alternatives_4_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7891:1: ( ( rule__OpOther__Alternatives_4_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7892:1: ( rule__OpOther__Alternatives_4_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives_4_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7893:1: ( rule__OpOther__Alternatives_4_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7893:2: rule__OpOther__Alternatives_4_1\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Alternatives_4_1_in_rule__OpOther__Group_4__1__Impl16378);\r\n rule__OpOther__Alternatives_4_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives_4_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpMulti() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:892:2: ( ( ( rule__OpMulti__Alternatives ) ) )\r\n // InternalDroneScript.g:893:2: ( ( rule__OpMulti__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:893:2: ( ( rule__OpMulti__Alternatives ) )\r\n // InternalDroneScript.g:894:3: ( rule__OpMulti__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:895:3: ( rule__OpMulti__Alternatives )\r\n // InternalDroneScript.g:895:4: rule__OpMulti__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpMulti__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Alternatives_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==40) ) {\n alt4=1;\n }\n else if ( (LA4_0==12) ) {\n alt4=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n {\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__HeaderAssignment_7_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:713:2: ( 'false' )\n {\n // InternalCsv.g:713:2: ( 'false' )\n // InternalCsv.g:714:3: 'false'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n match(input,12,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Group_6__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:7157:1: ( ( ( rule__OpOther__Alternatives_6_1 ) ) )\r\n // InternalDroneScript.g:7158:1: ( ( rule__OpOther__Alternatives_6_1 ) )\r\n {\r\n // InternalDroneScript.g:7158:1: ( ( rule__OpOther__Alternatives_6_1 ) )\r\n // InternalDroneScript.g:7159:2: ( rule__OpOther__Alternatives_6_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives_6_1()); \r\n }\r\n // InternalDroneScript.g:7160:2: ( rule__OpOther__Alternatives_6_1 )\r\n // InternalDroneScript.g:7160:3: rule__OpOther__Alternatives_6_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Alternatives_6_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives_6_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "ActionOpen()\n {\n super(\"Open\");\n this.setShortcut(UtilGUI.createKeyStroke('O', true));\n }", "public final void ruleExpression() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:266:2: ( ( ( rule__Expression__Alternatives ) ) )\n // InternalBrowser.g:267:2: ( ( rule__Expression__Alternatives ) )\n {\n // InternalBrowser.g:267:2: ( ( rule__Expression__Alternatives ) )\n // InternalBrowser.g:268:3: ( rule__Expression__Alternatives )\n {\n before(grammarAccess.getExpressionAccess().getAlternatives()); \n // InternalBrowser.g:269:3: ( rule__Expression__Alternatives )\n // InternalBrowser.g:269:4: rule__Expression__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Expression__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getExpressionAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpression__OperatorAlternatives_1_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2784:1: ( ( '||' ) | ( 'or' ) | ( '..' ) )\n int alt12=3;\n switch ( input.LA(1) ) {\n case 14:\n {\n alt12=1;\n }\n break;\n case 15:\n {\n alt12=2;\n }\n break;\n case 16:\n {\n alt12=3;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 12, 0, input);\n\n throw nvae;\n }\n\n switch (alt12) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2785:1: ( '||' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2785:1: ( '||' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2786:1: '||'\n {\n before(grammarAccess.getAstExpressionAccess().getOperatorVerticalLineVerticalLineKeyword_1_1_0_0()); \n match(input,14,FOLLOW_14_in_rule__AstExpression__OperatorAlternatives_1_1_06010); \n after(grammarAccess.getAstExpressionAccess().getOperatorVerticalLineVerticalLineKeyword_1_1_0_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2793:6: ( 'or' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2793:6: ( 'or' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2794:1: 'or'\n {\n before(grammarAccess.getAstExpressionAccess().getOperatorOrKeyword_1_1_0_1()); \n match(input,15,FOLLOW_15_in_rule__AstExpression__OperatorAlternatives_1_1_06030); \n after(grammarAccess.getAstExpressionAccess().getOperatorOrKeyword_1_1_0_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2801:6: ( '..' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2801:6: ( '..' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2802:1: '..'\n {\n before(grammarAccess.getAstExpressionAccess().getOperatorFullStopFullStopKeyword_1_1_0_2()); \n match(input,16,FOLLOW_16_in_rule__AstExpression__OperatorAlternatives_1_1_06050); \n after(grammarAccess.getAstExpressionAccess().getOperatorFullStopFullStopKeyword_1_1_0_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3810:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n // InternalCsv.g:3812:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3813:3: ( RULE_ID )\n // InternalCsv.g:3814:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2637:1: ( ( '->' ) | ( '..<' ) | ( ( rule__OpOther__Group_2__0 ) ) | ( '..' ) | ( '=>' ) | ( ( rule__OpOther__Group_5__0 ) ) | ( ( rule__OpOther__Group_6__0 ) ) | ( '<>' ) | ( '?:' ) )\r\n int alt11=9;\r\n alt11 = dfa11.predict(input);\r\n switch (alt11) {\r\n case 1 :\r\n // InternalDroneScript.g:2638:2: ( '->' )\r\n {\r\n // InternalDroneScript.g:2638:2: ( '->' )\r\n // InternalDroneScript.g:2639:3: '->'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \r\n }\r\n match(input,28,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:2644:2: ( '..<' )\r\n {\r\n // InternalDroneScript.g:2644:2: ( '..<' )\r\n // InternalDroneScript.g:2645:3: '..<'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getFullStopFullStopLessThanSignKeyword_1()); \r\n }\r\n match(input,29,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getFullStopFullStopLessThanSignKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:2650:2: ( ( rule__OpOther__Group_2__0 ) )\r\n {\r\n // InternalDroneScript.g:2650:2: ( ( rule__OpOther__Group_2__0 ) )\r\n // InternalDroneScript.g:2651:3: ( rule__OpOther__Group_2__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_2()); \r\n }\r\n // InternalDroneScript.g:2652:3: ( rule__OpOther__Group_2__0 )\r\n // InternalDroneScript.g:2652:4: rule__OpOther__Group_2__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Group_2__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 4 :\r\n // InternalDroneScript.g:2656:2: ( '..' )\r\n {\r\n // InternalDroneScript.g:2656:2: ( '..' )\r\n // InternalDroneScript.g:2657:3: '..'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_3()); \r\n }\r\n match(input,30,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 5 :\r\n // InternalDroneScript.g:2662:2: ( '=>' )\r\n {\r\n // InternalDroneScript.g:2662:2: ( '=>' )\r\n // InternalDroneScript.g:2663:3: '=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_4()); \r\n }\r\n match(input,31,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 6 :\r\n // InternalDroneScript.g:2668:2: ( ( rule__OpOther__Group_5__0 ) )\r\n {\r\n // InternalDroneScript.g:2668:2: ( ( rule__OpOther__Group_5__0 ) )\r\n // InternalDroneScript.g:2669:3: ( rule__OpOther__Group_5__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_5()); \r\n }\r\n // InternalDroneScript.g:2670:3: ( rule__OpOther__Group_5__0 )\r\n // InternalDroneScript.g:2670:4: rule__OpOther__Group_5__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Group_5__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_5()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 7 :\r\n // InternalDroneScript.g:2674:2: ( ( rule__OpOther__Group_6__0 ) )\r\n {\r\n // InternalDroneScript.g:2674:2: ( ( rule__OpOther__Group_6__0 ) )\r\n // InternalDroneScript.g:2675:3: ( rule__OpOther__Group_6__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_6()); \r\n }\r\n // InternalDroneScript.g:2676:3: ( rule__OpOther__Group_6__0 )\r\n // InternalDroneScript.g:2676:4: rule__OpOther__Group_6__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Group_6__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 8 :\r\n // InternalDroneScript.g:2680:2: ( '<>' )\r\n {\r\n // InternalDroneScript.g:2680:2: ( '<>' )\r\n // InternalDroneScript.g:2681:3: '<>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_7()); \r\n }\r\n match(input,32,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_7()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 9 :\r\n // InternalDroneScript.g:2686:2: ( '?:' )\r\n {\r\n // InternalDroneScript.g:2686:2: ( '?:' )\r\n // InternalDroneScript.g:2687:3: '?:'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_8()); \r\n }\r\n match(input,33,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_8()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleExpressions() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:908:2: ( ( ( rule__Expressions__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:909:1: ( ( rule__Expressions__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:909:1: ( ( rule__Expressions__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:910:1: ( rule__Expressions__Alternatives )\n {\n before(grammarAccess.getExpressionsAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:911:1: ( rule__Expressions__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:911:2: rule__Expressions__Alternatives\n {\n pushFollow(FOLLOW_rule__Expressions__Alternatives_in_ruleExpressions1687);\n rule__Expressions__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getExpressionsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleOpEquality() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:586:2: ( ( ( rule__OpEquality__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:587:1: ( ( rule__OpEquality__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:587:1: ( ( rule__OpEquality__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:588:1: ( rule__OpEquality__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpEqualityAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:589:1: ( rule__OpEquality__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:589:2: rule__OpEquality__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpEquality__Alternatives_in_ruleOpEquality1187);\r\n rule__OpEquality__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpEqualityAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Lines__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:956:1: ( ( ruleDeclaration ) | ( ruleAffectation ) | ( ruleFunctionCall ) | ( ruleCheckContainsLink ) | ( ruleCheckContainsText ) | ( ruleFindProperty ) | ( ruleFindFirstProperty ) | ( ruleFindSecondProperty ) | ( ruleGetTitle ) )\n int alt3=9;\n alt3 = dfa3.predict(input);\n switch (alt3) {\n case 1 :\n // InternalBrowser.g:957:2: ( ruleDeclaration )\n {\n // InternalBrowser.g:957:2: ( ruleDeclaration )\n // InternalBrowser.g:958:3: ruleDeclaration\n {\n before(grammarAccess.getLinesAccess().getDeclarationParserRuleCall_0()); \n pushFollow(FOLLOW_2);\n ruleDeclaration();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getDeclarationParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // InternalBrowser.g:963:2: ( ruleAffectation )\n {\n // InternalBrowser.g:963:2: ( ruleAffectation )\n // InternalBrowser.g:964:3: ruleAffectation\n {\n before(grammarAccess.getLinesAccess().getAffectationParserRuleCall_1()); \n pushFollow(FOLLOW_2);\n ruleAffectation();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getAffectationParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // InternalBrowser.g:969:2: ( ruleFunctionCall )\n {\n // InternalBrowser.g:969:2: ( ruleFunctionCall )\n // InternalBrowser.g:970:3: ruleFunctionCall\n {\n before(grammarAccess.getLinesAccess().getFunctionCallParserRuleCall_2()); \n pushFollow(FOLLOW_2);\n ruleFunctionCall();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFunctionCallParserRuleCall_2()); \n\n }\n\n\n }\n break;\n case 4 :\n // InternalBrowser.g:975:2: ( ruleCheckContainsLink )\n {\n // InternalBrowser.g:975:2: ( ruleCheckContainsLink )\n // InternalBrowser.g:976:3: ruleCheckContainsLink\n {\n before(grammarAccess.getLinesAccess().getCheckContainsLinkParserRuleCall_3()); \n pushFollow(FOLLOW_2);\n ruleCheckContainsLink();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getCheckContainsLinkParserRuleCall_3()); \n\n }\n\n\n }\n break;\n case 5 :\n // InternalBrowser.g:981:2: ( ruleCheckContainsText )\n {\n // InternalBrowser.g:981:2: ( ruleCheckContainsText )\n // InternalBrowser.g:982:3: ruleCheckContainsText\n {\n before(grammarAccess.getLinesAccess().getCheckContainsTextParserRuleCall_4()); \n pushFollow(FOLLOW_2);\n ruleCheckContainsText();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getCheckContainsTextParserRuleCall_4()); \n\n }\n\n\n }\n break;\n case 6 :\n // InternalBrowser.g:987:2: ( ruleFindProperty )\n {\n // InternalBrowser.g:987:2: ( ruleFindProperty )\n // InternalBrowser.g:988:3: ruleFindProperty\n {\n before(grammarAccess.getLinesAccess().getFindPropertyParserRuleCall_5()); \n pushFollow(FOLLOW_2);\n ruleFindProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindPropertyParserRuleCall_5()); \n\n }\n\n\n }\n break;\n case 7 :\n // InternalBrowser.g:993:2: ( ruleFindFirstProperty )\n {\n // InternalBrowser.g:993:2: ( ruleFindFirstProperty )\n // InternalBrowser.g:994:3: ruleFindFirstProperty\n {\n before(grammarAccess.getLinesAccess().getFindFirstPropertyParserRuleCall_6()); \n pushFollow(FOLLOW_2);\n ruleFindFirstProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindFirstPropertyParserRuleCall_6()); \n\n }\n\n\n }\n break;\n case 8 :\n // InternalBrowser.g:999:2: ( ruleFindSecondProperty )\n {\n // InternalBrowser.g:999:2: ( ruleFindSecondProperty )\n // InternalBrowser.g:1000:3: ruleFindSecondProperty\n {\n before(grammarAccess.getLinesAccess().getFindSecondPropertyParserRuleCall_7()); \n pushFollow(FOLLOW_2);\n ruleFindSecondProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindSecondPropertyParserRuleCall_7()); \n\n }\n\n\n }\n break;\n case 9 :\n // InternalBrowser.g:1005:2: ( ruleGetTitle )\n {\n // InternalBrowser.g:1005:2: ( ruleGetTitle )\n // InternalBrowser.g:1006:3: ruleGetTitle\n {\n before(grammarAccess.getLinesAccess().getGetTitleParserRuleCall_8()); \n pushFollow(FOLLOW_2);\n ruleGetTitle();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getGetTitleParserRuleCall_8()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public ApplyopenExample() {\n oredCriteria = new ArrayList<Criteria>();\n }", "public final EObject ruleGoalReference() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1868:28: ( ( () otherlv_1= '$' ( ( ruleQualifiedName ) ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1869:1: ( () otherlv_1= '$' ( ( ruleQualifiedName ) ) )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1869:1: ( () otherlv_1= '$' ( ( ruleQualifiedName ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1869:2: () otherlv_1= '$' ( ( ruleQualifiedName ) )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1869:2: ()\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1870:5: \r\n {\r\n if ( state.backtracking==0 ) {\r\n\r\n current = forceCreateModelElement(\r\n grammarAccess.getGoalReferenceAccess().getGoalReferenceAction_0(),\r\n current);\r\n \r\n }\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,42,FOLLOW_42_in_ruleGoalReference3918); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getGoalReferenceAccess().getDollarSignKeyword_1());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1879:1: ( ( ruleQualifiedName ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1880:1: ( ruleQualifiedName )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1880:1: ( ruleQualifiedName )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1881:3: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n\r\n \t\t\tif (current==null) {\r\n \t current = createModelElement(grammarAccess.getGoalReferenceRule());\r\n \t }\r\n \r\n }\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getGoalReferenceAccess().getValueGoalCrossReference_2_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleGoalReference3941);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n \r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__PrintCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3791:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n // InternalCsv.g:3793:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3794:3: ( RULE_ID )\n // InternalCsv.g:3795:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleArguments() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:800:2: ( ( ( rule__Arguments__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:801:1: ( ( rule__Arguments__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:801:1: ( ( rule__Arguments__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:802:1: ( rule__Arguments__Alternatives )\n {\n before(grammarAccess.getArgumentsAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:803:1: ( rule__Arguments__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:803:2: rule__Arguments__Alternatives\n {\n pushFollow(FOLLOW_rule__Arguments__Alternatives_in_ruleArguments1482);\n rule__Arguments__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getArgumentsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "void openMenuOptions(Gadget gadget, final Element referenceElement);", "public final void rule__OpOther__Alternatives_4_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2462:1: ( ( ( rule__OpOther__Group_4_1_0__0 ) ) | ( '<' ) )\r\n int alt11=2;\r\n int LA11_0 = input.LA(1);\r\n\r\n if ( (LA11_0==23) ) {\r\n int LA11_1 = input.LA(2);\r\n\r\n if ( (synpred22_InternalFin()) ) {\r\n alt11=1;\r\n }\r\n else if ( (true) ) {\r\n alt11=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 11, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 11, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt11) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2463:1: ( ( rule__OpOther__Group_4_1_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2463:1: ( ( rule__OpOther__Group_4_1_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2464:1: ( rule__OpOther__Group_4_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_4_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2465:1: ( rule__OpOther__Group_4_1_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2465:2: rule__OpOther__Group_4_1_0__0\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Group_4_1_0__0_in_rule__OpOther__Alternatives_4_15240);\r\n rule__OpOther__Group_4_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_4_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2469:6: ( '<' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2469:6: ( '<' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2470:1: '<'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_4_1_1()); \r\n }\r\n match(input,23,FOLLOW_23_in_rule__OpOther__Alternatives_4_15259); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_4_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3848:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n // InternalCsv.g:3850:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3851:3: ( RULE_ID )\n // InternalCsv.g:3852:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleFunctionCall() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:241:2: ( ( ( rule__FunctionCall__Alternatives ) ) )\n // InternalBrowser.g:242:2: ( ( rule__FunctionCall__Alternatives ) )\n {\n // InternalBrowser.g:242:2: ( ( rule__FunctionCall__Alternatives ) )\n // InternalBrowser.g:243:3: ( rule__FunctionCall__Alternatives )\n {\n before(grammarAccess.getFunctionCallAccess().getAlternatives()); \n // InternalBrowser.g:244:3: ( rule__FunctionCall__Alternatives )\n // InternalBrowser.g:244:4: rule__FunctionCall__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__FunctionCall__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getFunctionCallAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstExpressionLiteral() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1951:2: ( ( ( rule__AstExpressionLiteral__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1952:1: ( ( rule__AstExpressionLiteral__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1952:1: ( ( rule__AstExpressionLiteral__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1953:1: ( rule__AstExpressionLiteral__Alternatives )\n {\n before(grammarAccess.getAstExpressionLiteralAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1954:1: ( rule__AstExpressionLiteral__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1954:2: rule__AstExpressionLiteral__Alternatives\n {\n pushFollow(FOLLOW_rule__AstExpressionLiteral__Alternatives_in_ruleAstExpressionLiteral4116);\n rule__AstExpressionLiteral__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstExpressionLiteralAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3829:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n // InternalCsv.g:3831:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3832:3: ( RULE_ID )\n // InternalCsv.g:3833:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleKey() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2867:2: ( ( ( rule__Key__Alternatives ) ) )\r\n // InternalGo.g:2868:2: ( ( rule__Key__Alternatives ) )\r\n {\r\n // InternalGo.g:2868:2: ( ( rule__Key__Alternatives ) )\r\n // InternalGo.g:2869:3: ( rule__Key__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getKeyAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:2870:3: ( rule__Key__Alternatives )\r\n // InternalGo.g:2870:4: rule__Key__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Key__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getKeyAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Arguments__Group_2__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:14381:1: ( ( ( rule__Arguments__Alternatives_2_0 ) ) )\r\n // InternalGo.g:14382:1: ( ( rule__Arguments__Alternatives_2_0 ) )\r\n {\r\n // InternalGo.g:14382:1: ( ( rule__Arguments__Alternatives_2_0 ) )\r\n // InternalGo.g:14383:2: ( rule__Arguments__Alternatives_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArgumentsAccess().getAlternatives_2_0()); \r\n }\r\n // InternalGo.g:14384:2: ( rule__Arguments__Alternatives_2_0 )\r\n // InternalGo.g:14384:3: rule__Arguments__Alternatives_2_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Arguments__Alternatives_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArgumentsAccess().getAlternatives_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpOther__Group_5__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:7022:1: ( ( ( rule__OpOther__Alternatives_5_1 ) ) )\r\n // InternalDroneScript.g:7023:1: ( ( rule__OpOther__Alternatives_5_1 ) )\r\n {\r\n // InternalDroneScript.g:7023:1: ( ( rule__OpOther__Alternatives_5_1 ) )\r\n // InternalDroneScript.g:7024:2: ( rule__OpOther__Alternatives_5_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives_5_1()); \r\n }\r\n // InternalDroneScript.g:7025:2: ( rule__OpOther__Alternatives_5_1 )\r\n // InternalDroneScript.g:7025:3: rule__OpOther__Alternatives_5_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Alternatives_5_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives_5_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ReorientExpression__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1855:1: ( ( ruleReorientRef ) | ( ruleBasicReorientExpression ) )\n int alt12=2;\n int LA12_0 = input.LA(1);\n\n if ( (LA12_0==RULE_ID) ) {\n alt12=1;\n }\n else if ( (LA12_0==61) ) {\n alt12=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 12, 0, input);\n\n throw nvae;\n }\n switch (alt12) {\n case 1 :\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1856:1: ( ruleReorientRef )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1856:1: ( ruleReorientRef )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1857:1: ruleReorientRef\n {\n before(grammarAccess.getReorientExpressionAccess().getReorientRefParserRuleCall_0()); \n pushFollow(FOLLOW_ruleReorientRef_in_rule__ReorientExpression__Alternatives3943);\n ruleReorientRef();\n\n state._fsp--;\n\n after(grammarAccess.getReorientExpressionAccess().getReorientRefParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1862:6: ( ruleBasicReorientExpression )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1862:6: ( ruleBasicReorientExpression )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1863:1: ruleBasicReorientExpression\n {\n before(grammarAccess.getReorientExpressionAccess().getBasicReorientExpressionParserRuleCall_1()); \n pushFollow(FOLLOW_ruleBasicReorientExpression_in_rule__ReorientExpression__Alternatives3960);\n ruleBasicReorientExpression();\n\n state._fsp--;\n\n after(grammarAccess.getReorientExpressionAccess().getBasicReorientExpressionParserRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleGoalReference() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGoalReference = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1857:2: (iv_ruleGoalReference= ruleGoalReference EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1858:2: iv_ruleGoalReference= ruleGoalReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGoalReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGoalReference_in_entryRuleGoalReference3862);\r\n iv_ruleGoalReference=ruleGoalReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGoalReference; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGoalReference3872); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "@Test\n\tpublic void testAlternativeOpenOn() {\n\t\tnew DefaultStyledText().selectText(\"s:Alternative\");\n\t\tKeyboardFactory.getKeyboard().invokeKeyCombination(SWT.F3);\n\t\tnew DefaultEditor(\"Alternative.class\");\n\n\t\t/* test opened object */\n\t\tassertExpectedOpenedClass(\"javax.enterprise.inject.Alternative\");\n\n\t}", "public final void ruleExprSimple() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:316:2: ( ( ( rule__ExprSimple__Alternatives ) ) )\n // InternalWh.g:317:2: ( ( rule__ExprSimple__Alternatives ) )\n {\n // InternalWh.g:317:2: ( ( rule__ExprSimple__Alternatives ) )\n // InternalWh.g:318:3: ( rule__ExprSimple__Alternatives )\n {\n before(grammarAccess.getExprSimpleAccess().getAlternatives()); \n // InternalWh.g:319:3: ( rule__ExprSimple__Alternatives )\n // InternalWh.g:319:4: rule__ExprSimple__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__ExprSimple__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getExprSimpleAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PredicateComparison__OpAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9934:1: ( ( ( rule__PredicateComparison__OpAlternatives_1_1_0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9935:1: ( ( rule__PredicateComparison__OpAlternatives_1_1_0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9935:1: ( ( rule__PredicateComparison__OpAlternatives_1_1_0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9936:1: ( rule__PredicateComparison__OpAlternatives_1_1_0 )\n {\n before(grammarAccess.getPredicateComparisonAccess().getOpAlternatives_1_1_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9937:1: ( rule__PredicateComparison__OpAlternatives_1_1_0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9937:2: rule__PredicateComparison__OpAlternatives_1_1_0\n {\n pushFollow(FOLLOW_rule__PredicateComparison__OpAlternatives_1_1_0_in_rule__PredicateComparison__OpAssignment_1_119494);\n rule__PredicateComparison__OpAlternatives_1_1_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getPredicateComparisonAccess().getOpAlternatives_1_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleUpdate() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1052:2: ( ( ( rule__Update__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1053:1: ( ( rule__Update__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1053:1: ( ( rule__Update__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1054:1: ( rule__Update__Alternatives )\n {\n before(grammarAccess.getUpdateAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1055:1: ( rule__Update__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1055:2: rule__Update__Alternatives\n {\n pushFollow(FOLLOW_rule__Update__Alternatives_in_ruleUpdate1962);\n rule__Update__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getUpdateAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleInput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:166:2: ( ( ( rule__Input__Alternatives ) ) )\n // InternalWh.g:167:2: ( ( rule__Input__Alternatives ) )\n {\n // InternalWh.g:167:2: ( ( rule__Input__Alternatives ) )\n // InternalWh.g:168:3: ( rule__Input__Alternatives )\n {\n before(grammarAccess.getInputAccess().getAlternatives()); \n // InternalWh.g:169:3: ( rule__Input__Alternatives )\n // InternalWh.g:169:4: rule__Input__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Input__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "void openLink(Link target);", "public final void rulePredicateAtomic() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:728:2: ( ( ( rule__PredicateAtomic__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:729:1: ( ( rule__PredicateAtomic__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:729:1: ( ( rule__PredicateAtomic__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:730:1: ( rule__PredicateAtomic__Alternatives )\n {\n before(grammarAccess.getPredicateAtomicAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:731:1: ( rule__PredicateAtomic__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:731:2: rule__PredicateAtomic__Alternatives\n {\n pushFollow(FOLLOW_rule__PredicateAtomic__Alternatives_in_rulePredicateAtomic1344);\n rule__PredicateAtomic__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getPredicateAtomicAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final EObject ruleFieldReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n\n enterRule(); \n \n try {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:265:28: ( (otherlv_0= 'ref' ( (otherlv_1= RULE_ID ) ) ) )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:266:1: (otherlv_0= 'ref' ( (otherlv_1= RULE_ID ) ) )\n {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:266:1: (otherlv_0= 'ref' ( (otherlv_1= RULE_ID ) ) )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:266:3: otherlv_0= 'ref' ( (otherlv_1= RULE_ID ) )\n {\n otherlv_0=(Token)match(input,16,FOLLOW_16_in_ruleFieldReference526); \n\n \tnewLeafNode(otherlv_0, grammarAccess.getFieldReferenceAccess().getRefKeyword_0());\n \n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:270:1: ( (otherlv_1= RULE_ID ) )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:271:1: (otherlv_1= RULE_ID )\n {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:271:1: (otherlv_1= RULE_ID )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:272:3: otherlv_1= RULE_ID\n {\n\n \t\t\tif (current==null) {\n \t current = createModelElement(grammarAccess.getFieldReferenceRule());\n \t }\n \n otherlv_1=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleFieldReference546); \n\n \t\tnewLeafNode(otherlv_1, grammarAccess.getFieldReferenceAccess().getReferenceFieldCrossReference_1_0()); \n \t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__OpCompare__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1885:1: ( ( '>=' ) | ( '<=' ) | ( '>' ) | ( '<' ) )\n int alt6=4;\n switch ( input.LA(1) ) {\n case 17:\n {\n alt6=1;\n }\n break;\n case 18:\n {\n alt6=2;\n }\n break;\n case 19:\n {\n alt6=3;\n }\n break;\n case 20:\n {\n alt6=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n\n switch (alt6) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1886:1: ( '>=' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1886:1: ( '>=' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1887:1: '>='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpCompareAccess().getGreaterThanSignEqualsSignKeyword_0()); \n }\n match(input,17,FOLLOW_17_in_rule__OpCompare__Alternatives3973); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpCompareAccess().getGreaterThanSignEqualsSignKeyword_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1894:6: ( '<=' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1894:6: ( '<=' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1895:1: '<='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpCompareAccess().getLessThanSignEqualsSignKeyword_1()); \n }\n match(input,18,FOLLOW_18_in_rule__OpCompare__Alternatives3993); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpCompareAccess().getLessThanSignEqualsSignKeyword_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1902:6: ( '>' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1902:6: ( '>' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1903:1: '>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpCompareAccess().getGreaterThanSignKeyword_2()); \n }\n match(input,19,FOLLOW_19_in_rule__OpCompare__Alternatives4013); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpCompareAccess().getGreaterThanSignKeyword_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1910:6: ( '<' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1910:6: ( '<' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1911:1: '<'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpCompareAccess().getLessThanSignKeyword_3()); \n }\n match(input,20,FOLLOW_20_in_rule__OpCompare__Alternatives4033); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpCompareAccess().getLessThanSignKeyword_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Alternatives_6_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2721:1: ( ( ( rule__OpOther__Group_6_1_0__0 ) ) | ( '<' ) | ( '=>' ) )\r\n int alt13=3;\r\n int LA13_0 = input.LA(1);\r\n\r\n if ( (LA13_0==27) ) {\r\n int LA13_1 = input.LA(2);\r\n\r\n if ( (synpred35_InternalDroneScript()) ) {\r\n alt13=1;\r\n }\r\n else if ( (synpred36_InternalDroneScript()) ) {\r\n alt13=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 13, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else if ( (LA13_0==31) ) {\r\n alt13=3;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 13, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt13) {\r\n case 1 :\r\n // InternalDroneScript.g:2722:2: ( ( rule__OpOther__Group_6_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:2722:2: ( ( rule__OpOther__Group_6_1_0__0 ) )\r\n // InternalDroneScript.g:2723:3: ( rule__OpOther__Group_6_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_6_1_0()); \r\n }\r\n // InternalDroneScript.g:2724:3: ( rule__OpOther__Group_6_1_0__0 )\r\n // InternalDroneScript.g:2724:4: rule__OpOther__Group_6_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Group_6_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_6_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:2728:2: ( '<' )\r\n {\r\n // InternalDroneScript.g:2728:2: ( '<' )\r\n // InternalDroneScript.g:2729:3: '<'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_6_1_1()); \r\n }\r\n match(input,27,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_6_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:2734:2: ( '=>' )\r\n {\r\n // InternalDroneScript.g:2734:2: ( '=>' )\r\n // InternalDroneScript.g:2735:3: '=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_6_1_2()); \r\n }\r\n match(input,31,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_6_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Entry__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:289:1: ( ( ruleApplication ) | ( ruleActivity ) )\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==11) ) {\n alt1=1;\n }\n else if ( (LA1_0==12) ) {\n alt1=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"285:1: rule__Entry__Alternatives : ( ( ruleApplication ) | ( ruleActivity ) );\", 1, 0, input);\n\n throw nvae;\n }\n switch (alt1) {\n case 1 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:290:1: ( ruleApplication )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:290:1: ( ruleApplication )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:291:1: ruleApplication\n {\n before(grammarAccess.getEntryAccess().getApplicationParserRuleCall_0()); \n pushFollow(FollowSets000.FOLLOW_ruleApplication_in_rule__Entry__Alternatives550);\n ruleApplication();\n _fsp--;\n\n after(grammarAccess.getEntryAccess().getApplicationParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:296:6: ( ruleActivity )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:296:6: ( ruleActivity )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:297:1: ruleActivity\n {\n before(grammarAccess.getEntryAccess().getActivityParserRuleCall_1()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_rule__Entry__Alternatives567);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getEntryAccess().getActivityParserRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleTopLevelDecl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:117:2: ( ( ( rule__TopLevelDecl__Alternatives ) ) )\r\n // InternalGo.g:118:2: ( ( rule__TopLevelDecl__Alternatives ) )\r\n {\r\n // InternalGo.g:118:2: ( ( rule__TopLevelDecl__Alternatives ) )\r\n // InternalGo.g:119:3: ( rule__TopLevelDecl__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTopLevelDeclAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:120:3: ( rule__TopLevelDecl__Alternatives )\r\n // InternalGo.g:120:4: rule__TopLevelDecl__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__TopLevelDecl__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTopLevelDeclAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOperand() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2492:2: ( ( ( rule__Operand__Alternatives ) ) )\r\n // InternalGo.g:2493:2: ( ( rule__Operand__Alternatives ) )\r\n {\r\n // InternalGo.g:2493:2: ( ( rule__Operand__Alternatives ) )\r\n // InternalGo.g:2494:3: ( rule__Operand__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOperandAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:2495:3: ( rule__Operand__Alternatives )\r\n // InternalGo.g:2495:4: rule__Operand__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Operand__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOperandAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Key__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4223:1: ( ( ( rule__Key__Group_0__0 ) ) | ( ruleExpression ) | ( ruleLiteralValue ) )\r\n int alt43=3;\r\n switch ( input.LA(1) ) {\r\n case RULE_ID:\r\n {\r\n int LA43_1 = input.LA(2);\r\n\r\n if ( (synpred82_InternalGo()) ) {\r\n alt43=1;\r\n }\r\n else if ( (synpred83_InternalGo()) ) {\r\n alt43=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 43, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case 46:\r\n {\r\n int LA43_2 = input.LA(2);\r\n\r\n if ( (LA43_2==RULE_ID) ) {\r\n int LA43_6 = input.LA(3);\r\n\r\n if ( (synpred82_InternalGo()) ) {\r\n alt43=1;\r\n }\r\n else if ( (synpred83_InternalGo()) ) {\r\n alt43=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 43, 6, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else if ( (LA43_2==RULE_STRING||(LA43_2>=RULE_DECIMALS && LA43_2<=RULE_FLOAT_LIT)||(LA43_2>=RULE_UNARY_OP && LA43_2<=RULE_BOOLEAN_LIT)||(LA43_2>=45 && LA43_2<=46)||LA43_2==48||(LA43_2>=51 && LA43_2<=52)||LA43_2==54||LA43_2==56||(LA43_2>=60 && LA43_2<=63)) ) {\r\n alt43=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 43, 2, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case RULE_STRING:\r\n case RULE_DECIMALS:\r\n case RULE_FLOAT_LIT:\r\n case RULE_UNARY_OP:\r\n case RULE_LITERAL_TYPE:\r\n case RULE_INT_LIT:\r\n case RULE_BOOLEAN_LIT:\r\n case 45:\r\n case 48:\r\n case 51:\r\n case 52:\r\n case 54:\r\n case 56:\r\n case 60:\r\n case 61:\r\n case 62:\r\n case 63:\r\n {\r\n alt43=2;\r\n }\r\n break;\r\n case 57:\r\n {\r\n alt43=3;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 43, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt43) {\r\n case 1 :\r\n // InternalGo.g:4224:2: ( ( rule__Key__Group_0__0 ) )\r\n {\r\n // InternalGo.g:4224:2: ( ( rule__Key__Group_0__0 ) )\r\n // InternalGo.g:4225:3: ( rule__Key__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getKeyAccess().getGroup_0()); \r\n }\r\n // InternalGo.g:4226:3: ( rule__Key__Group_0__0 )\r\n // InternalGo.g:4226:4: rule__Key__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Key__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getKeyAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4230:2: ( ruleExpression )\r\n {\r\n // InternalGo.g:4230:2: ( ruleExpression )\r\n // InternalGo.g:4231:3: ruleExpression\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getKeyAccess().getExpressionParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getKeyAccess().getExpressionParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalGo.g:4236:2: ( ruleLiteralValue )\r\n {\r\n // InternalGo.g:4236:2: ( ruleLiteralValue )\r\n // InternalGo.g:4237:3: ruleLiteralValue\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getKeyAccess().getLiteralValueParserRuleCall_2()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleLiteralValue();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getKeyAccess().getLiteralValueParserRuleCall_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__CharsetAssignment_4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3757:1: ( ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) ) )\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n {\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n // InternalCsv.g:3759:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n // InternalCsv.g:3760:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n // InternalCsv.g:3760:4: rule__OpenCSV__CharsetAlternatives_4_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAlternatives_4_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleDeclaration() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1167:2: ( ( ( rule__Declaration__Alternatives ) ) )\r\n // InternalGo.g:1168:2: ( ( rule__Declaration__Alternatives ) )\r\n {\r\n // InternalGo.g:1168:2: ( ( rule__Declaration__Alternatives ) )\r\n // InternalGo.g:1169:3: ( rule__Declaration__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDeclarationAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:1170:3: ( rule__Declaration__Alternatives )\r\n // InternalGo.g:1170:4: rule__Declaration__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Declaration__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDeclarationAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Reference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2752:1: ( ( () ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2753:1: ( () )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2753:1: ( () )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2754:1: ()\n {\n before(grammarAccess.getReferenceAccess().getReferenceAction_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2755:1: ()\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2757:1: \n {\n }\n\n after(grammarAccess.getReferenceAccess().getReferenceAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private Ref handleRef() throws XMLStreamException{\n String name = reader.getAttributeValue(0);\n nextTag();\n nextTag();\n return new Ref(definedGrammar, name);\n }", "public final void rule__StoreExpression__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2092:1: ( ( ruleReference ) | ( ruleSelfReference ) )\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_LOWER) ) {\n alt1=1;\n }\n else if ( (LA1_0==22) ) {\n alt1=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 1, 0, input);\n\n throw nvae;\n }\n switch (alt1) {\n case 1 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2093:1: ( ruleReference )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2093:1: ( ruleReference )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2094:1: ruleReference\n {\n before(grammarAccess.getStoreExpressionAccess().getReferenceParserRuleCall_0()); \n pushFollow(FOLLOW_ruleReference_in_rule__StoreExpression__Alternatives3969);\n ruleReference();\n\n state._fsp--;\n\n after(grammarAccess.getStoreExpressionAccess().getReferenceParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2099:6: ( ruleSelfReference )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2099:6: ( ruleSelfReference )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2100:1: ruleSelfReference\n {\n before(grammarAccess.getStoreExpressionAccess().getSelfReferenceParserRuleCall_1()); \n pushFollow(FOLLOW_ruleSelfReference_in_rule__StoreExpression__Alternatives3986);\n ruleSelfReference();\n\n state._fsp--;\n\n after(grammarAccess.getStoreExpressionAccess().getSelfReferenceParserRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AddExp__OpAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:10339:1: ( ( ( rule__AddExp__OpAlternatives_1_1_0 ) ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:10340:1: ( ( rule__AddExp__OpAlternatives_1_1_0 ) )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:10340:1: ( ( rule__AddExp__OpAlternatives_1_1_0 ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:10341:1: ( rule__AddExp__OpAlternatives_1_1_0 )\n {\n before(grammarAccess.getAddExpAccess().getOpAlternatives_1_1_0()); \n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:10342:1: ( rule__AddExp__OpAlternatives_1_1_0 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:10342:2: rule__AddExp__OpAlternatives_1_1_0\n {\n pushFollow(FOLLOW_rule__AddExp__OpAlternatives_1_1_0_in_rule__AddExp__OpAssignment_1_120798);\n rule__AddExp__OpAlternatives_1_1_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAddExpAccess().getOpAlternatives_1_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getReferentialActionUpdateRule();", "public final EObject ruleOpenField() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_isMandatory_1_0=null;\n AntlrDatatypeRuleToken lv_questionText_2_0 = null;\n\n\n enterRule(); \n \n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1149:28: ( (otherlv_0= 'Q' ( (lv_isMandatory_1_0= '*' ) )? ( (lv_questionText_2_0= ruleEString ) ) ) )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1150:1: (otherlv_0= 'Q' ( (lv_isMandatory_1_0= '*' ) )? ( (lv_questionText_2_0= ruleEString ) ) )\n {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1150:1: (otherlv_0= 'Q' ( (lv_isMandatory_1_0= '*' ) )? ( (lv_questionText_2_0= ruleEString ) ) )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1150:3: otherlv_0= 'Q' ( (lv_isMandatory_1_0= '*' ) )? ( (lv_questionText_2_0= ruleEString ) )\n {\n otherlv_0=(Token)match(input,25,FollowSets000.FOLLOW_25_in_ruleOpenField2332); \n\n \tnewLeafNode(otherlv_0, grammarAccess.getOpenFieldAccess().getQKeyword_0());\n \n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1154:1: ( (lv_isMandatory_1_0= '*' ) )?\n int alt21=2;\n int LA21_0 = input.LA(1);\n\n if ( (LA21_0==26) ) {\n alt21=1;\n }\n switch (alt21) {\n case 1 :\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1155:1: (lv_isMandatory_1_0= '*' )\n {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1155:1: (lv_isMandatory_1_0= '*' )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1156:3: lv_isMandatory_1_0= '*'\n {\n lv_isMandatory_1_0=(Token)match(input,26,FollowSets000.FOLLOW_26_in_ruleOpenField2350); \n\n newLeafNode(lv_isMandatory_1_0, grammarAccess.getOpenFieldAccess().getIsMandatoryAsteriskKeyword_1_0());\n \n\n \t if (current==null) {\n \t current = createModelElement(grammarAccess.getOpenFieldRule());\n \t }\n \t\tsetWithLastConsumed(current, \"isMandatory\", true, \"*\");\n \t \n\n }\n\n\n }\n break;\n\n }\n\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1169:3: ( (lv_questionText_2_0= ruleEString ) )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1170:1: (lv_questionText_2_0= ruleEString )\n {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1170:1: (lv_questionText_2_0= ruleEString )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1171:3: lv_questionText_2_0= ruleEString\n {\n \n \t newCompositeNode(grammarAccess.getOpenFieldAccess().getQuestionTextEStringParserRuleCall_2_0()); \n \t \n pushFollow(FollowSets000.FOLLOW_ruleEString_in_ruleOpenField2385);\n lv_questionText_2_0=ruleEString();\n\n state._fsp--;\n\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getOpenFieldRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"questionText\",\n \t\tlv_questionText_2_0, \n \t\t\"EString\");\n \t afterParserOrEnumRuleCall();\n \t \n\n }\n\n\n }\n\n\n }\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void mT__161() throws RecognitionException {\r\n try {\r\n int _type = T__161;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // InternalSpringConfigDsl.g:162:8: ( 'advice-ref=' )\r\n // InternalSpringConfigDsl.g:162:10: 'advice-ref='\r\n {\r\n match(\"advice-ref=\"); \r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final void rule__OpOther__Alternatives_5_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2700:1: ( ( ( rule__OpOther__Group_5_1_0__0 ) ) | ( '>' ) )\r\n int alt12=2;\r\n int LA12_0 = input.LA(1);\r\n\r\n if ( (LA12_0==26) ) {\r\n int LA12_1 = input.LA(2);\r\n\r\n if ( (LA12_1==EOF||(LA12_1>=RULE_ID && LA12_1<=RULE_STRING)||LA12_1==27||(LA12_1>=34 && LA12_1<=35)||LA12_1==40||(LA12_1>=45 && LA12_1<=50)||LA12_1==55||LA12_1==58||(LA12_1>=72 && LA12_1<=73)||(LA12_1>=76 && LA12_1<=77)||LA12_1==79||(LA12_1>=82 && LA12_1<=89)||LA12_1==91||LA12_1==99) ) {\r\n alt12=2;\r\n }\r\n else if ( (LA12_1==26) ) {\r\n alt12=1;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 12, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 12, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt12) {\r\n case 1 :\r\n // InternalDroneScript.g:2701:2: ( ( rule__OpOther__Group_5_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:2701:2: ( ( rule__OpOther__Group_5_1_0__0 ) )\r\n // InternalDroneScript.g:2702:3: ( rule__OpOther__Group_5_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_5_1_0()); \r\n }\r\n // InternalDroneScript.g:2703:3: ( rule__OpOther__Group_5_1_0__0 )\r\n // InternalDroneScript.g:2703:4: rule__OpOther__Group_5_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Group_5_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_5_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:2707:2: ( '>' )\r\n {\r\n // InternalDroneScript.g:2707:2: ( '>' )\r\n // InternalDroneScript.g:2708:3: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_5_1_1()); \r\n }\r\n match(input,26,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_5_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setOpenUrlValueForCustomAction(String openURLValue) {\n\t\tthis.openUrlValue = openURLValue;\n\t}", "public final void ruleXExpression() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:142:2: ( ( ( rule__XExpression__Alternatives ) ) )\r\n // InternalDroneScript.g:143:2: ( ( rule__XExpression__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:143:2: ( ( rule__XExpression__Alternatives ) )\r\n // InternalDroneScript.g:144:3: ( rule__XExpression__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXExpressionAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:145:3: ( rule__XExpression__Alternatives )\r\n // InternalDroneScript.g:145:4: rule__XExpression__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XExpression__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXExpressionAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Expressions__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2294:1: ( ( ruleOutStoreReference ) | ( ( rule__Expressions__Group_1__0 ) ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==RULE_LOWER||LA8_0==22) ) {\n alt8=1;\n }\n else if ( (LA8_0==RULE_INT) ) {\n alt8=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2295:1: ( ruleOutStoreReference )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2295:1: ( ruleOutStoreReference )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2296:1: ruleOutStoreReference\n {\n before(grammarAccess.getExpressionsAccess().getOutStoreReferenceParserRuleCall_0()); \n pushFollow(FOLLOW_ruleOutStoreReference_in_rule__Expressions__Alternatives4442);\n ruleOutStoreReference();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionsAccess().getOutStoreReferenceParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2301:6: ( ( rule__Expressions__Group_1__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2301:6: ( ( rule__Expressions__Group_1__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2302:1: ( rule__Expressions__Group_1__0 )\n {\n before(grammarAccess.getExpressionsAccess().getGroup_1()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2303:1: ( rule__Expressions__Group_1__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2303:2: rule__Expressions__Group_1__0\n {\n pushFollow(FOLLOW_rule__Expressions__Group_1__0_in_rule__Expressions__Alternatives4459);\n rule__Expressions__Group_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getExpressionsAccess().getGroup_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__REAL__Alternatives_0_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3188:1: ( ( RULE_EXP_INT ) | ( RULE_INT ) )\n int alt24=2;\n int LA24_0 = input.LA(1);\n\n if ( (LA24_0==RULE_EXP_INT) ) {\n alt24=1;\n }\n else if ( (LA24_0==RULE_INT) ) {\n alt24=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 24, 0, input);\n\n throw nvae;\n }\n switch (alt24) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3189:1: ( RULE_EXP_INT )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3189:1: ( RULE_EXP_INT )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3190:1: RULE_EXP_INT\n {\n before(grammarAccess.getREALAccess().getEXP_INTTerminalRuleCall_0_2_0()); \n match(input,RULE_EXP_INT,FOLLOW_RULE_EXP_INT_in_rule__REAL__Alternatives_0_26931); \n after(grammarAccess.getREALAccess().getEXP_INTTerminalRuleCall_0_2_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3195:6: ( RULE_INT )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3195:6: ( RULE_INT )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3196:1: RULE_INT\n {\n before(grammarAccess.getREALAccess().getINTTerminalRuleCall_0_2_1()); \n match(input,RULE_INT,FOLLOW_RULE_INT_in_rule__REAL__Alternatives_0_26948); \n after(grammarAccess.getREALAccess().getINTTerminalRuleCall_0_2_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Other__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:416:1: ( ( RULE_ML_COMMENT ) | ( RULE_OTHER_COMMAND ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==RULE_ML_COMMENT) ) {\n alt4=1;\n }\n else if ( (LA4_0==RULE_OTHER_COMMAND) ) {\n alt4=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:417:1: ( RULE_ML_COMMENT )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:417:1: ( RULE_ML_COMMENT )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:418:1: RULE_ML_COMMENT\n {\n before(grammarAccess.getOtherAccess().getML_COMMENTTerminalRuleCall_0()); \n match(input,RULE_ML_COMMENT,FOLLOW_RULE_ML_COMMENT_in_rule__Other__Alternatives843); \n after(grammarAccess.getOtherAccess().getML_COMMENTTerminalRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:423:6: ( RULE_OTHER_COMMAND )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:423:6: ( RULE_OTHER_COMMAND )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:424:1: RULE_OTHER_COMMAND\n {\n before(grammarAccess.getOtherAccess().getOTHER_COMMANDTerminalRuleCall_1()); \n match(input,RULE_OTHER_COMMAND,FOLLOW_RULE_OTHER_COMMAND_in_rule__Other__Alternatives860); \n after(grammarAccess.getOtherAccess().getOTHER_COMMANDTerminalRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public BondType(String mainTag, String mainTable, String refTable, String actionTable, boolean knownActionFlags) {\n open = false;\n\n this.mainTag = mainTag;\n this.mainTable = mainTable;\n this.refTable = refTable;\n this.knownActionFlags = knownActionFlags;\n actions = new TwoFieldXMLParser(actionTable,\n BondTypeTags.getInstance().ACTIONS, BondTypeTags.getInstance().ACTION);\n }", "public final void ruleAstType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2157:2: ( ( ( rule__AstType__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2159:1: ( rule__AstType__Alternatives )\n {\n before(grammarAccess.getAstTypeAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:1: ( rule__AstType__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:2: rule__AstType__Alternatives\n {\n pushFollow(FOLLOW_rule__AstType__Alternatives_in_ruleAstType4547);\n rule__AstType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public String getDocAction();", "public String getDocAction();", "public final void synpred149_InternalGo_fragment() throws RecognitionException { \r\n // InternalGo.g:12871:3: ( rule__PrimaryExpr2__Alternatives_1 )\r\n // InternalGo.g:12871:3: rule__PrimaryExpr2__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__PrimaryExpr2__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n }", "public final void ruleInterractions() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:641:2: ( ( ( rule__Interractions__Alternatives ) ) )\n // InternalBrowser.g:642:2: ( ( rule__Interractions__Alternatives ) )\n {\n // InternalBrowser.g:642:2: ( ( rule__Interractions__Alternatives ) )\n // InternalBrowser.g:643:3: ( rule__Interractions__Alternatives )\n {\n before(grammarAccess.getInterractionsAccess().getAlternatives()); \n // InternalBrowser.g:644:3: ( rule__Interractions__Alternatives )\n // InternalBrowser.g:644:4: rule__Interractions__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Interractions__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInterractionsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstTop() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:73:2: ( ( ( rule__AstTop__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:74:1: ( ( rule__AstTop__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:74:1: ( ( rule__AstTop__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:75:1: ( rule__AstTop__Alternatives )\n {\n before(grammarAccess.getAstTopAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:76:1: ( rule__AstTop__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:76:2: rule__AstTop__Alternatives\n {\n pushFollow(FOLLOW_rule__AstTop__Alternatives_in_ruleAstTop94);\n rule__AstTop__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTopAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleFeatureCallID() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1617:2: ( ( ( rule__FeatureCallID__Alternatives ) ) )\r\n // InternalDroneScript.g:1618:2: ( ( rule__FeatureCallID__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:1618:2: ( ( rule__FeatureCallID__Alternatives ) )\r\n // InternalDroneScript.g:1619:3: ( rule__FeatureCallID__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:1620:3: ( rule__FeatureCallID__Alternatives )\r\n // InternalDroneScript.g:1620:4: rule__FeatureCallID__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__FeatureCallID__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rulePredicatePrimary() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:692:2: ( ( ( rule__PredicatePrimary__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:693:1: ( ( rule__PredicatePrimary__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:693:1: ( ( rule__PredicatePrimary__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:694:1: ( rule__PredicatePrimary__Alternatives )\n {\n before(grammarAccess.getPredicatePrimaryAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:695:1: ( rule__PredicatePrimary__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:695:2: rule__PredicatePrimary__Alternatives\n {\n pushFollow(FOLLOW_rule__PredicatePrimary__Alternatives_in_rulePredicatePrimary1275);\n rule__PredicatePrimary__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getPredicatePrimaryAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleOpUnary() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:783:2: ( ( ( rule__OpUnary__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:784:1: ( ( rule__OpUnary__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:784:1: ( ( rule__OpUnary__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:785:1: ( rule__OpUnary__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpUnaryAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:786:1: ( rule__OpUnary__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:786:2: rule__OpUnary__Alternatives\n {\n pushFollow(FOLLOW_rule__OpUnary__Alternatives_in_ruleOpUnary1607);\n rule__OpUnary__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpUnaryAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpOr() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:375:1: ( ruleOpOr EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:376:1: ruleOpOr EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOrRule()); \n }\n pushFollow(FOLLOW_ruleOpOr_in_entryRuleOpOr730);\n ruleOpOr();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOrRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleOpOr737); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void addOpenListener(ActionListener actionListener) {\r\n jOpen.addActionListener(actionListener);\r\n }", "public final void ruleOpUnary() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:866:2: ( ( ( rule__OpUnary__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:867:1: ( ( rule__OpUnary__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:867:1: ( ( rule__OpUnary__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:868:1: ( rule__OpUnary__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpUnaryAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:869:1: ( rule__OpUnary__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:869:2: rule__OpUnary__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpUnary__Alternatives_in_ruleOpUnary1787);\r\n rule__OpUnary__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpUnaryAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.81184214", "0.741256", "0.721431", "0.5907732", "0.5393212", "0.5374615", "0.5298493", "0.5295539", "0.5293927", "0.5245573", "0.522077", "0.5052974", "0.5036856", "0.49694902", "0.49199405", "0.48840195", "0.48718718", "0.48362505", "0.48150876", "0.4803929", "0.4743924", "0.4721898", "0.47213724", "0.4693539", "0.46931365", "0.46910208", "0.468856", "0.46816847", "0.46643427", "0.46571904", "0.4592356", "0.45837766", "0.45736074", "0.45612532", "0.4552389", "0.45413652", "0.45267683", "0.45116672", "0.44911128", "0.44752315", "0.4464063", "0.44519454", "0.43848756", "0.436717", "0.43325004", "0.43251574", "0.43245998", "0.43143502", "0.4312324", "0.43101835", "0.43060806", "0.4305351", "0.42959026", "0.42904237", "0.42887732", "0.42831442", "0.42824656", "0.42798555", "0.42775854", "0.4276517", "0.4274487", "0.42731002", "0.42727983", "0.4269771", "0.42552868", "0.42341164", "0.42279285", "0.42225873", "0.42215225", "0.4219914", "0.42088628", "0.4208025", "0.42050448", "0.41899374", "0.4186045", "0.4181812", "0.41738135", "0.41647914", "0.4164071", "0.4162385", "0.4162288", "0.4153095", "0.41455022", "0.4133102", "0.41311452", "0.41262564", "0.4118903", "0.4118664", "0.41131303", "0.41131303", "0.4104853", "0.4086584", "0.40865263", "0.40847847", "0.40758136", "0.4069638", "0.40667072", "0.40656918", "0.40610754", "0.40576303" ]
0.8635641
0
$ANTLR end "ruleRefOpenAction" $ANTLR start "entryRulePrintCSV" InternalCsv.g:179:1: entryRulePrintCSV : rulePrintCSV EOF ;
public final void entryRulePrintCSV() throws RecognitionException { try { // InternalCsv.g:180:1: ( rulePrintCSV EOF ) // InternalCsv.g:181:1: rulePrintCSV EOF { if ( state.backtracking==0 ) { before(grammarAccess.getPrintCSVRule()); } pushFollow(FOLLOW_1); rulePrintCSV(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getPrintCSVRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3791:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n // InternalCsv.g:3793:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3794:3: ( RULE_ID )\n // InternalCsv.g:3795:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1477:1: ( ( 'print' ) )\n // InternalCsv.g:1478:1: ( 'print' )\n {\n // InternalCsv.g:1478:1: ( 'print' )\n // InternalCsv.g:1479:2: 'print'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintKeyword_1()); \n }\n match(input,23,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1503:1: ( ( ( rule__PrintCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1505:2: ( rule__PrintCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1506:2: ( rule__PrintCSV__OpenAssignment_2 )\n // InternalCsv.g:1506:3: rule__PrintCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleSaveCSV() throws RecognitionException {\n try {\n // InternalCsv.g:255:1: ( ruleSaveCSV EOF )\n // InternalCsv.g:256:1: ruleSaveCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__SaveCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3848:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n // InternalCsv.g:3850:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3851:3: ( RULE_ID )\n // InternalCsv.g:3852:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private Result outputCsv(Request request, Entry entry) throws Exception {\r\n Result result = getCsvResult(request, entry);\r\n result.setReturnFilename(\r\n IOUtil.stripExtension(getStorageManager().getFileTail(entry))\r\n + \".csv\");\r\n result.setMimeType(\"text/csv\");\r\n\r\n return result;\r\n }", "public final void mT__46() throws RecognitionException {\n try {\n int _type = T__46;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalVizualizer.g:46:7: ( 'CSV' )\n // InternalVizualizer.g:46:9: 'CSV'\n {\n match(\"CSV\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "public final void rule__PrintCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1465:1: ( rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2 )\n // InternalCsv.g:1466:2: rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__PrintCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "protected AbstractCSVParser(TokenStream input) {\n super(input);\n }", "public static void writeResultsIntoFile(Constituency constituency, CSVPrinter csvp){\n\n try{\n for (Candidate c:constituency.candidates){\n List candidateData = new ArrayList();\n candidateData.add(c.constituency);\n candidateData.add(c.name);\n candidateData.add(c.sex);\n candidateData.add(c.age);\n candidateData.add(c.category);\n candidateData.add(c.party);\n candidateData.add(c.general);\n candidateData.add(c.postal);\n candidateData.add(c.total);\n csvp.printRecord(candidateData);\n }\n }catch (IOException e){\n System.out.println(e);\n }\n }", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void CSVExport(String output, LinkedList<Patient> src, boolean[] shouldEx) {\n\t\tExportSepValuesFile(output, src, \",\", shouldEx);\n\t}", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public void csvExport(String filename, Grade grade) {\n PrintWriter out = null;\n try {\n out = new PrintWriter(filename);\n\n for (Student key : map.keySet()) {\n if (map.get(key).getLetter().equals(grade.getLetter())) {\n out.println(key.getFirst() + \", \" + key.getLast() + \", \" + key.getID());\n }\n }\n } catch (FileNotFoundException ex) {\n System.out.println(\"File was not found\");\n } finally {\n out.close();\n }\n }", "public static void main(String[] args) throws IOException {\n\t\t\n\t\tFileManager csv=new FileManager();\n\t\t\n\t\tcsv.readListOfFiles();\n\t\tcsv.readFile();\n\t\t\n\t\t//csv.tk.displayTokens();\n\t\t//csv.it.displayHashMap();\n\t\tcsv.writeTokensToFile(csv.tk.tokensMap);\n\t\tcsv.matcher.longestSequence(csv.it);\t//csv.it.intTokenList was supposed to be passed but since I need csv.it object in caller so im passing it\n\t\tcsv.matcher.displaySubsequences(csv.it);\n\t\tcsv.writeMatchesToFile(csv.matcher.resultMap,csv.it);\n\t System.out.println(\"\\nProgram Ends \");\n\t \t \n\t}", "@Override\n\tpublic void exportToCSV() {\n\n\t}", "public void csv() throws IOException {\n\t\t\n\t\tSystem.out.println(); //spacing\\\n\t\tFileWriter f;\n\t\t\n\t\tif (bundle.getString(\"csvName\").endsWith(\".csv\")) {\n\t\t\tf = new FileWriter(bundle.getString(\"csvName\"));\n\t\t}\n\t\t\n\t\telse {\n\t\t\tf = new FileWriter(bundle.getString(\"csvName\") + \".csv\");\n\t\t}\n\t\t\n\t\tPrintWriter p = new PrintWriter(f);\n\t\tObject[][] input = {revisionsToo, flowOfTime};\n\t\tCSVWork(input, p, f);\n\t\t\n\t\tObject[][] nextInput = {revisions, ratings};\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[1] = irrelevants;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[1] = relevants;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[0] = intervals;\n\t\tnextInput[1] = commits;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tspecialCSV(existsHere, p);\n\t\t\n\t\tp.flush();\n\t\tp.close();\n\t\tf.close();\n\t}", "public static void printResultsFromCSV() {\n try (CSVReader reader = new CSVReader(new FileReader(\"results.csv\"), ',', '\"', 0)) {\n Map<String, Integer> results = new HashMap<>();\n String[] nextLine;\n while ((nextLine = reader.readNext()) != null) {\n if (nextLine[0].contains(\"http\")) {\n results.put(nextLine[0], Integer.valueOf(nextLine[1]));\n }\n }\n results.\n entrySet().\n stream().\n sorted(Map.Entry.<String, Integer>comparingByValue().reversed()).\n forEach(entry -> System.out.println(entry.getKey() + \", \" + entry.getValue()));\n } catch (IOException e) {\n System.err.println(\"Can't find results.csv\");\n }\n }", "CSV createCSV();", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void exportToCSV();", "@Override\n\tpublic Object visit(ASTJoin node, Object data) {\n\t\tint indent = (Integer) data;\n\t\t\n\t\tprintIndent(indent);\n\t\tSystem.out.println(\"join (\");\n\t\tnode.jjtGetChild(0).jjtAccept(this, indent + 2);\n\t\tSystem.out.println(\",\");\n\t\tnode.jjtGetChild(1).jjtAccept(this, indent + 2);\n\t\tSystem.out.println(\",\");\n\t\tnode.jjtGetChild(2).jjtAccept(this, indent + 2);\n\t\tSystem.out.print(\", \");\n\t\tnode.jjtGetChild(3).jjtAccept(this, 0);\n\t\tSystem.out.println();\n\t\tprintIndent(indent);\n\t\tSystem.out.print(\")\");\n\t\treturn null;\n\t}", "public static void writeDataToCsvUsingStringArrayForReference(PrintWriter writer, List<ReferenceTabDTO> referenceTabList) {\n\n String[] CSV_REFERENCE_TITLE = {\"Reference Details\"};\n\n String[] CSV_REFERENCE_HEADER = {\"REF_ID\", \"REF_TYPE\", \"JOURNAL_PATENT_NAME\", \"REFERENCE\", \"YEAR\", \"VOLUME\", \"ISSUE\", \"START_PAGE\", \"END_PAGE\", \"DOI\", \"PUBMED_ID\", \"PATENT_NO\", \"APPLICATION_TYPE\", \"ISSN_NO\", \"TITLE\", \"ABSTRACT\", \"AUTHORS\", \"COMPANY_NAMES\", \"COMPANY_ADDRESSES\"};\n try (\n CSVWriter csvWriter = new CSVWriter(writer,\n CSVWriter.DEFAULT_SEPARATOR,\n CSVWriter.DEFAULT_ESCAPE_CHARACTER,\n CSVWriter.DEFAULT_LINE_END);\n ) {\n csvWriter.writeNext(CSV_REFERENCE_TITLE);\n csvWriter.writeNext(CSV_REFERENCE_HEADER);\n\n for (ReferenceTabDTO referenceTabDataReturn : referenceTabList) {\n String[] referenceData = new String[]{\n referenceTabDataReturn.getRefId() + \"\",\n referenceTabDataReturn.getRefType() + \"\",\n referenceTabDataReturn.getJournalPatentName(),\n referenceTabDataReturn.getReference(),\n referenceTabDataReturn.getYear() + \"\",\n referenceTabDataReturn.getVolume() + \"\",\n referenceTabDataReturn.getIssue() + \"\",\n referenceTabDataReturn.getStartPage() + \"\",\n referenceTabDataReturn.getEndPage() + \"\",\n referenceTabDataReturn.getDoi() + \"\",\n referenceTabDataReturn.getPubmedId() + \"\",\n referenceTabDataReturn.getPatentNo() + \"\",\n referenceTabDataReturn.getApplicationType() + \"\",\n referenceTabDataReturn.getIssnNo() + \"\",\n referenceTabDataReturn.getTitle() + \"\",\n referenceTabDataReturn.getAbstrac(),\n referenceTabDataReturn.getAuthors() + \"\",\n referenceTabDataReturn.getCompanyNames() + \"\",\n referenceTabDataReturn.getCompanyAddresses() + \"\"\n\n };\n csvWriter.writeNext(referenceData);\n }\n\n } catch (Exception e) {\n System.out.println(\"Exception occured into the ReferenceTab Data Export\" + e.getMessage());\n e.printStackTrace();\n }\n\n }", "public final void rule__OpenCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3742:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3743:2: ( RULE_STRING )\n {\n // InternalCsv.g:3743:2: ( RULE_STRING )\n // InternalCsv.g:3744:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private static void printFeature(CSVPrinter featurePrinter, Feature feature) throws IOException {\n\t\tfeaturePrinter.print(feature.getName());\n\t\tfeaturePrinter.print(feature.getFunction().getName());\n\t\tfeaturePrinter.print(feature.getAttribute1().getName());\n\t\tfeaturePrinter.print(feature.getAttribute1().getType().name());\n\t\tfeaturePrinter.print(feature.getAttribute2().getName());\n\t\tfeaturePrinter.print(feature.getAttribute2().getType().name());\n\t\tfeaturePrinter.println();\n\t}", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic void print(String tab, FileWriter fw) {\n\t\tSystem.out.println(tab + \"CallExpression: \" + id + \" ( \");\n\t\ttry{\n\t\t\tfw.write(tab + \"CallExpression: \" + id + \" ( \\r\\n\");\n\t\t\tfor(Expression exp : argsList) {\n\t\t\t\texp.print(tab + \"\\t\", fw);\n\t\t\t\tSystem.out.println();\n\t\t\t\tfw.write(\"\\r\\n\");\n\t\t\t}\n\t\t\tSystem.out.println(tab + \" )\");\n\t\t\tfw.write(tab + \" )\\r\\n\");\n\t\t} catch (IOException e){\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "public CSVHarvester() {\r\n super(\"csv\", \"CSV Harvester\");\r\n }", "private void exportTabDelim() {\n boolean modOK = modIfChanged();\n int exported = 0;\n if (modOK) {\n fileChooser.setDialogTitle (\"Export to Tab-Delimited\");\n fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);\n File selectedFile = fileChooser.showSaveDialog (this);\n if (selectedFile != null) {\n TabDelimFile tabs = new TabDelimFile(selectedFile);\n try {\n tabs.openForOutput(ClubEvent.getRecDef());\n for (int i = 0; i < clubEventList.size(); i++) {\n ClubEvent nextClubEvent = clubEventList.get(i);\n if (nextClubEvent != null) {\n tabs.nextRecordOut(nextClubEvent.getDataRec());\n exported++;\n }\n }\n tabs.close();\n JOptionPane.showMessageDialog(this,\n String.valueOf(exported) + \" Club Events exported successfully to\"\n + GlobalConstants.LINE_FEED\n + selectedFile.toString(),\n \"Export Results\",\n JOptionPane.INFORMATION_MESSAGE,\n Home.getShared().getIcon());\n logger.recordEvent (LogEvent.NORMAL, String.valueOf(exported) \n + \" Club Events exported in tab-delimited format to \" \n + selectedFile.toString(),\n false);\n statusBar.setStatus(String.valueOf(exported) \n + \" Club Events exported\");\n } catch (java.io.IOException e) {\n logger.recordEvent (LogEvent.MEDIUM,\n \"Problem exporting Club Events to \" + selectedFile.toString(),\n false);\n trouble.report (\"I/O error attempting to export club events to \" \n + selectedFile.toString(),\n \"I/O Error\");\n statusBar.setStatus(\"Trouble exporting Club Events\");\n } // end if I/O error\n } // end if user selected an output file\n } // end if were able to save the last modified record\n }", "public final void rule__OpenCSV__HeaderAssignment_7_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3772:1: ( ( ( 'true' ) ) )\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n {\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n // InternalCsv.g:3774:3: ( 'true' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n // InternalCsv.g:3775:3: ( 'true' )\n // InternalCsv.g:3776:4: 'true'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n match(input,40,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public void csvExport(String filename) {\n PrintWriter out = null;\n try {\n out = new PrintWriter(filename);\n\n for (Student key : map.keySet()) {\n out.println(key.getFirst() + \", \" + key.getLast() + \", \" + key.getID() + \", \" + map.get(key).getLetter());\n }\n } catch (FileNotFoundException ex) {\n System.out.println(\"File was not found\");\n } finally {\n out.close();\n }\n }", "@Override\n\tpublic Object visit(ASTRelComma node, Object data) {\n\t\tnode.jjtGetChild(0).jjtAccept(this, data);\n\t\tSystem.out.print(\", \");\n\t\tnode.jjtGetChild(1).jjtAccept(this, data);\n\t\treturn null;\n\t}", "@Override\n DBO consume(String csv) throws TransformerException;", "public final void rule__OpenCSV__Alternatives_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==40) ) {\n alt4=1;\n }\n else if ( (LA4_0==12) ) {\n alt4=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n {\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__HeaderAssignment_7_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:713:2: ( 'false' )\n {\n // InternalCsv.g:713:2: ( 'false' )\n // InternalCsv.g:714:3: 'false'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n match(input,12,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private static void memberExport(String club, HttpServletResponse resp, PrintWriter out, HttpServletRequest req, Connection con) {\r\n\r\n \r\n Statement stmt = null;\r\n ResultSet rs = null;\r\n \r\n //\r\n // First, verify club name and key as a security measure (all new clubs must be added here!)\r\n //\r\n if (!club.equals(\"interlachen\") || !req.getParameter(\"key\").equals(\"asdf\")) {\r\n \r\n Utilities.logError(\"dataLoader.memberExport - Unknown Club or Key: Club = \" +club+ \", key = \" +req.getParameter(\"key\")+ \", todo = memberExport\");\r\n out.print(\"Error: Improper request. Invalid club or key.\");\r\n return;\r\n }\r\n \r\n resp.setContentType(\"text/csv\"); // text-csv file\r\n resp.setHeader(\"Content-Disposition\", \"attachment;filename=\\\"\"+club+\"-login-counts.csv\\\"\"); \r\n \r\n StringBuffer sb = new StringBuffer(\"\"); // Use a stringbuffer to hold the records\r\n \r\n //\r\n // Add header row\r\n //\r\n sb.append(\"\\\"ForeTees Id\\\",\");\r\n sb.append(\"\\\"Member #\\\",\");\r\n sb.append(\"\\\"Membership\\\",\");\r\n sb.append(\"\\\"Member Type\\\",\");\r\n sb.append(\"\\\"Total Logins\\\",\");\r\n sb.append(\"\\\"Mobile Logins\\\",\");\r\n sb.append(\"\\\"App Logins\\\"\\n\");\r\n \r\n try {\r\n\r\n //\r\n // Get member info and output as table rows\r\n //\r\n if (con != null) {\r\n \r\n stmt = con.createStatement(); \r\n \r\n String sql = \"\" +\r\n \"SELECT id, username, count, m_ship, m_type, mobile_count, mobile_app_count \" +\r\n \"FROM member2b \" +\r\n \"WHERE inact=0 AND billable = 1\";\r\n \r\n rs = stmt.executeQuery(sql);\r\n \r\n while (rs.next()) {\r\n\r\n sb.append(\"\\\"\" + rs.getInt(\"id\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getString(\"username\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getString(\"m_ship\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getString(\"m_type\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getInt(\"count\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getInt(\"mobile_count\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getInt(\"mobile_app_count\") + \"\\\"\\n\");\r\n }\r\n \r\n stmt.close();\r\n }\r\n \r\n out.print(sb.toString()); // output the file\r\n \r\n } catch (Exception e) {\r\n\r\n Utilities.logError(\"Error in dataLoader.memberExport for club: \" + club + \". Exception= \" + org.apache.commons.lang.exception.ExceptionUtils.getStackTrace(e));\r\n out.print(\"Error: Database error gathering member data.\");\r\n\r\n } finally {\r\n\r\n try { rs.close(); }\r\n catch (Exception ignore) {}\r\n\r\n try { stmt.close(); }\r\n catch (Exception ignore) {}\r\n }\r\n\r\n }", "@Override\n\tpublic Object visit(ASTXQueryComma node, Object data) {\n\t\tnode.jjtGetChild(0).jjtAccept(this, data);\n\t\tSystem.out.println(\",\");\n\t\tnode.jjtGetChild(1).jjtAccept(this, data);\n\t\treturn null;\n\t}", "public Arginfo visit(PrintStatement n, Arginfo argu) {\n Arginfo _ret=null;\n n.f0.accept(this, argu);\n n.f1.accept(this, argu);\n System.out.println(\"PRINT \");\n n.f2.accept(this, argu);\n n.f3.accept(this, argu);\n n.f4.accept(this, argu);\n return _ret;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3810:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n // InternalCsv.g:3812:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3813:3: ( RULE_ID )\n // InternalCsv.g:3814:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void tester() {\n FileResource fr = new FileResource();\n CSVParser parser = fr.getCSVParser();\n //listExporters(parser, \"coffee\");\n //System.out.println(countryInfo(parser, \"Nauru\"));\n //listExportersTwoProducts(parser, \"cotton\",\"flowers\");\n //System.out.println(numberOfExporters(parser, \"cocoa\"));\n bigExporters(parser, \"$999,999,999,999\");\n }", "public Fixed2Csv(final LayoutDetail layout, \n \t\t final String infile, final String outfile,\n \t\t final String font,\n \t\t final String sep,\t final String quote,\n \t\t final IUpdateFieldName updateFldName)\n throws IOException {\n super();\n LineIOProvider ioProvider = new LineIOProvider();\n AbstractLineReader reader = ioProvider.getLineReader(layout);\n\n reader.open(infile, layout);\n\n copyFile(reader, outfile, font, sep, quote, updateFldName);\n }", "void createCsv(String location);", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test\n public void detailCompareDefaultDelimiterWithCompareOption(){\n LOGGER.info(\"------------- Start running detailCompareDefaultDelimiterWithCompareOption -------------\");\n srcCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/output.csv\";\n desCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/target.csv\";\n boolean result = CsvUtil.compareCsv(srcCsv, desCsv, null,null, CsvUtil.CompareOptions.TRUE_FALSE_IS_1_0, CsvUtil.CompareOptions.SKIP_NUMBER_TYPE);\n assertTrue(result);\n }", "public static void main(String[] args){\n String importPath = \"import.CSV\";\n String exportQuery = \"SELECT * FROM PAIS\";\n SQLUtils t = new SQLUtilsImpl();\n File export = t.importCSV(exportQuery);\n //t.runFile(file);\n //t.importCSV(importF);\n //System.out.println(t.executeQuery(\"SELECT * FROM CIDADE WHERE ID = 3000\")); \n \n System.out.println(\"termino\");\n }", "public final void ruleSaveCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:267:2: ( ( ( rule__SaveCSV__Group__0 ) ) )\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n {\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n // InternalCsv.g:269:3: ( rule__SaveCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n // InternalCsv.g:270:3: ( rule__SaveCSV__Group__0 )\n // InternalCsv.g:270:4: rule__SaveCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test\n public void detailCompareDefaultDelimiterNoCompareOption(){\n LOGGER.info(\"------------- Start running detailCompareDefaultDelimiterNoCompareOption -------------\");\n srcCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/output.csv\";\n desCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/target.csv\";\n boolean result = CsvUtil.compareCsv(srcCsv, desCsv, null,null);\n assertTrue(result);\n }", "public static void main(String[] args) throws FileNotFoundException {\n\t\tScanner sc = new Scanner(new File(\"F:\\\\CSVDemo.csv\")); \n\t\tsc.useDelimiter(\",\"); //sets the delimiter pattern \n\t\twhile (sc.hasNext()) //returns a boolean value \n\t\t{ \n\t\tSystem.out.print(sc.next()); //find and returns the next complete token from this scanner \n\t\t} \n\t\tsc.close(); //closes the scanner \n\t\tCSVCompare();\n\t}", "public static void main(String[] args) {\n\t\tScanner sc = null;\n\t\ttry {\n\t\t\tsc = new Scanner(new File(\"E:\\\\java nots\\\\demo.csv\"));\n\t\t\tsc.useDelimiter(\",\"); // sets the delimiter pattern\n\t\t\twhile (sc.hasNext()) // returns a boolean value\n\t\t\t{\n\t\t\t\tSystem.out.print(sc.next() + \"\\t\"); // find and returns the next complete token from this scanner\n\t\t\t}\n\t\t} catch (FileNotFoundException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t} finally {\n\t\t\tsc.close(); // closes the scanner\n\t\t}\n\n\t}", "public void createCSV() {\n\t\t// Need to integrate CSV calling logic\n\t}", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleRefOpenAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) )\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n {\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives )\n // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__RefOpenAction__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void exportCSV(ActionEvent actionEvent) {\n\t\tLOGGER.info(\"Exportando ficheros CSV\");\n\t\ttry {\n\t\t\tDirectoryChooser dir = new DirectoryChooser();\n\t\t\tFile file = new File(ConfigHelper.getProperty(\"csvFolderPath\", \"./\"));\n\t\t\tif (file.exists() && file.isDirectory()) {\n\t\t\t\tdir.setInitialDirectory(file);\n\t\t\t}\n\n\t\t\tFile selectedDir = dir.showDialog(controller.getStage());\n\t\t\tif (selectedDir != null) {\n\t\t\t\tCSVBuilderAbstract.setPath(selectedDir.toPath());\n\t\t\t\tCharsets charset = controller.getMainConfiguration().getValue(MainConfiguration.GENERAL, \"charset\");\n\t\t\t\tCSVExport.run(charset.get());\n\t\t\t\tUtilMethods.infoWindow(I18n.get(\"message.export_csv_success\") + selectedDir.getAbsolutePath());\n\t\t\t\tConfigHelper.setProperty(\"csvFolderPath\", selectedDir.getAbsolutePath());\n\t\t\t}\n\n\t\t} catch (Exception e) {\n\t\t\tLOGGER.error(\"Error al exportar ficheros CSV.\", e);\n\t\t\tUtilMethods.errorWindow(I18n.get(\"error.savecsvfiles\"), e);\n\t\t}\n\t}", "public void listExporters(CSVParser parser, String exportOfInterest) {\n for (CSVRecord record : parser) {\n //Look at the \"Exports\" column\n String export = record.get(\"Exports\");\n //Check if it contains exportOfInterest\n if (export.contains(exportOfInterest)) {\n //If so, write down the \"Country\" from that row\n String country = record.get(\"Country\");\n System.out.println(country);\n }\n }\n }", "public CSVExporter() {\n super(NAME, CONTENTTYPE);\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3829:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n // InternalCsv.g:3831:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3832:3: ( RULE_ID )\n // InternalCsv.g:3833:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "protected AbstractCSVParser(TokenStream input, RecognizerSharedState state) {\n super(input, state);\n }", "public Fixed2Csv(final AbstractLineReader reader,\n \t final String outfile,\n \t final String font,\n \t final String sep,\n \t final String quote, \n \t final IUpdateFieldName updateFldName) {\n super();\n try {\n copyFile(reader, outfile, font, sep, quote, updateFldName);\n } catch (IOException e) {\n e.printStackTrace();\n }\n\n }", "public final void rule__OpenCSV__NameAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3727:1: ( ( RULE_ID ) )\n // InternalCsv.g:3728:2: ( RULE_ID )\n {\n // InternalCsv.g:3728:2: ( RULE_ID )\n // InternalCsv.g:3729:3: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getNameIDTerminalRuleCall_2_0()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getNameIDTerminalRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void writeDataToFlatFileUsingStringArrayForReference(PrintWriter printWriter, String directory) {\n\n try {\n\n String home = System.getProperty(\"user.home\");\n System.out.println(\"file path test\" + home);\n\n String dirPath = home + \"\\\\Downloads\\\\\";\n\n File directoryFile = new File(dirPath);\n\n File[] fList = directoryFile.listFiles();\n\n String[] row = null;\n for (File file : fList) {\n if (file.isFile()) {\n if (file.getName().startsWith(\"export\") && file.getName().endsWith(\".csv\")) {\n System.out.println(\"all file names\" + file.getName());\n\n CSVReader csvReader = new CSVReader(new FileReader(dirPath + file.getName()));\n\n while ((row = csvReader.readNext()) != null) {\n\n for (String cell : row) {\n\n printWriter.write(cell.replaceAll(\"Activity Details\", \"\").replaceAll(\"Assay Details\", \"\").replaceAll(\"Structure Details\", \"\").replaceAll(\"Reference Details\", \"\") + \"\\t\");\n }\n printWriter.println();\n System.out.println();\n }\n csvReader.close();\n }\n }\n\n }\n\n } catch (FileNotFoundException exception) {\n System.out.println(\"Exception occured in FlatFile Service File Not Found \" + exception.getMessage());\n } catch (Exception e) {\n System.out.println(\"Exception occured in FlatFile Service \" + e.getMessage());\n }\n\n }", "@Override\n\tpublic void print(String tab, FileWriter fw) {\n\t\tSystem.out.println(tab + \"LiteralExpression: \" + number.toString());\n\t\ttry {\n\t\t\tfw.write(tab + \"LiteralExpression: \" + number.toString());\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "@Override\n public String visit(PrintStmt n) {\n /*\n * PRINT t3\n *\n * move $a0, $t3\n * jal _print\n */\n String simpleExp = n.f1.accept(this);\n this.save_a0v0(null);\n Global.outputString += \"move $a0, \" + simpleExp + '\\n' + \"jal _print\\n\";\n this.load_a0v0(null);\n return null;\n }", "@Then(\"^the results should be displayed and saved in csv file$\")\n\tpublic void the_results_should_be_displayed_and_saved_in_csv_file() throws Throwable {\n\t\thomepage.waitForPageToLoad(homepage.getTitle());\n\t\thomepage.waitForVisibility(homepage.searchResults);\n\t\tList<WebElement> allSearchResults = homepage.findElements(homepage.searchResults);\n\n\t\ttry{\n\n\t\t\tfile = new File(csvFilePath);\n\n\t\t\tif (!file.exists())\n\t\t\t\tfile.createNewFile();\n\t\t\tpw = new PrintWriter(new File(csvFilePath));\n\t\t\tStringBuilder sb = new StringBuilder();\n\n\n\t\t\t//for header\n\t\t\tsb.append(\"Title\");\n\t\t\tsb.append(\" , \");\n\t\t\tsb.append(\"Link\");\n\t\t\tsb.append('\\n');\n\n\t\t\t// writing the required data to CSV file\n\t\t\tfor (WebElement result : allSearchResults){\n\n\t\t\t\tsb.append(result.getText());\n\t\t\t\tsb.append(\" , \");\n\t\t\t\tsb.append(result.getAttribute(\"href\"));\n\t\t\t\tsb.append('\\n');\n\t\t\t}\n\n\t\t\tpw.write(sb.toString());\n\n\t\t}\n\t\tcatch(Exception e) {\n\t\t\tSystem.out.println(\"Error while writing to csv file !!!\");\n\t\t\te.printStackTrace();\n\t\t} finally {\n\t\t\ttry {\n\t\t\t\tpw.flush();\n\t\t\t\tpw.close();\n\t\t\t} catch (Exception e) {\n\n\t\t\t\tSystem.out.println(\"Error while flushing/closing fileWriter !!!\");\n\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t}\n\t}", "public static void main(String[] args) {\n\n\t\tFileRFC file = new FileRFC(\"D:\\\\file.csv\");\n\t\tSystem.out.println(file.lireRFCfile());\n\t}", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void writeToCSV() {\n final String CSV_SEPARATOR = \",\";\n final String QUOTE = \"\\\"\";\n if (!Crawler.getKeyWordsHits().isEmpty()) {\n try (BufferedWriter bufferedWriter =\n new BufferedWriter(\n new OutputStreamWriter(\n new FileOutputStream(\"results.csv\", true), StandardCharsets.UTF_8))) {\n\n Crawler.getKeyWordsHits().forEach((keyWord, hitsNumber) -> {\n String oneLine = QUOTE + keyWord + QUOTE +\n CSV_SEPARATOR +\n hitsNumber;\n try {\n bufferedWriter.write(oneLine);\n bufferedWriter.newLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n });\n String lastLine = QUOTE + Crawler.getUrl() + QUOTE + CSV_SEPARATOR + Crawler.getTotalHits();\n bufferedWriter.write(lastLine);\n bufferedWriter.newLine();\n bufferedWriter.flush();\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n Crawler.setKeyWordsHits(new HashMap<>());\n Crawler.setTotalHits(0);\n }", "public static void writeDataToCsvUsingStringArrayForActivity(PrintWriter writer, List<ActivityTabDTO> activityTabList, List<AssayTabDTO> assayTabDTOList, List<ReferenceTabDTO> referenceTabDTOList, List<StructureDetailsTabDTO> structureDetailsTabDTOList) {\n\n String[] CSV_ACTIVITY_TITLE = {\"Activity Details\"};\n String[] CSV_ACTIVITY_NEWLINE = {\"\"};\n\n String[] CSV_ACTIVITY_HEADER = {\"ACT_ID\", \"ASSAY_ID\", \"REF_ID\", \"GVK_ID\", \"ACTIVITY_TYPE\", \"STD_ACTIVITY_TYPE\", \"ACTIVITY_UOM\", \"STANDARD_UOM\", \"ACTIVITY_PREFIX\", \"STD_ACT_PREFIX\", \"ACTIVITY_VALUE\", \"SD\", \"ACTIVITY_REMARKS\", \"MICRO_MOLARVALUE\", \"ASSAY_TYPE\", \"ENZYME_CELL_ASSAY\", \"COMMON_NAME\", \"ACTIVITY_MECHANISM\", \"SOURCE\", \"CELLS_CELLLINE_ORGAN\", \"MEASURED\", \"ROA\", \"ASSAY_METHOD_NAME\", \"DOSE\", \"DOSE_UOM\", \"DOSE_PREFIX\", \"ACTIVITY\", \"PARAMETER\", \"REFERENCE\"};\n\n try (\n CSVWriter csvWriter = new CSVWriter(writer,\n CSVWriter.DEFAULT_SEPARATOR,\n CSVWriter.DEFAULT_ESCAPE_CHARACTER,\n CSVWriter.DEFAULT_LINE_END);\n ) {\n csvWriter.writeNext(CSV_ACTIVITY_TITLE);\n csvWriter.writeNext(CSV_ACTIVITY_HEADER);\n if (Objects.nonNull(activityTabList)) {\n for (ActivityTabDTO activityTabDataReturn : activityTabList) {\n for (AssayTabDTO assayTabDTO : assayTabDTOList) {\n for (ReferenceTabDTO referenceTabDTO : referenceTabDTOList) {\n for (StructureDetailsTabDTO reStructureDetailsTabDTO : structureDetailsTabDTOList) {\n String[] activityData = new String[]{\n activityTabDataReturn.getActId() + \"\",\n assayTabDTO.getAssayId() + \"\",\n referenceTabDTO.getRefId() + \"\",\n reStructureDetailsTabDTO.getGvkId() + \"\",\n activityTabDataReturn.getActivityType(),\n activityTabDataReturn.getStdActivityType() + \"\",\n activityTabDataReturn.getActivityUom() + \"\",\n activityTabDataReturn.getStandardUom() + \"\",\n activityTabDataReturn.getActivityPrefix() + \"\",\n activityTabDataReturn.getStdActPrefix() + \"\",\n activityTabDataReturn.getActivityValue() + \"\",\n activityTabDataReturn.getSd() + \"\",\n activityTabDataReturn.getActivityRemarks() + \"\",\n activityTabDataReturn.getMicroMolarvalue() + \"\",\n activityTabDataReturn.getAssayType() + \"\",\n activityTabDataReturn.getEnzymeCellAssay() + \"\",\n activityTabDataReturn.getCommonName() + \"\",\n activityTabDataReturn.getActivityMechanism() + \"\",\n activityTabDataReturn.getSource() + \"\",\n activityTabDataReturn.getCellsCelllineOrgan() + \"\",\n activityTabDataReturn.getMeasured() + \"\",\n activityTabDataReturn.getRoa() + \"\",\n activityTabDataReturn.getAssayMethodName() + \"\",\n activityTabDataReturn.getDose() + \"\",\n activityTabDataReturn.getDoseUom() + \"\",\n activityTabDataReturn.getDosePrefix() + \"\",\n activityTabDataReturn.getActivity() + \"\",\n activityTabDataReturn.getParameter() + \"\",\n activityTabDataReturn.getReference() + \"\",\n\n };\n\n csvWriter.writeNext(activityData);\n }\n }\n }\n }\n csvWriter.writeNext(CSV_ACTIVITY_NEWLINE);\n csvWriter.writeNext(CSV_ACTIVITY_NEWLINE);\n }\n\n\n } catch (Exception e) {\n System.out.println(\"Exception occured into the ActivityTab Data Export\" + e.getMessage());\n e.printStackTrace();\n }\n\n }", "public static void main(String[] args) {\r\n\r\n\r\n\tCsvPipeDecoder csvdeco = new CsvPipeDecoder();\r\n\r\n//\tSystem.out.println(cvsde.getHasHeader());\r\n\r\n\tList<String> inputRecordLines = new ArrayList<String>();\r\n\r\n\tinputRecordLines.add(\"FIRST NAME|LAST NAME|STREET ADDRESS|CITY|STATE|ZIP\");\r\n\tinputRecordLines.add(\"Machi|Gulinski|5367 Eastway|Greendale|WI|53129\");\r\n\tinputRecordLines.add(\"Ola|Druzny|5467 Blue St.|Milwaukee|WI|53209\");\r\n\tinputRecordLines.add(\"Les|Klimek|919 St. Paul St.|Wauwatosa|WI|53217\");\r\n\r\n\tcsvdeco.setHasHeader(true);\r\n\r\n\tList< LinkedHashMap<String, String>> decodedData;\r\n\r\n\tdecodedData = csvdeco.decodeData(inputRecordLines);\r\n\r\n\r\n\tfor (LinkedHashMap r : decodedData) {\r\n\r\n\t Set<String> keys = r.keySet();\r\n\r\n\t for (String key : keys) {\r\n\r\n//\t String record = r.get(key).toString();\r\n\t\tSystem.out.println(key + \": \" + r.get(key).toString());\r\n\t }\r\n\r\n//\t System.out.println(r.keySet() + \": \" + r.entrySet());\r\n\t}\r\n\r\n }", "public static void test000(String[] args) throws IOException\n {\n\n\n //System.out.println(sql_insert_shipto_template);\n\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SALES_ORGANIZATION_CODE%\", \"261\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%DC_SHORTNAME%\", \"PF\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SHIPTO_CODE%\", \"10156409\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%PRODUCT_CODE%\", \"10104574\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%STARTDATE%\", \"01.02.2014\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%FINISHDATE%\", \"31.12.9999\");\n\n\n // String test = \"1\\t2\\t3\\n4\\t5\\t6\";\n\n String test = \"SO;SHIPTO;SHIPTO;DCSHORT;REP;GRD;Name;start date;end date\\n\" +\n \"261;10156405PF;10156405;PF;249394;10104570;A.KORKUNOV DARK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"261;10156405CH;10156405;CH;249410;10104542;A.KORKUNOV MILK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"377;10156409PF;10156409;PF;249399;10104574;A.KORKUNOV DARK ALMOND 5*10*100G;07.10.2014;31.12.9999\\n\";\n\n\n //CSVParser parser = CSVParser.parse(test, CSVFormat.newFormat(';'));\n File file = new File(\"c:\\\\MATDET_SHIPTO_EXAMPLE.csv\");\n CSVParser parser = CSVParser.parse(file, java.nio.charset.Charset.defaultCharset(), CSVFormat.newFormat(';'));\n\n int rownum = 0;\n for (CSVRecord strings : parser)\n {\n\n if (rownum++ == 0)\n continue;\n String SO = strings.get(0);\n String SHIPTO = strings.get(2);\n String DCSHORT = strings.get(3);\n //String REP = strings.get(4);\n String PRODUCT = strings.get(5);\n String START = strings.get(7);\n String END = strings.get(8);\n\n String temp = SQL_INSERT_TMATDET_SHIPTO_TEMPLATE;\n temp = temp.replaceAll(\"%SALES_ORGANIZATION_CODE%\", SO);\n temp = temp.replaceAll(\"%DC_SHORTNAME%\", DCSHORT);\n temp = temp.replaceAll(\"%SHIPTO_CODE%\", SHIPTO);\n temp = temp.replaceAll(\"%PRODUCT_CODE%\", PRODUCT);\n temp = temp.replaceAll(\"%STARTDATE%\", START);\n temp = temp.replaceAll(\"%FINISHDATE%\", END);\n\n\n System.out.println(temp);\n }\n\n System.out.println(\"rows=\" + rownum);\n\n\n// CsvParser parser = new CsvParserImpl();\n// CSV\n// parser.\n// List parsed = parser.parse(\"1\\t2\\t3\\n4\\t5\\t6\");\n// System.out.println(parsed.get(0));\n\n //System.out.println(sql_insert_shipto_template);\n\n }", "public static void main(String[] args) throws IOException, SQLException {\n\n // boilerplate\n sourceDB = AndroidDBManager.getProductionInstance();\n analysisDB = AndroidDBManager.getAnalysisInstance();\n\n BufferedWriter resFile = new BufferedWriter(new FileWriter(new File(\"commits.csv\")));\n\n // get the list of committers first\n List<AnalysisPeople> committers = analysisDB.getPeopleForTheTag(\"change\");\n System.out.println(\"will process \" + committers.size() + \" people records\");\n\n for (AnalysisPeople p : committers) {\n System.out.println(p.getEmail() + \" start: \" + p.getActivity_begin() + \", end: \"\n + p.getActivity_end());\n\n List<Change> changes = sourceDB.getAuthorChanges(p.getId(), p.getActivity_begin(),\n p.getActivity_end());\n System.out.println(\" .. \" + changes.size() + \" change(s) found.\");\n\n for (Change c : changes) {\n StringBuilder csvLine = new StringBuilder();\n StringBuilder sbTemp = new StringBuilder();\n\n // date/author/project/target/commits\n sbTemp.append(c.getAuthor_date()).append(COMMA);\n sbTemp.append(\"\\\"\").append(p.getEmail()).append(\"\\\"\").append(COMMA);\n sbTemp.append(sourceDB.getProject(c.getProject_id()).getName()).append(COMMA);\n for (ChangeTarget target : sourceDB.getTargets(c.getId())) {\n csvLine.append(sbTemp.toString()).append(\"\\\"\").append(target.getTarget()).append(\"\\\"\")\n .append(COMMA);\n csvLine.append(target.isAdded()).append(COMMA);\n csvLine.append(target.isEdited()).append(COMMA);\n csvLine.append(target.isDeleted()).append(COMMA).append(CR);\n resFile.write(csvLine.toString());\n }\n }\n resFile.close();\n }\n }", "public String toCsvRow() {\r\n\t return Stream.of(String.valueOf(TxnsRefNo),Description)\r\n\t .map(value -> value.replaceAll(\"\\\"\", \"\\\"\\\"\"))\r\n\t .map(value -> Stream.of(\"\\\"\", \",\").anyMatch(value::contains) ? \"\\\"\" + value + \"\\\"\" : value)\r\n\t .collect(Collectors.joining(\",\"));\r\n\t}", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // InternalCsv.g:530:1: ( ruleQualifiedName EOF )\n // InternalCsv.g:531:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public static java.lang.CharSequence escapeCsv(java.lang.CharSequence r13, boolean r14) {\n /*\n java.lang.String r0 = \"value\"\n java.lang.Object r0 = p043io.netty.util.internal.ObjectUtil.checkNotNull(r13, r0)\n java.lang.CharSequence r0 = (java.lang.CharSequence) r0\n int r0 = r0.length()\n if (r0 != 0) goto L_0x000f\n return r13\n L_0x000f:\n int r1 = r0 + -1\n r2 = 0\n r3 = 1\n if (r14 == 0) goto L_0x0030\n int r14 = indexOfFirstNonOwsChar(r13, r0)\n if (r14 != r0) goto L_0x001e\n java.lang.String r13 = \"\"\n return r13\n L_0x001e:\n int r4 = indexOfLastNonOwsChar(r13, r14, r0)\n if (r14 > 0) goto L_0x0029\n if (r4 >= r1) goto L_0x0027\n goto L_0x0029\n L_0x0027:\n r1 = 0\n goto L_0x002a\n L_0x0029:\n r1 = 1\n L_0x002a:\n if (r1 == 0) goto L_0x0033\n int r0 = r4 - r14\n int r0 = r0 + r3\n goto L_0x0033\n L_0x0030:\n r4 = r1\n r14 = 0\n r1 = 0\n L_0x0033:\n java.lang.StringBuilder r5 = new java.lang.StringBuilder\n int r6 = r0 + 7\n r5.<init>(r6)\n char r6 = r13.charAt(r14)\n boolean r6 = isDoubleQuote(r6)\n if (r6 == 0) goto L_0x0052\n char r6 = r13.charAt(r4)\n boolean r6 = isDoubleQuote(r6)\n if (r6 == 0) goto L_0x0052\n if (r0 == r3) goto L_0x0052\n r0 = 1\n goto L_0x0053\n L_0x0052:\n r0 = 0\n L_0x0053:\n r2 = r14\n r6 = 0\n r7 = 0\n L_0x0056:\n if (r2 > r4) goto L_0x009d\n char r8 = r13.charAt(r2)\n r9 = 10\n if (r8 == r9) goto L_0x0096\n r9 = 13\n if (r8 == r9) goto L_0x0096\n r9 = 34\n if (r8 == r9) goto L_0x006d\n r9 = 44\n if (r8 == r9) goto L_0x0096\n goto L_0x0097\n L_0x006d:\n if (r2 == r14) goto L_0x0091\n if (r2 != r4) goto L_0x0072\n goto L_0x0091\n L_0x0072:\n int r10 = r2 + 1\n char r11 = r13.charAt(r10)\n boolean r11 = isDoubleQuote(r11)\n int r12 = r2 + -1\n char r12 = r13.charAt(r12)\n boolean r12 = isDoubleQuote(r12)\n if (r12 != 0) goto L_0x0097\n if (r11 == 0) goto L_0x008c\n if (r10 != r4) goto L_0x0097\n L_0x008c:\n r5.append(r9)\n r6 = 1\n goto L_0x0097\n L_0x0091:\n if (r0 != 0) goto L_0x009a\n r5.append(r9)\n L_0x0096:\n r7 = 1\n L_0x0097:\n r5.append(r8)\n L_0x009a:\n int r2 = r2 + 1\n goto L_0x0056\n L_0x009d:\n if (r6 != 0) goto L_0x00ae\n if (r7 == 0) goto L_0x00a4\n if (r0 != 0) goto L_0x00a4\n goto L_0x00ae\n L_0x00a4:\n if (r1 == 0) goto L_0x00ad\n if (r0 == 0) goto L_0x00ac\n java.lang.StringBuilder r5 = quote(r5)\n L_0x00ac:\n return r5\n L_0x00ad:\n return r13\n L_0x00ae:\n java.lang.StringBuilder r13 = quote(r5)\n return r13\n */\n throw new UnsupportedOperationException(\"Method not decompiled: p043io.netty.util.internal.StringUtil.escapeCsv(java.lang.CharSequence, boolean):java.lang.CharSequence\");\n }", "public IndexModifierCSVMessage(pgrid.GUID guid, Key key, short mode, CSVIndexTable csvItems) {\n\t\tsuper(guid);\n\t\tmItems = new CSVIndexTable(\"IMcsv_\"+randomString()+\"_\"+(++num)+\".csv\",false);\n\t\tmKey = key;\n\t\tif(csvItems != null){\n\t\t\ttry{\n\t\t\t\tcsvItems.openFileForReading();\n\t\t\t\tmItems.openFileForWriting();\n\t\t\t\tIndexEntry dataItem = null;\n\t\t\t\twhile((dataItem = (IndexEntry)csvItems.getNextIndexEntry())!=null) {\n\t\t\t\t\tmItems.addIndexEntry(dataItem);\n\t\t\t\t}\n\t\t\t} catch (Exception e) {\n\t\t\t\t// TODO Auto-generated catch block\n\t\t\t\te.printStackTrace();\n\t\t\t}finally{\n\t\t\t\tmItems.closeFileForWriting();\n\t\t\t\tcsvItems.closeFileOnReading();\n\t\t\t}\n\t\t}\n\t\tmMode = mode;\n\n\t\tCompression.compressFile(getFileName(),getFileName()+\".zip\" );\n\t\tmFileSize = new File(getFilePath()+\".zip\").length();\n\t\tthis.getHeader().setAdditionalAttribute(\"FileLength\", getFileSize()+\"\");\n\t\tthis.getHeader().setAdditionalAttribute(\"FileName\", getFileName());\n\n\t}", "@java.lang.Override\n public boolean hasCsv() {\n return schemaCase_ == 6;\n }", "public final void entryRuleXImportDeclaration() throws RecognitionException {\n try {\n // InternalCsv.g:605:1: ( ruleXImportDeclaration EOF )\n // InternalCsv.g:606:1: ruleXImportDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXImportDeclaration();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Override\n\tpublic void createCSVOutput() {\n\t\tFile file = new File(\"rejectedByEsteticalRestructurationRejector.csv\"); \n\t\t\n\t\t//test if the file already exist\n\t\tif(file.exists()) {\n\t\t\tSystem.out.println(\"le fichier rejectedByEstheticalRestructurationRejector.csv existe deja\");\n\t\t\tSystem.exit(0);\n\t\t}\n\t\t\n\t\t//create the different column for the CSV file\n\t\tString[] titles = { \"before\" , \"after\", \"id\"};\n\t\ttry {\n\t\t\toutputFile = new CsvFileWriter(file, '\\t', titles);\n\t\t} catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\t\t\n\t}", "static void generate(Link link, PrintWriter outData, String mComma)\r\n {\r\n String comma = \" ( \";\r\n outData.println(mComma+\"CONSTRAINT \" + link.linkName + \" FOREIGN KEY\");\r\n for (int i=0; i < link.fields.size(); i++, comma = \" , \")\r\n {\r\n String name = (String) link.fields.elementAt(i);\r\n outData.println(comma+name);\r\n }\r\n outData.println(\" ) REFERENCES \"+link.name);\r\n }", "public ValidationInfo createCsv() {\n LocaleModule lm = LocaleManager.getInstance().getModule(LocaleModuleResource.Main);\n\n ValidationInfo vi = new ValidationInfo();\n if (_rows == null || _rows.size() == 0) {\n vi.setMessageWarning(lm.getString(\"general_export_nothing\"));\n return vi;\n }\n\n String fullFilePath = getFileName();\n\n StringBuilder sb = new StringBuilder();\n\n //create header\n String headerRow = _rows.get(0).createCsvRow(true);\n\n sb.append(headerRow + System.lineSeparator());\n\n try {\n //create rows\n for (Exportable e : _rows) {\n String rowString = e.createCsvRow(false);\n sb.append(rowString + System.lineSeparator());\n }\n\n //Output\n String strContent = sb.toString();\n Utils.writeFile(strContent, fullFilePath);\n\n vi.setMessageSuccess(String.format(lm.getString(\"general_export_success\"),\n _rows.size(), fullFilePath));\n } catch (Exception ex) {\n vi.setMessageError(lm.getString(\"general_export_error\"));\n }\n\n //open\n Utils.openFolder(fullFilePath);\n\n return vi;\n }", "@Test\n public void parse_validArgs_returnsExportCommand() {\n ExportCommand expectedExportCommand =\n new ExportCommand(\"lifeTEST.csv\", \"groupTEST.csv\", \"eventTEST.csv\");\n assertParseSuccess(parser, \" l/lifeTEST.csv\"\n + \" g/groupTEST.csv\"\n + \" e/eventTEST.csv\", expectedExportCommand);\n\n //multiple whitespaces between keywords\n assertParseSuccess(parser, \" \\n l/\"\n + TEST_LIFE_EXPORT_CSV\n + \" \\n \\t g/\" + TEST_GROUP_EXPORT_CSV\n + \" \\n \\t e/\" + TEST_EVENT_EXPORT_CSV\n + \"\\t\", expectedExportCommand);\n }", "@java.lang.Override\n public boolean hasCsv() {\n return schemaCase_ == 6;\n }", "public static void writeCSV(List<Item> items) throws IOException {\n\n try (BufferedWriter writer = Files.newBufferedWriter(Paths.get(USER_ITEMS_FILE));\n\n CSVPrinter csvPrinter = new CSVPrinter(writer, CSVFormat.EXCEL.withHeader(\"itemNo\",\"Room\",\"Category\",\"Type\",\"make\",\"model\",\"serial\",\"receipt\",\"photo\",\"value\",\"comments\",\"lastupdate\",\"delete\",\"email_own\"));//4/30 JGP added email_own header\n ) {\n for (Item i: items) {\n if (!\"itemNo\".equals(i.getItemNo())) {\n csvPrinter.printRecord(i.getItemNo(), i.getRoom().getStatus(), i.getCategory().getCategory(), i.getType().getProductTypeString(), i.getMake(), i.getModel(), i.getSerial(), i.getReceipt(), i.getPhoto(), i.getValue(), i.getComments(), FORMATTER.format(new Date()).toString(), i.isDeleted().booleanValue(), i.email);//4/30 JGP added i.email string\n }\n }\n csvPrinter.flush();\n }\n\n /* EventBus eventBus = EventBusFactory.getEventBus();\n ParseEvent pevent = new ParseEvent(items);\n eventBus.register(pevent);\n eventBus.post(pevent);*/\n }", "public void process(final File outputFile) {\r\n\t\tvalidateAnalyzed();\r\n\r\n\t\tfinal ReadCSV csv = new ReadCSV(getInputFilename().toString(),\r\n\t\t\t\tisExpectInputHeaders(), getFormat());\r\n\t\tLoadedRow row;\r\n\r\n\t\tfinal PrintWriter tw = prepareOutputFile(outputFile);\r\n\r\n\t\tresetStatus();\r\n\t\twhile ((row = getNextRow(csv)) != null) {\r\n\t\t\twriteRow(tw, row);\r\n\t\t\tupdateStatus(false);\r\n\t\t}\r\n\t\treportDone(false);\r\n\t\ttw.close();\r\n\t\tcsv.close();\r\n\t}", "@SuppressWarnings(\"unchecked\")\n @RequestMapping({ \"/agent/enrollment/exportBatch\", \"/provider/search/exportBatch\" })\n public void exportBatch(@ModelAttribute(\"criteria\") ProviderSearchCriteria criteria, HttpServletResponse response)\n throws PortalServiceException, IOException {\n String signature = \"EnrollmentController#search(ProviderSearchCriteria criteria)\";\n LogUtil.traceEntry(getLog(), signature, new String[] { \"criteria\" }, new Object[] { criteria });\n\n if (criteria == null) {\n throw new IllegalArgumentException(\"A valid criteria must be provided.\");\n }\n\n ModelAndView results = doSearch(criteria, \"print\");\n SearchResult<UserRequest> items = (SearchResult<UserRequest>) results.getModel().get(\"results\");\n\n response.reset();\n response.setContentType(\"application/pdf\");\n String id = UUID.randomUUID().toString();\n response.setHeader(\"Content-Disposition\", \"attachment; filename=export_\" + id + \".pdf\");\n exportService.export(items.getItems(), null, response.getOutputStream());\n }", "public void exportContact(String csvId) {\n String[] csv= MainActivity.appDb.getEditData(csvId); //get the data ready to export\n //String[] csv = Contact.split(\"~\", -1);\n\n Intent intent = new Intent(Intent.ACTION_INSERT); //create an intent to to place the contact data to the Phone contacts\n intent.setType(ContactsContract.Contacts.CONTENT_TYPE);\n intent.putExtra(ContactsContract.Intents.Insert.NAME, csv[0]); //place the data in the fields\n intent.putExtra(ContactsContract.Intents.Insert.PHONE, csv[1]);\n intent.putExtra(ContactsContract.Intents.Insert.EMAIL, csv[2]);\n intent.putExtra(ContactsContract.Intents.Insert.POSTAL, csv[3]);\n intent.putExtra(ContactsContract.Intents.Insert.COMPANY, csv[4]);\n intent.putExtra(ContactsContract.Intents.Insert.JOB_TITLE, csv[5]);\n ArrayList<ContentValues> data = new ArrayList<ContentValues>(); //use an arraylist containing content values specfically for the website\n\n ContentValues row1 = new ContentValues(); //establish new row\n row1.put(ContactsContract.Data.MIMETYPE, Website.CONTENT_ITEM_TYPE); //specify the type\n row1.put(Website.URL, csv[6]); //insert the website\n row1.put(Website.TYPE, Website.TYPE_WORK);\n\n data.add(row1); //add it to the data entry\n\n\n intent.putParcelableArrayListExtra(ContactsContract.Intents.Insert.DATA, data); //insert the data row in extras\n\n //intent.putExtra(ContactsContract.Intents.Insert.DATA, csv[6]);\n intent.putExtra(ContactsContract.Intents.Insert.NOTES, csv[7]);\n\n startActivity(intent); //start the activity\n }", "public interface DboCsvTransformer<DBO extends DatabaseObject<?>> extends DboFileTransformer<DBO> {\n\n String COMMA_IN_QUOTES_REGEX = \",(?=(?:[^\\\\\\\"]*\\\\\\\"[^\\\\\\\"]*\\\\\\\")*[^\\\\\\\"]*$)\";\n\n /**\n * This method consumes a single line of CSV to produce a DatabaseObject.\n *\n * @param csv the single line of CSV representing a single DatabaseObject\n * @return the DatabaseObject represented\n * @throws TransformerException if the object cannot be produced\n */\n @Override\n DBO consume(String csv) throws TransformerException;\n\n /**\n * This method consumes a DatabaseObject to produce a String in CSV format.\n *\n * @param object the DatabaseObject\n * @return a String in CSV format\n * @throws TransformerException if the object cannot be consumed\n */\n @Override\n String produce(DBO object) throws TransformerException;\n\n}" ]
[ "0.66082776", "0.6356549", "0.6256557", "0.607606", "0.60511184", "0.5638368", "0.55333155", "0.54475254", "0.5158059", "0.5096149", "0.5080573", "0.49311543", "0.4860478", "0.4807206", "0.47988436", "0.47613192", "0.47049156", "0.4694136", "0.4671287", "0.46318254", "0.46021158", "0.46012914", "0.46005982", "0.45471343", "0.4543002", "0.45372424", "0.45127934", "0.4504147", "0.45021805", "0.4493202", "0.44626352", "0.4436041", "0.44114658", "0.44015005", "0.4378315", "0.43393064", "0.43227944", "0.43111476", "0.43082792", "0.43062252", "0.42832172", "0.42811328", "0.42803696", "0.42795926", "0.42733586", "0.427017", "0.4269342", "0.42235428", "0.42156422", "0.42120755", "0.42035016", "0.4203226", "0.41969696", "0.4196407", "0.4196186", "0.41931713", "0.41685358", "0.41665977", "0.41647294", "0.41521204", "0.41490495", "0.41489753", "0.41437966", "0.4139573", "0.41375133", "0.41364226", "0.41189885", "0.4118735", "0.4116113", "0.41126758", "0.41074142", "0.41072756", "0.41012636", "0.40993488", "0.4098873", "0.40885216", "0.4086437", "0.40849185", "0.40721154", "0.40653244", "0.405484", "0.40405545", "0.40389627", "0.40323928", "0.4031842", "0.40272614", "0.40253383", "0.40232936", "0.4017439", "0.4014856", "0.40091756", "0.40065905", "0.40063918", "0.40009636", "0.39998475", "0.39912397", "0.39908868", "0.39862445", "0.39805186", "0.3975875" ]
0.69031936
0
$ANTLR end "entryRulePrintCSV" $ANTLR start "rulePrintCSV" InternalCsv.g:188:1: rulePrintCSV : ( ( rule__PrintCSV__Group__0 ) ) ;
public final void rulePrintCSV() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) ) // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) ) { // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) ) // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getPrintCSVAccess().getGroup()); } // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 ) // InternalCsv.g:195:4: rule__PrintCSV__Group__0 { pushFollow(FOLLOW_2); rule__PrintCSV__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getPrintCSVAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1477:1: ( ( 'print' ) )\n // InternalCsv.g:1478:1: ( 'print' )\n {\n // InternalCsv.g:1478:1: ( 'print' )\n // InternalCsv.g:1479:2: 'print'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintKeyword_1()); \n }\n match(input,23,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1465:1: ( rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2 )\n // InternalCsv.g:1466:2: rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__PrintCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleSaveCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:267:2: ( ( ( rule__SaveCSV__Group__0 ) ) )\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n {\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n // InternalCsv.g:269:3: ( rule__SaveCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n // InternalCsv.g:270:3: ( rule__SaveCSV__Group__0 )\n // InternalCsv.g:270:4: rule__SaveCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1503:1: ( ( ( rule__PrintCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1505:2: ( rule__PrintCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1506:2: ( rule__PrintCSV__OpenAssignment_2 )\n // InternalCsv.g:1506:3: rule__PrintCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2599:1: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_0_0__1 )\n // InternalCsv.g:2600:2: rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_0_0__1\n {\n pushFollow(FOLLOW_34);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1720:1: ( ( 'save' ) )\n // InternalCsv.g:1721:1: ( 'save' )\n {\n // InternalCsv.g:1721:1: ( 'save' )\n // InternalCsv.g:1722:2: 'save'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveKeyword_1()); \n }\n match(input,26,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2761:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2_2__1 )\n // InternalCsv.g:2762:2: rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2_2__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2583:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) ) )\n // InternalCsv.g:2584:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) )\n {\n // InternalCsv.g:2584:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) )\n // InternalCsv.g:2585:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0_0()); \n }\n // InternalCsv.g:2586:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 )\n // InternalCsv.g:2586:3: rule__JvmParameterizedTypeReference__Group_1_4_0_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3490:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\n // InternalCsv.g:3491:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2491:1: ( rule__JvmParameterizedTypeReference__Group_1_4__0__Impl rule__JvmParameterizedTypeReference__Group_1_4__1 )\n // InternalCsv.g:2492:2: rule__JvmParameterizedTypeReference__Group_1_4__0__Impl rule__JvmParameterizedTypeReference__Group_1_4__1\n {\n pushFollow(FOLLOW_5);\n rule__JvmParameterizedTypeReference__Group_1_4__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2653:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__1 )\n // InternalCsv.g:2654:2: rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void mT__46() throws RecognitionException {\n try {\n int _type = T__46;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalVizualizer.g:46:7: ( 'CSV' )\n // InternalVizualizer.g:46:9: 'CSV'\n {\n match(\"CSV\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__JvmParameterizedTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2248:1: ( rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1 )\n // InternalCsv.g:2249:2: rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1\n {\n pushFollow(FOLLOW_31);\n rule__JvmParameterizedTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2719:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* ) )\n // InternalCsv.g:2720:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* )\n {\n // InternalCsv.g:2720:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* )\n // InternalCsv.g:2721:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2_2()); \n }\n // InternalCsv.g:2722:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )*\n loop22:\n do {\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==30) ) {\n alt22=1;\n }\n\n\n switch (alt22) {\n \tcase 1 :\n \t // InternalCsv.g:2722:3: rule__JvmParameterizedTypeReference__Group_1_4_2_2__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__JvmParameterizedTypeReference__Group_1_4_2_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop22;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2503:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) ) )\n // InternalCsv.g:2504:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) )\n {\n // InternalCsv.g:2504:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) )\n // InternalCsv.g:2505:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0()); \n }\n // InternalCsv.g:2506:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 )\n // InternalCsv.g:2506:3: rule__JvmParameterizedTypeReference__Group_1_4_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2421:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* ) )\n // InternalCsv.g:2422:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* )\n {\n // InternalCsv.g:2422:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* )\n // InternalCsv.g:2423:2: ( rule__JvmParameterizedTypeReference__Group_1_4__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4()); \n }\n // InternalCsv.g:2424:2: ( rule__JvmParameterizedTypeReference__Group_1_4__0 )*\n loop20:\n do {\n int alt20=2;\n int LA20_0 = input.LA(1);\n\n if ( (LA20_0==33) ) {\n alt20=1;\n }\n\n\n switch (alt20) {\n \tcase 1 :\n \t // InternalCsv.g:2424:3: rule__JvmParameterizedTypeReference__Group_1_4__0\n \t {\n \t pushFollow(FOLLOW_35);\n \t rule__JvmParameterizedTypeReference__Group_1_4__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop20;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3328:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\n // InternalCsv.g:3329:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameWithWildcard__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3409:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\n // InternalCsv.g:3410:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\n {\n pushFollow(FOLLOW_40);\n rule__XImportDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1369:1: ( ( 'header' ) )\n // InternalCsv.g:1370:1: ( 'header' )\n {\n // InternalCsv.g:1370:1: ( 'header' )\n // InternalCsv.g:1371:2: 'header'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n match(input,21,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1789:1: ( rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1 )\n // InternalCsv.g:1790:2: rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1870:1: ( rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1 )\n // InternalCsv.g:1871:2: rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleSaveCSV() throws RecognitionException {\n try {\n // InternalCsv.g:255:1: ( ruleSaveCSV EOF )\n // InternalCsv.g:256:1: ruleSaveCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2302:1: ( rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1 )\n // InternalCsv.g:2303:2: rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2896:1: ( rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1 )\n // InternalCsv.g:2897:2: rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2680:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__1__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__2 )\n // InternalCsv.g:2681:2: rule__JvmParameterizedTypeReference__Group_1_4_2__1__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__2\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1_4_2__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3517:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\n // InternalCsv.g:3518:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1600:1: ( rule__NbCol__Group__0__Impl rule__NbCol__Group__1 )\n // InternalCsv.g:1601:2: rule__NbCol__Group__0__Impl rule__NbCol__Group__1\n {\n pushFollow(FOLLOW_22);\n rule__NbCol__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3274:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // InternalCsv.g:3275:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_5);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "CSV createCSV();", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2815:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // InternalCsv.g:2816:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2556:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? ) )\n // InternalCsv.g:2557:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? )\n {\n // InternalCsv.g:2557:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? )\n // InternalCsv.g:2558:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2()); \n }\n // InternalCsv.g:2559:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )?\n int alt21=2;\n int LA21_0 = input.LA(1);\n\n if ( (LA21_0==31) ) {\n alt21=1;\n }\n switch (alt21) {\n case 1 :\n // InternalCsv.g:2559:3: rule__JvmParameterizedTypeReference__Group_1_4_2__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1261:1: ( ( 'read' ) )\n // InternalCsv.g:1262:1: ( 'read' )\n {\n // InternalCsv.g:1262:1: ( 'read' )\n // InternalCsv.g:1263:2: 'read'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n match(input,20,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1612:1: ( ( () ) )\n // InternalCsv.g:1613:1: ( () )\n {\n // InternalCsv.g:1613:1: ( () )\n // InternalCsv.g:1614:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n // InternalCsv.g:1615:2: ()\n // InternalCsv.g:1615:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private Result outputCsv(Request request, Entry entry) throws Exception {\r\n Result result = getCsvResult(request, entry);\r\n result.setReturnFilename(\r\n IOUtil.stripExtension(getStorageManager().getFileTail(entry))\r\n + \".csv\");\r\n result.setMimeType(\"text/csv\");\r\n\r\n return result;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2518:1: ( rule__JvmParameterizedTypeReference__Group_1_4__1__Impl rule__JvmParameterizedTypeReference__Group_1_4__2 )\n // InternalCsv.g:2519:2: rule__JvmParameterizedTypeReference__Group_1_4__1__Impl rule__JvmParameterizedTypeReference__Group_1_4__2\n {\n pushFollow(FOLLOW_31);\n rule__JvmParameterizedTypeReference__Group_1_4__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "public final void rule__SaveCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1773:1: ( ( ( rule__SaveCSV__FileAssignment_3 )? ) )\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n {\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n // InternalCsv.g:1775:2: ( rule__SaveCSV__FileAssignment_3 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1776:2: ( rule__SaveCSV__FileAssignment_3 )?\n int alt13=2;\n int LA13_0 = input.LA(1);\n\n if ( (LA13_0==RULE_STRING) ) {\n alt13=1;\n }\n switch (alt13) {\n case 1 :\n // InternalCsv.g:1776:3: rule__SaveCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12812:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12814:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_4_1__0__Impl25984); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public void csvExport(String filename, Grade grade) {\n PrintWriter out = null;\n try {\n out = new PrintWriter(filename);\n\n for (Student key : map.keySet()) {\n if (map.get(key).getLetter().equals(grade.getLetter())) {\n out.println(key.getFirst() + \", \" + key.getLast() + \", \" + key.getID());\n }\n }\n } catch (FileNotFoundException ex) {\n System.out.println(\"File was not found\");\n } finally {\n out.close();\n }\n }", "public final void rule__JvmTypeReference__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1827:1: ( ( ( rule__JvmTypeReference__Group_0_1__0 )* ) )\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n {\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n // InternalCsv.g:1829:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n // InternalCsv.g:1830:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n loop14:\n do {\n int alt14=2;\n int LA14_0 = input.LA(1);\n\n if ( (LA14_0==27) ) {\n alt14=1;\n }\n\n\n switch (alt14) {\n \tcase 1 :\n \t // InternalCsv.g:1830:3: rule__JvmTypeReference__Group_0_1__0\n \t {\n \t pushFollow(FOLLOW_24);\n \t rule__JvmTypeReference__Group_0_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop14;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n {\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n {\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\n // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0\n {\n pushFollow(FOLLOW_3);\n rule__QualifiedNameInStaticImport__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==33) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__QualifiedNameInStaticImport__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Conversion__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13544:1: ( ( ( ',' )? ) )\r\n // InternalGo.g:13545:1: ( ( ',' )? )\r\n {\r\n // InternalGo.g:13545:1: ( ( ',' )? )\r\n // InternalGo.g:13546:2: ( ',' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConversionAccess().getCommaKeyword_4()); \r\n }\r\n // InternalGo.g:13547:2: ( ',' )?\r\n int alt107=2;\r\n int LA107_0 = input.LA(1);\r\n\r\n if ( (LA107_0==43) ) {\r\n alt107=1;\r\n }\r\n switch (alt107) {\r\n case 1 :\r\n // InternalGo.g:13547:3: ','\r\n {\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConversionAccess().getCommaKeyword_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n\tpublic void exportToCSV() {\n\n\t}", "public final void rule__XFunctionTypeRef__Group_0_1_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2194:1: ( rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1 )\n // InternalCsv.g:2195:2: rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1\n {\n pushFollow(FOLLOW_27);\n rule__XFunctionTypeRef__Group_0_1_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleTab() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:157:2: ( ( ( rule__Tab__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:158:1: ( ( rule__Tab__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:158:1: ( ( rule__Tab__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:159:1: ( rule__Tab__Group__0 )\n {\n before(grammarAccess.getTabAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:160:1: ( rule__Tab__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:160:2: rule__Tab__Group__0\n {\n pushFollow(FOLLOW_rule__Tab__Group__0_in_ruleTab274);\n rule__Tab__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTabAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2707:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__3 )\n // InternalCsv.g:2708:2: rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__3\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3791:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n // InternalCsv.g:3793:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3794:3: ( RULE_ID )\n // InternalCsv.g:3795:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXImportDeclaration() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:617:2: ( ( ( rule__XImportDeclaration__Group__0 ) ) )\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n {\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n // InternalCsv.g:619:3: ( rule__XImportDeclaration__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n // InternalCsv.g:620:3: ( rule__XImportDeclaration__Group__0 )\n // InternalCsv.g:620:4: rule__XImportDeclaration__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1342:1: ( ( ( rule__OpenCSV__CharsetAssignment_4 ) ) )\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n {\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n // InternalCsv.g:1344:2: ( rule__OpenCSV__CharsetAssignment_4 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n // InternalCsv.g:1345:2: ( rule__OpenCSV__CharsetAssignment_4 )\n // InternalCsv.g:1345:3: rule__OpenCSV__CharsetAssignment_4\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAssignment_4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void exportToCSV();", "public final void rule__AstAction__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12936:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12938:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_6_1__0__Impl26229); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2437:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1 )\n // InternalCsv.g:2438:2: rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2773:1: ( ( ',' ) )\n // InternalCsv.g:2774:1: ( ',' )\n {\n // InternalCsv.g:2774:1: ( ',' )\n // InternalCsv.g:2775:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_4_2_2_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_4_2_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9865:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9866:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9866:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9867:1: ','\n {\n before(grammarAccess.getAstProcedureAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstProcedure__Group_4_1__0__Impl20181); \n after(grammarAccess.getAstProcedureAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3598:1: ( rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1 )\n // InternalCsv.g:3599:2: rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameInStaticImport__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameInStaticImport__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public CSVExporter() {\n super(NAME, CONTENTTYPE);\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3286:1: ( ( '.' ) )\n // InternalCsv.g:3287:1: ( '.' )\n {\n // InternalCsv.g:3287:1: ( '.' )\n // InternalCsv.g:3288:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2329:1: ( rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2 )\n // InternalCsv.g:2330:2: rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1531:1: ( ( () ) )\n // InternalCsv.g:1532:1: ( () )\n {\n // InternalCsv.g:1532:1: ( () )\n // InternalCsv.g:1533:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n // InternalCsv.g:1534:2: ()\n // InternalCsv.g:1534:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private static void memberExport(String club, HttpServletResponse resp, PrintWriter out, HttpServletRequest req, Connection con) {\r\n\r\n \r\n Statement stmt = null;\r\n ResultSet rs = null;\r\n \r\n //\r\n // First, verify club name and key as a security measure (all new clubs must be added here!)\r\n //\r\n if (!club.equals(\"interlachen\") || !req.getParameter(\"key\").equals(\"asdf\")) {\r\n \r\n Utilities.logError(\"dataLoader.memberExport - Unknown Club or Key: Club = \" +club+ \", key = \" +req.getParameter(\"key\")+ \", todo = memberExport\");\r\n out.print(\"Error: Improper request. Invalid club or key.\");\r\n return;\r\n }\r\n \r\n resp.setContentType(\"text/csv\"); // text-csv file\r\n resp.setHeader(\"Content-Disposition\", \"attachment;filename=\\\"\"+club+\"-login-counts.csv\\\"\"); \r\n \r\n StringBuffer sb = new StringBuffer(\"\"); // Use a stringbuffer to hold the records\r\n \r\n //\r\n // Add header row\r\n //\r\n sb.append(\"\\\"ForeTees Id\\\",\");\r\n sb.append(\"\\\"Member #\\\",\");\r\n sb.append(\"\\\"Membership\\\",\");\r\n sb.append(\"\\\"Member Type\\\",\");\r\n sb.append(\"\\\"Total Logins\\\",\");\r\n sb.append(\"\\\"Mobile Logins\\\",\");\r\n sb.append(\"\\\"App Logins\\\"\\n\");\r\n \r\n try {\r\n\r\n //\r\n // Get member info and output as table rows\r\n //\r\n if (con != null) {\r\n \r\n stmt = con.createStatement(); \r\n \r\n String sql = \"\" +\r\n \"SELECT id, username, count, m_ship, m_type, mobile_count, mobile_app_count \" +\r\n \"FROM member2b \" +\r\n \"WHERE inact=0 AND billable = 1\";\r\n \r\n rs = stmt.executeQuery(sql);\r\n \r\n while (rs.next()) {\r\n\r\n sb.append(\"\\\"\" + rs.getInt(\"id\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getString(\"username\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getString(\"m_ship\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getString(\"m_type\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getInt(\"count\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getInt(\"mobile_count\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getInt(\"mobile_app_count\") + \"\\\"\\n\");\r\n }\r\n \r\n stmt.close();\r\n }\r\n \r\n out.print(sb.toString()); // output the file\r\n \r\n } catch (Exception e) {\r\n\r\n Utilities.logError(\"Error in dataLoader.memberExport for club: \" + club + \". Exception= \" + org.apache.commons.lang.exception.ExceptionUtils.getStackTrace(e));\r\n out.print(\"Error: Database error gathering member data.\");\r\n\r\n } finally {\r\n\r\n try { rs.close(); }\r\n catch (Exception ignore) {}\r\n\r\n try { stmt.close(); }\r\n catch (Exception ignore) {}\r\n }\r\n\r\n }", "@Override\n public void csvExport(String filename) {\n PrintWriter out = null;\n try {\n out = new PrintWriter(filename);\n\n for (Student key : map.keySet()) {\n out.println(key.getFirst() + \", \" + key.getLast() + \", \" + key.getID() + \", \" + map.get(key).getLetter());\n }\n } catch (FileNotFoundException ex) {\n System.out.println(\"File was not found\");\n } finally {\n out.close();\n }\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3474:1: ( ( ( ';' )? ) )\n // InternalCsv.g:3475:1: ( ( ';' )? )\n {\n // InternalCsv.g:3475:1: ( ( ';' )? )\n // InternalCsv.g:3476:2: ( ';' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n // InternalCsv.g:3477:2: ( ';' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==14) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // InternalCsv.g:3477:3: ';'\n {\n match(input,14,FOLLOW_2); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2140:1: ( rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1 )\n // InternalCsv.g:2141:2: rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1\n {\n pushFollow(FOLLOW_29);\n rule__XFunctionTypeRef__Group_0_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:930:1: ( ( ',' ) )\n // InternalWh.g:931:1: ( ',' )\n {\n // InternalWh.g:931:1: ( ',' )\n // InternalWh.g:932:2: ','\n {\n before(grammarAccess.getOutputAccess().getCommaKeyword_0_1()); \n match(input,21,FOLLOW_2); \n after(grammarAccess.getOutputAccess().getCommaKeyword_0_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2206:1: ( ( ',' ) )\n // InternalCsv.g:2207:1: ( ',' )\n {\n // InternalCsv.g:2207:1: ( ',' )\n // InternalCsv.g:2208:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2383:1: ( rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4 )\n // InternalCsv.g:2384:2: rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4\n {\n pushFollow(FOLLOW_34);\n rule__JvmParameterizedTypeReference__Group_1__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Tab__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1559:1: ( ( () ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1560:1: ( () )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1560:1: ( () )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1561:1: ()\n {\n before(grammarAccess.getTabAccess().getTabAction_0()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1562:1: ()\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1564:1: \n {\n }\n\n after(grammarAccess.getTabAccess().getTabAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2572:1: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl )\n // InternalCsv.g:2573:2: rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.77486694", "0.7723545", "0.7607802", "0.7294577", "0.69378304", "0.6401454", "0.6396653", "0.637963", "0.6203017", "0.61925197", "0.61302006", "0.5978791", "0.5954948", "0.59440327", "0.58481073", "0.58365", "0.57732964", "0.56176406", "0.5582887", "0.55532163", "0.54613733", "0.5433799", "0.53666884", "0.5332517", "0.53108406", "0.53012556", "0.5269648", "0.52395296", "0.5217552", "0.5160502", "0.51587844", "0.5145434", "0.5114747", "0.5099717", "0.5077385", "0.50627995", "0.5057289", "0.50465", "0.497766", "0.4969916", "0.49696574", "0.4965804", "0.49647915", "0.49623662", "0.4933922", "0.49304152", "0.4920719", "0.4918822", "0.49164593", "0.4909308", "0.49022394", "0.49004787", "0.4872803", "0.4863257", "0.48617637", "0.4858601", "0.4848276", "0.4845938", "0.48414052", "0.4839053", "0.48325607", "0.48184764", "0.48135754", "0.4811963", "0.48067445", "0.4806436", "0.48056835", "0.47812796", "0.47731224", "0.47692168", "0.47633103", "0.47584185", "0.47529864", "0.47439393", "0.47419292", "0.47311705", "0.47282436", "0.47257143", "0.47058564", "0.4700202", "0.46736386", "0.46708596", "0.46584535", "0.46420315", "0.4642027", "0.46366116", "0.4636348", "0.46355447", "0.4628303", "0.46214005", "0.46190983", "0.46171352", "0.46145585", "0.46143726", "0.4608063", "0.46041656", "0.45992586", "0.45959395", "0.45866922", "0.45841673" ]
0.85896856
0
$ANTLR end "rulePrintCSV" $ANTLR start "entryRuleNbRow" InternalCsv.g:204:1: entryRuleNbRow : ruleNbRow EOF ;
public final void entryRuleNbRow() throws RecognitionException { try { // InternalCsv.g:205:1: ( ruleNbRow EOF ) // InternalCsv.g:206:1: ruleNbRow EOF { if ( state.backtracking==0 ) { before(grammarAccess.getNbRowRule()); } pushFollow(FOLLOW_1); ruleNbRow(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getNbRowRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleNbRow() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:217:2: ( ( ( rule__NbRow__Group__0 ) ) )\n // InternalCsv.g:218:2: ( ( rule__NbRow__Group__0 ) )\n {\n // InternalCsv.g:218:2: ( ( rule__NbRow__Group__0 ) )\n // InternalCsv.g:219:3: ( rule__NbRow__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getGroup()); \n }\n // InternalCsv.g:220:3: ( rule__NbRow__Group__0 )\n // InternalCsv.g:220:4: rule__NbRow__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleNbCol() throws RecognitionException {\n try {\n // InternalCsv.g:230:1: ( ruleNbCol EOF )\n // InternalCsv.g:231:1: ruleNbCol EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColRule()); \n }\n pushFollow(FOLLOW_1);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__NbRow__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1558:1: ( ( 'nbrow' ) )\n // InternalCsv.g:1559:1: ( 'nbrow' )\n {\n // InternalCsv.g:1559:1: ( 'nbrow' )\n // InternalCsv.g:1560:2: 'nbrow'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbrowKeyword_1()); \n }\n match(input,24,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbrowKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1519:1: ( rule__NbRow__Group__0__Impl rule__NbRow__Group__1 )\n // InternalCsv.g:1520:2: rule__NbRow__Group__0__Impl rule__NbRow__Group__1\n {\n pushFollow(FOLLOW_21);\n rule__NbRow__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1546:1: ( rule__NbRow__Group__1__Impl rule__NbRow__Group__2 )\n // InternalCsv.g:1547:2: rule__NbRow__Group__1__Impl rule__NbRow__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbRow__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1531:1: ( ( () ) )\n // InternalCsv.g:1532:1: ( () )\n {\n // InternalCsv.g:1532:1: ( () )\n // InternalCsv.g:1533:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n // InternalCsv.g:1534:2: ()\n // InternalCsv.g:1534:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleNbCol() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:242:2: ( ( ( rule__NbCol__Group__0 ) ) )\n // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) )\n {\n // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) )\n // InternalCsv.g:244:3: ( rule__NbCol__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getGroup()); \n }\n // InternalCsv.g:245:3: ( rule__NbCol__Group__0 )\n // InternalCsv.g:245:4: rule__NbCol__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final String entryRuleNumber() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleNumber = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5341:2: (iv_ruleNumber= ruleNumber EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5342:2: iv_ruleNumber= ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumber_in_entryRuleNumber12345);\r\n iv_ruleNumber=ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumber.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumber12356); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__NbRow__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3810:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n // InternalCsv.g:3812:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3813:3: ( RULE_ID )\n // InternalCsv.g:3814:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRULE_TABLE_ROW() throws RecognitionException {\n try {\n int _type = RULE_TABLE_ROW;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalCucumber.g:2587:16: ( '|' ( (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|' )+ ( ' ' | '\\\\t' )* RULE_NL )\n // InternalCucumber.g:2587:18: '|' ( (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|' )+ ( ' ' | '\\\\t' )* RULE_NL\n {\n match('|'); \n // InternalCucumber.g:2587:22: ( (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|' )+\n int cnt9=0;\n loop9:\n do {\n int alt9=2;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n \tcase 1 :\n \t // InternalCucumber.g:2587:23: (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|'\n \t {\n \t // InternalCucumber.g:2587:23: (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )*\n \t loop8:\n \t do {\n \t int alt8=2;\n \t int LA8_0 = input.LA(1);\n\n \t if ( ((LA8_0>='\\u0000' && LA8_0<='\\t')||(LA8_0>='\\u000B' && LA8_0<='\\f')||(LA8_0>='\\u000E' && LA8_0<='{')||(LA8_0>='}' && LA8_0<='\\uFFFF')) ) {\n \t alt8=1;\n \t }\n\n\n \t switch (alt8) {\n \t \tcase 1 :\n \t \t // InternalCucumber.g:2587:23: ~ ( ( '|' | '\\\\n' | '\\\\r' ) )\n \t \t {\n \t \t if ( (input.LA(1)>='\\u0000' && input.LA(1)<='\\t')||(input.LA(1)>='\\u000B' && input.LA(1)<='\\f')||(input.LA(1)>='\\u000E' && input.LA(1)<='{')||(input.LA(1)>='}' && input.LA(1)<='\\uFFFF') ) {\n \t \t input.consume();\n\n \t \t }\n \t \t else {\n \t \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t \t recover(mse);\n \t \t throw mse;}\n\n\n \t \t }\n \t \t break;\n\n \t \tdefault :\n \t \t break loop8;\n \t }\n \t } while (true);\n\n \t match('|'); \n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt9 >= 1 ) break loop9;\n EarlyExitException eee =\n new EarlyExitException(9, input);\n throw eee;\n }\n cnt9++;\n } while (true);\n\n // InternalCucumber.g:2587:49: ( ' ' | '\\\\t' )*\n loop10:\n do {\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0=='\\t'||LA10_0==' ') ) {\n alt10=1;\n }\n\n\n switch (alt10) {\n \tcase 1 :\n \t // InternalCucumber.g:\n \t {\n \t if ( input.LA(1)=='\\t'||input.LA(1)==' ' ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop10;\n }\n } while (true);\n\n mRULE_NL(); \n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Override\n public int rowNumber() throws IOException {\n return recordNumber;\n }", "public final void entryRuleNumber() throws RecognitionException {\r\n\r\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();\r\n\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1816:1: ( ruleNumber EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1817:1: ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumber_in_entryRuleNumber3816);\r\n ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumber3823); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \tmyHiddenTokenState.restore();\r\n\r\n }\r\n return ;\r\n }", "public int getNrow(){\r\n \treturn this.nrow;\r\n \t}", "public final String entryRuleNUMBER() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleNUMBER = null;\n\n\n try {\n // InternalMyDsl.g:3410:46: (iv_ruleNUMBER= ruleNUMBER EOF )\n // InternalMyDsl.g:3411:2: iv_ruleNUMBER= ruleNUMBER EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getNUMBERRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleNUMBER=ruleNUMBER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleNUMBER.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleNumberExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleNumberExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1964:2: (iv_ruleNumberExpression= ruleNumberExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1965:2: iv_ruleNumberExpression= ruleNumberExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumberExpression_in_entryRuleNumberExpression4108);\r\n iv_ruleNumberExpression=ruleNumberExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumberExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberExpression4118); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleNumber() throws RecognitionException {\r\n \r\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();\r\n\r\n try {\r\n // InternalDroneScript.g:1958:1: ( ruleNumber EOF )\r\n // InternalDroneScript.g:1959:1: ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \tmyHiddenTokenState.restore();\r\n\r\n }\r\n return ;\r\n }", "public final void rule__NbRow__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1573:1: ( rule__NbRow__Group__2__Impl )\n // InternalCsv.g:1574:2: rule__NbRow__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleRanking() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRanking = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:834:2: (iv_ruleRanking= ruleRanking EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:835:2: iv_ruleRanking= ruleRanking EOF\n {\n newCompositeNode(grammarAccess.getRankingRule()); \n pushFollow(FollowSets000.FOLLOW_ruleRanking_in_entryRuleRanking1651);\n iv_ruleRanking=ruleRanking();\n\n state._fsp--;\n\n current =iv_ruleRanking; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleRanking1661); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public AsciiDocWriter tableLineNN(Object... cells) { \r\n\t\tfor(int t=0;cells!=null && t<cells.length;t++) { if(cells[t]==null) { return this; }}\r\n\t\tnnl(); for(int i=0;cells!=null && i<cells.length;i++) { w(\"|\").w(cells[i]); } return nl(); \r\n\t}", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleNUMBER_LITERAL() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleNUMBER_LITERAL = null;\n\n\n try {\n // InternalMyDsl.g:10086:54: (iv_ruleNUMBER_LITERAL= ruleNUMBER_LITERAL EOF )\n // InternalMyDsl.g:10087:2: iv_ruleNUMBER_LITERAL= ruleNUMBER_LITERAL EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getNUMBER_LITERALRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleNUMBER_LITERAL=ruleNUMBER_LITERAL();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleNUMBER_LITERAL.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public void writeCSVLine(int[] entries) {\n\t\tint size = entries.length;\n\t\tString[] convertedEntries = new String[size];\n\t\tfor (int i = 0; i < size; i++) {\n\t\t\tconvertedEntries[i] = Integer.toString(entries[i]);\n\t\t}\n\t\twriter.writeNext(convertedEntries);\n\t}", "private int parseRowValue(String value) {\n char number = value.charAt(1);\n if (!Character.isDigit(number)) {\n throw new IllegalArgumentException(\"Char '\" + number + \"' is not a number.\");\n }\n return Character.getNumericValue(number) - START_ROW;\n }", "public static Row createRow(String[] rowAsArray, int lineCount) {\n\n\t\t//Row is initialized to null so that we don't get an error if ININC is blank\n\t\t//Row object requires ININC number in constructor\n\t\tRow outputRow = new Row(lineCount);\n\n\t\t//First check if ININC column is empty for current row data\n\t\tif(rowAsArray[11].isEmpty()) {\n\t\t\tGUI.sendError(\"Error: ININC# does not exist for row \"+lineCount+\".\");\n\t\t}\n\t\telse {\n\t\t\t//If not, try to parse what is there\n\t\t\t//It should be a long integer\n\t\t\ttry {\n\t\t\t\toutputRow.setIninc(Long.parseLong(rowAsArray[11]));\n\t\t\t}\n\t\t\tcatch (NumberFormatException e) {\n\t\t\t\t//Otherwise we get an error and this row is set to invalid\n\t\t\t\t//A message is printed informing what the error is and the line in which the error occurred\n\t\t\t\tGUI.sendError(\"Error: ININC# is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\t\toutputRow.setValid(false);\n\t\t\t}\n\t\t}\n\n\n\t\t//try/catch for INPRTY\n\t\t//Any numerical values have to be parsed, which allows for an exception if the String is not numerical\n\t\t//The try/catch statements handle the NumberFormatException that could potentially be thrown\n\t\ttry {\n\t\t\toutputRow.setPriority((int) Double.parseDouble(rowAsArray[0]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\t//If there is not a valid number where there should be, print an error and set this row to invalid\n\t\t\t//Data in this row must be corrected in GUI to make it valid again\n\t\t\tGUI.sendError(\"Error: INPRTY is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\n\t\t//address block\n\t\t//error handling tbd\n\t\toutputRow.setAddress(rowAsArray[1].trim());\n\n\t\tif(rowAsArray[2] != null) {\n\t\t\toutputRow.setCross(rowAsArray[2].trim());\n\t\t}\n\t\telse {\n\t\t\toutputRow.setCross(\"\");\n\t\t}\n\t\t//end address block\n\n\n\t\t//Date block\n\t\t//DateTimeFormatter is created to specify format that we expect the date/time to be in\n\t\t//This is consistent with what is usually found in the Excel/CSV\n\t\t//If the date/time read from CSV is not able to be read by this formatter, an error will be thrown\n\t\t//And this line of data will not be included\n\t\tDateTimeFormatter dateAndTimeFormatter = DateTimeFormatter.ofPattern(\"M/d/yyyy H:mm[:ss]\");\n\t\ttry {\n\t\t\toutputRow.setDispatch(LocalDateTime.parse(rowAsArray[3].trim(), dateAndTimeFormatter));\n\t\t\toutputRow.setArrive(LocalDateTime.parse(rowAsArray[4].trim(), dateAndTimeFormatter));\n\t\t}\n\t\tcatch (DateTimeParseException e) {\n\t\t\tGUI.sendError(\"Error: could not parse dispatch and/or arrive time for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\t\t//See above comments about parsing numbers\n\t\t//This block attempts to parse the RESPONSE variable as a double\n\t\ttry {\n\t\t\toutputRow.setResponseDouble(Double.parseDouble(rowAsArray[5]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\tGUI.sendError(\"Error: RESPONSE is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\t\t//If parsing was successful, we can also check that the number parsed is still valid\n\t\t//Response time logically must be at least zero, so any negative response time results in a warning\n\t\t//Warning (as opposed to error) means the row will still be valid, but there is possibly something wrong with the data\n\t\tif(outputRow.getResponseDouble() < 0) {\n\t\t\tGUI.sendInfo(\"Warning: RESPONSE is invalid (less than zero) for row \"+lineCount+\".\");\n\t\t\tGUI.sendInfo(\"This will be overwritten by a manually calculated response time, but still worth noting.\");\n\t\t}\n\n\n\t\toutputRow.setStaffing(rowAsArray[6].trim());\n\t\t//Quick validation check to ensure Staffing is either Volunteer or Career Staffing\n\t\tif(outputRow.getStaffing().toLowerCase().compareTo(\"volunteer\") != 0 && outputRow.getStaffing().toLowerCase().compareTo(\"career staff\") != 0) {\n\t\t\tGUI.sendError(\"Error: Staffing is unexpected value (neither Volunteer nor Career Staffing) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\t\t//The following code ensures that the day of week is a valid day of week\n\t\t//Since is this isn't an entirely essential variable, a warning is thrown if day of week is invalid\n\t\t//Again, the data will still be included, but it does suggest there is an issue with it\n\t\toutputRow.setDay(rowAsArray[7].trim());\n\t\tswitch (outputRow.getDay().toLowerCase()) {\n\t\tcase \"monday\":\n\t\t\tbreak;\n\t\tcase \"tuesday\":\n\t\t\tbreak;\n\t\tcase \"wednesday\":\n\t\t\tbreak;\n\t\tcase \"thursday\":\n\t\t\tbreak;\n\t\tcase \"friday\":\n\t\t\tbreak;\n\t\tcase \"saturday\":\n\t\t\tbreak;\n\t\tcase \"sunday\":\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tGUI.sendError(\"Error: Day of Week is invalid for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t\tbreak;\n\t\t}\n\n\n\t\t//SSA validation moved to row class\n\t\toutputRow.setSsa(rowAsArray[8].trim());\n\n\t\t//Try/catch for district number to ensure data is numerical and avoid error causing crash\n\t\ttry {\n\t\t\toutputRow.setDistrict((int) Double.parseDouble(rowAsArray[9]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\tGUI.sendError(\"Error: District number is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\t\t//moved district number validation to row class\n\n\n\t\t//not sure about validation for these\n\t\toutputRow.setInori(rowAsArray[10].trim());\n\t\toutputRow.setInunit(rowAsArray[12].trim());\n\t\toutputRow.setInbdg(rowAsArray[13].trim());\n\t\toutputRow.setInitype(rowAsArray[14].trim());\n\n\n\t\t//INSECT variable is numerical so try/catch to avoid errors\n\t\ttry {\n\t\t\toutputRow.setInsect((int) Double.parseDouble(rowAsArray[15]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\tGUI.sendError(\"Error: INSECT is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\n\t\t//see above comments on numerical variables\n\t\ttry {\n\t\t\toutputRow.setCadinc(Long.parseLong(rowAsArray[16]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\tGUI.sendError(\"Error: CAD_INC is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\n\t\t//Service_type should be either FIRE or EMS\n\t\t//We can check this easily, if it is neither than throw an error and skip this row of data\n\t\t//Subject to change \n\t\tif(rowAsArray[17].compareTo(\"FIRE\") == 0) {\n\t\t\toutputRow.setServiceType(ServiceType.FIRE);\n\t\t}\n\t\telse if (rowAsArray[17].compareTo(\"EMS\") == 0) {\n\t\t\toutputRow.setServiceType(ServiceType.EMS);\n\t\t}\n\t\telse {\n\t\t\tGUI.sendError(\"Error: SERVICE_TYPE is invalid for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\t\toutputRow.setFua(rowAsArray[18].trim());\n\n\n\t\tif(outputRow.getDispatchTime() != null && outputRow.getArriveTime() != null) {\n\t\t\t//for calculating response time\n\t\t\t//first calculates total number of minutes between dispatch and arrive\n\t\t\tint responseTimeMinutesValue = (int) ChronoUnit.MINUTES.between(outputRow.getDispatchTime(), outputRow.getArriveTime());\n\t\t\tint responseTimeHoursValue = 0;\n\t\t\t//If minutes is 60 or greater, than response time is over an hour, so we have to account for that\n\t\t\twhile(responseTimeMinutesValue > 59) {\n\t\t\t\tresponseTimeMinutesValue -= 60;\n\t\t\t\tresponseTimeHoursValue++;\n\t\t\t}\n\t\t\t//Once hours and minutes are calculated, move on to seconds\n\t\t\tint responseTimeSecondsValue = (int) ChronoUnit.SECONDS.between(outputRow.getDispatchTime(), outputRow.getArriveTime());\n\t\t\t//Here we check to ensure that DISPATCH comes before ARRIVE, otherwise throw an error since we have a time traveler on our hands\n\t\t\tif(responseTimeSecondsValue < 0) {\n\t\t\t\tGUI.sendError(\"Error: Response time less than zero (calculated from Dispatch and Arrive) for row \"+lineCount+\".\");\t\n\t\t\t\toutputRow.setValid(false);\n\t\t\t}\n\t\t\t//Assuming that check passes, we can finalize the value of the seconds variable by calculating it modulo 60\n\t\t\tresponseTimeSecondsValue = responseTimeSecondsValue%60;\n\n\t\t\t//now make sure hours is 23 or less\n\t\t\tif(responseTimeHoursValue > 23) {\n\t\t\t\tresponseTimeHoursValue = 23;\n\t\t\t\tGUI.sendError(\"Error: Response time exceeds 1 day for row \"+lineCount+\". Response time value in table may not be accurate; check Dispatch and Arrival times.\");\n\t\t\t}\n\t\t\t//Then use the calculated variables for hours, minutes, and seconds to create the responseTime variable\n\t\t\tLocalTime responseTime = LocalTime.of(responseTimeHoursValue, responseTimeMinutesValue, responseTimeSecondsValue);\n\t\t\toutputRow.setResponseTime(responseTime);\n\t\t}\n\t\telse {\n\t\t\tGUI.sendError(\"Error: Dispatch and/or Response time are null for row \"+lineCount+\", so response time could not be calculated.\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\t\t//Now that all of the data has been imported into the Row object, return the Row object so it can be added to ArrayList\n\t\treturn outputRow;\n\t}", "public final void entryRuleNumberLiteral() throws RecognitionException {\n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1489:1: ( ruleNumberLiteral EOF )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1490:1: ruleNumberLiteral EOF\n {\n before(grammarAccess.getNumberLiteralRule()); \n pushFollow(FOLLOW_ruleNumberLiteral_in_entryRuleNumberLiteral3121);\n ruleNumberLiteral();\n\n state._fsp--;\n\n after(grammarAccess.getNumberLiteralRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberLiteral3128); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleNumberLiteral() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleNumberLiteral = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4232:2: (iv_ruleNumberLiteral= ruleNumberLiteral EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4233:2: iv_ruleNumberLiteral= ruleNumberLiteral EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberLiteralRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumberLiteral_in_entryRuleNumberLiteral9097);\r\n iv_ruleNumberLiteral=ruleNumberLiteral();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumberLiteral; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberLiteral9107); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "@Override\n protected String serializeDBRowNumber(Function<ImmutableTerm, String> converter, TermFactory termFactory) {\n return \"ROW_NUMBER() OVER (ORDER BY (SELECT NULL))\";\n }", "private void endRow() throws TableFormatException {\n if ( readCol == 0 ) {\n return;\n }\n int nrow = rows.size();\n if ( nrow == 1 ) {\n ncol = ((List) rows.get( 0 )).size();\n }\n else if ( readCol != ncol ) {\n throw new TableFormatException( \n \"Column number mismatch in row \" + ( nrow - 1 ) +\n \" (\" + readCol + \" != \" + ncol + \")\" );\n }\n readCol = 0;\n }", "@Override\n\tpublic int countRows(byte[] bytes, int sheetIndex) {\n\t\tList<String[]> lines = readCsvFile(bytes, \";\", \"'\");\n\t\treturn lines.size();\n\t}", "public final void mRULE_NUMBER() throws RecognitionException {\n try {\n int _type = RULE_NUMBER;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:13: ( ( '0' .. '9' )+ )\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:15: ( '0' .. '9' )+\n {\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:15: ( '0' .. '9' )+\n int cnt6=0;\n loop6:\n do {\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( ((LA6_0>='0' && LA6_0<='9')) ) {\n alt6=1;\n }\n\n\n switch (alt6) {\n \tcase 1 :\n \t // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:16: '0' .. '9'\n \t {\n \t matchRange('0','9'); \n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt6 >= 1 ) break loop6;\n EarlyExitException eee =\n new EarlyExitException(6, input);\n throw eee;\n }\n cnt6++;\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final EObject entryRuleNumberFunction() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleNumberFunction = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2983:2: (iv_ruleNumberFunction= ruleNumberFunction EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2984:2: iv_ruleNumberFunction= ruleNumberFunction EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberFunctionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumberFunction_in_entryRuleNumberFunction6317);\r\n iv_ruleNumberFunction=ruleNumberFunction();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumberFunction; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberFunction6327); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleTab() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:145:1: ( ruleTab EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:146:1: ruleTab EOF\n {\n before(grammarAccess.getTabRule()); \n pushFollow(FOLLOW_ruleTab_in_entryRuleTab241);\n ruleTab();\n\n state._fsp--;\n\n after(grammarAccess.getTabRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleTab248); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Override\n\tpublic int getTotalRow(String where) {\n\t\treturn 0;\n\t}", "private static int \n headersCount (final Map.Entry <String, VersionedValue> entry)\n {\n return entry.getKey ().length () + 1 + 4 + entry.getValue ().getValue ().length () + 1;\n }", "public int getColumnAmount(BufferedReader br) {\n\n String rowStr;\n\n try {\n //Get into string\n rowStr = br.readLine();\n\n //Split into 1D array\n columns = rowStr.split(\"\\t\");\n\n } catch (IOException e) {\n e.printStackTrace();\n }\n //Return number of elements -1 for id column\n return columns.length - 1;\n }", "public static int getNameMapRowNumber(RConnection RC) {\n try {\n return RC.eval(\"GetHitsRowNumber(NA)\").asInteger();\n } catch (Exception e) {\n e.printStackTrace();\n }\n return 0;\n }", "public int getRowNum(){ return this.rowNum; }", "public final void rule__NbRow__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1584:1: ( ( ( rule__NbRow__OpenAssignment_2 ) ) )\n // InternalCsv.g:1585:1: ( ( rule__NbRow__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1585:1: ( ( rule__NbRow__OpenAssignment_2 ) )\n // InternalCsv.g:1586:2: ( rule__NbRow__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1587:2: ( rule__NbRow__OpenAssignment_2 )\n // InternalCsv.g:1587:3: rule__NbRow__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleValidID() throws RecognitionException {\n try {\n // InternalCsv.g:580:1: ( ruleValidID EOF )\n // InternalCsv.g:581:1: ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_1);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getValidIDRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__NbCol__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1600:1: ( rule__NbCol__Group__0__Impl rule__NbCol__Group__1 )\n // InternalCsv.g:1601:2: rule__NbCol__Group__0__Impl rule__NbCol__Group__1\n {\n pushFollow(FOLLOW_22);\n rule__NbCol__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getRecordLineNumber();", "public int getRowNo() {\n return rowIndex+1;\n }", "public final void entryRuleTn() throws RecognitionException {\n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:341:1: ( ruleTn EOF )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:342:1: ruleTn EOF\n {\n before(grammarAccess.getTnRule()); \n pushFollow(FOLLOW_ruleTn_in_entryRuleTn661);\n ruleTn();\n\n state._fsp--;\n\n after(grammarAccess.getTnRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleTn668); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "private static Integer getOutcome(List<String> row) {\n\t return Integer.parseInt(row.get(8));\n\t}", "public int getRowNumber() {\n\t\treturn rowNumber;\n\t}", "public static boolean TableRow(PsiBuilder b, int l) {\n if (!recursion_guard_(b, l, \"TableRow\")) return false;\n if (!nextTokenIs(b, JB_TOKEN_PIPE)) return false;\n boolean r, p;\n Marker m = enter_section_(b, l, _NONE_, null);\n r = consumeToken(b, JB_TOKEN_PIPE);\n p = r; // pin = 1\n r = r && report_error_(b, SpaceStar(b, l + 1));\n r = p && report_error_(b, TableRow_2(b, l + 1)) && r;\n r = p && report_error_(b, consumeToken(b, JB_TOKEN_PIPE)) && r;\n r = p && TableRow_4(b, l + 1) && r;\n exit_section_(b, l, m, JB_TABLE_ROW, r, p, null);\n return r || p;\n }", "public void setRowNo(Integer rowNo) {\n this.rowNo = rowNo;\n }", "@Override\n public void endRows(int depth) throws IOException {\n this.write(this.getNewline()+this.makeTabs(depth)+\"</rows>\");\n }", "private void createParseTable() {\n parseTableHeader = new HashMap<String, Integer>();\n parseTable = new ArrayList<ArrayList<String>>();\n pHeader = new ArrayList<String>();\n\n String inputLine = null;\n int fileLine = 1;\n int headerCount = 0;\n\n try {\n FileReader reader = new FileReader(parseTableFile);\n BufferedReader bufferedReader = new BufferedReader(reader);\n\n while((inputLine = bufferedReader.readLine()) != null) {\n\n // removes all leading and trailing whitespaces and leading tabs\n String line = inputLine.trim().replaceFirst(\"\\\\t\", \"\");\n\n // these are header rows for terminals and variables\n if(fileLine == 1 || fileLine == 40) {\n String[] cells = line.replaceFirst(\"&\", \"\").split(\"&\");\n for(String cell : cells) {\n// System.out.println(cell);\n if(!parseTableHeader.containsKey(cell) && cell != \"\") {\n parseTableHeader.put(cell, headerCount);\n// System.out.println(headerCount);\n pHeader.add(cell);\n headerCount++;\n }\n }\n }\n else {\n String[] parsedRow = line.split(\"&\",-1);\n // get actual SLR parse table's row number\n int row = Integer.parseInt(parsedRow[0]);\n\n// System.out.println(\"Parsing row number \\t\\t\" + row);\n\n // create a new Array that excludes the row number column\n String[] tempRow = Arrays.copyOfRange(parsedRow, 1, parsedRow.length);\n // remove null / empty entries from Array\n replaceBlanks(tempRow);\n // convert to ArrayList for easier handling\n ArrayList<String> cells = new ArrayList<>(Arrays.asList(tempRow));\n\n// System.out.print(\"Parsed row content \\t\\t\");\n// printArrayList(cells);\n// System.out.println();\n\n // add above ArrayList to the table at the correct row number.\n // because there's two parts to the parse table's row, only\n // add right away if we haven't added anything before\n // otherwise combine the previous entry with this one to create\n // complete entry for this row\n try {\n ArrayList<String> current = parseTable.get(row);\n\n// System.out.print(\"Contents of row \" + row + \"\\t\\t\");\n// printArrayList(current);\n// System.out.println();\n\n // temporary ArrayList to hold previous entry and new entry\n ArrayList<String> temp = new ArrayList<String>();\n temp.addAll(current);\n temp.addAll(cells);\n\n// System.out.print(\"New combined row \\t\\t\");\n// printArrayList(temp);\n// System.out.println();\n\n // add combined ArrayList to the parse table\n parseTable.set(row, temp);\n } catch (IndexOutOfBoundsException e) {\n parseTable.add(row, cells);\n }\n\n// System.out.print(\"Final row \\t\\t\\t\\t\");\n// printArrayList(parseTable.get(row));\n// System.out.println();\n// System.out.println();\n\n }\n\n fileLine++;\n\n }\n if(printPTABLE == \"Y\") {\n printTable();\n }\n bufferedReader.close();\n\n } catch(FileNotFoundException e) {\n System.out.println(\n parseTableFile + \" not found\"\n );\n } catch(IOException e) {\n System.out.println(\n \"Error reading file \" + parseTableFile\n );\n }\n\n }", "public Pair<Integer,Integer> countNewlines(int column,String lexeme)\n\t{\n \tif(lexeme.equals(\"\")) return Pair.cons(0,-1);\n\t\tint startIndex = -1,nlCount = -1;\n\t\twhile(startIndex != 0)\n\t\t{\n\t\t\tnlCount++;\n\t\t\tstartIndex = lexeme.indexOf('\\n',startIndex) + 1;\n\t\t}\n\t\tint lastStartIndex = lexeme.lastIndexOf('\\n') + 1;\n\t\tint columnCount = lastStartIndex == 0 ? column : 0;\n\t\tfor(startIndex = lexeme.indexOf('\\t',lastStartIndex);startIndex != -1;startIndex = lexeme.indexOf('\\t',lastStartIndex))\n\t\t{\n\t\t\tcolumnCount += startIndex - lastStartIndex;\n\t\t\tcolumnCount += tabStop - (columnCount % tabStop);\n\t\t\tlastStartIndex = startIndex + 1;\n\t\t}\n\t\tcolumnCount += lexeme.length() - lastStartIndex;\n\t\t\n\t\t//int pastNewline = ((lexeme.lastIndexOf('\\n') == -1) ? column + lexeme.length() : (lexeme.length() - (lexeme.lastIndexOf('\\n') + 1)));\n\t\t// DEBUG-X-BEGIN\n\t\t//System.err.println(\"Lexeme '\" + lexeme + \"' --- Newline count: \" + nlCount + \"; last newline: \" + pastNewline);\n\t\t// DEBUG-X-END\n\t\treturn Pair.cons(nlCount,columnCount);\n\t}", "public final void rule__NbCol__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1639:1: ( ( 'nbcol' ) )\n // InternalCsv.g:1640:1: ( 'nbcol' )\n {\n // InternalCsv.g:1640:1: ( 'nbcol' )\n // InternalCsv.g:1641:2: 'nbcol'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbcolKeyword_1()); \n }\n match(input,25,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbcolKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getRowNumber()\r\n\t{\r\n\t\treturn this.rowNumber;\r\n\t}", "public static int getGeneNameMapRowNumber(RConnection RC) {\n try {\n return RC.eval(\"GetGeneHitsRowNumber(NA)\").asInteger();\n } catch (Exception e) {\n e.printStackTrace();\n }\n return 0;\n }", "public final void entryRuleSaveCSV() throws RecognitionException {\n try {\n // InternalCsv.g:255:1: ( ruleSaveCSV EOF )\n // InternalCsv.g:256:1: ruleSaveCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "static int row(String sq) {\n String s = sq.substring(1,2);\n return 9 - Integer.parseInt(s);\n }", "public final void rule__NbCol__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1627:1: ( rule__NbCol__Group__1__Impl rule__NbCol__Group__2 )\n // InternalCsv.g:1628:2: rule__NbCol__Group__1__Impl rule__NbCol__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbCol__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic void validateBatch(ReversalBatch csvReversalBatch) {\n\t\t\n\t}", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalCsv.g:55:1: ( ruleModel EOF )\n // InternalCsv.g:56:1: ruleModel EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelRule()); \n }\n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void setRowNumber(int rowNumber) {\n this.rowNumber = rowNumber;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:229:1: ( ruleImport EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:230:1: ruleImport EOF\n {\n before(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport421);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getImportRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public Integer getRowNo() {\n return rowNo;\n }", "@Override\n\t\t\tpublic void rowProcessed(Object[] row, ParsingContext context) {\n\t\t\t\tbar.update((int) context.currentRecord(),nrRows);\n\t\t\t\tif (context.currentRecord()==1) {\n\t\t\t\t\twriter.writeRow(context.headers());\n\t\t\t\t}\n\t\t\t\tif (!row.toString().isEmpty()) {\t\t\t\t\t\n\t\t\t\t\twriter.writeRow(row);\n\t\t\t\t}\n\t\t\t}", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleType = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2094:2: (iv_ruleType= ruleType EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2095:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FOLLOW_ruleType_in_entryRuleType4992);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleType5002); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "public int getColumnNumber()\n {\n return parser.getColumnNumber();\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleIndex() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2580:1: ( ruleIndex EOF )\r\n // InternalGo.g:2581:1: ruleIndex EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIndexRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleIndex();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIndexRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public int searchRowsCount(SearchCriteria cri);", "public final void entryRuleExpr() throws RecognitionException {\n try {\n // InternalWh.g:279:1: ( ruleExpr EOF )\n // InternalWh.g:280:1: ruleExpr EOF\n {\n before(grammarAccess.getExprRule()); \n pushFollow(FOLLOW_1);\n ruleExpr();\n\n state._fsp--;\n\n after(grammarAccess.getExprRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Test\n public void testLineNumberInAST() throws Exception {\n final RuleDescr rule = ((RuleDescr) (parseResource(\"rule\", \"simple_rule.drl\")));\n TestCase.assertNotNull(rule);\n TestCase.assertEquals(\"simple_rule\", rule.getName());\n TestCase.assertEquals(22, rule.getConsequenceLine());\n TestCase.assertEquals(2, rule.getConsequencePattern());\n final AndDescr lhs = rule.getLhs();\n TestCase.assertNotNull(lhs);\n TestCase.assertEquals(3, lhs.getDescrs().size());\n // Check first pattern\n final PatternDescr first = ((PatternDescr) (lhs.getDescrs().get(0)));\n TestCase.assertEquals(\"foo3\", first.getIdentifier());\n TestCase.assertEquals(\"Bar\", first.getObjectType());\n TestCase.assertEquals(1, getDescrs().size());\n // Check second pattern\n final PatternDescr second = ((PatternDescr) (lhs.getDescrs().get(1)));\n TestCase.assertEquals(\"foo4\", second.getIdentifier());\n TestCase.assertEquals(\"Bar\", second.getObjectType());\n final PatternDescr third = ((PatternDescr) (lhs.getDescrs().get(2)));\n TestCase.assertEquals(\"Baz\", third.getObjectType());\n TestCase.assertEquals(19, first.getLine());\n TestCase.assertEquals(20, second.getLine());\n TestCase.assertEquals(21, third.getLine());\n }", "public final EObject entryRuleCount() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleCount = null;\n\n\n try {\n // InternalMyDsl.g:3299:46: (iv_ruleCount= ruleCount EOF )\n // InternalMyDsl.g:3300:2: iv_ruleCount= ruleCount EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getCountRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleCount=ruleCount();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleCount; \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public static void test000(String[] args) throws IOException\n {\n\n\n //System.out.println(sql_insert_shipto_template);\n\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SALES_ORGANIZATION_CODE%\", \"261\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%DC_SHORTNAME%\", \"PF\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SHIPTO_CODE%\", \"10156409\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%PRODUCT_CODE%\", \"10104574\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%STARTDATE%\", \"01.02.2014\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%FINISHDATE%\", \"31.12.9999\");\n\n\n // String test = \"1\\t2\\t3\\n4\\t5\\t6\";\n\n String test = \"SO;SHIPTO;SHIPTO;DCSHORT;REP;GRD;Name;start date;end date\\n\" +\n \"261;10156405PF;10156405;PF;249394;10104570;A.KORKUNOV DARK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"261;10156405CH;10156405;CH;249410;10104542;A.KORKUNOV MILK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"377;10156409PF;10156409;PF;249399;10104574;A.KORKUNOV DARK ALMOND 5*10*100G;07.10.2014;31.12.9999\\n\";\n\n\n //CSVParser parser = CSVParser.parse(test, CSVFormat.newFormat(';'));\n File file = new File(\"c:\\\\MATDET_SHIPTO_EXAMPLE.csv\");\n CSVParser parser = CSVParser.parse(file, java.nio.charset.Charset.defaultCharset(), CSVFormat.newFormat(';'));\n\n int rownum = 0;\n for (CSVRecord strings : parser)\n {\n\n if (rownum++ == 0)\n continue;\n String SO = strings.get(0);\n String SHIPTO = strings.get(2);\n String DCSHORT = strings.get(3);\n //String REP = strings.get(4);\n String PRODUCT = strings.get(5);\n String START = strings.get(7);\n String END = strings.get(8);\n\n String temp = SQL_INSERT_TMATDET_SHIPTO_TEMPLATE;\n temp = temp.replaceAll(\"%SALES_ORGANIZATION_CODE%\", SO);\n temp = temp.replaceAll(\"%DC_SHORTNAME%\", DCSHORT);\n temp = temp.replaceAll(\"%SHIPTO_CODE%\", SHIPTO);\n temp = temp.replaceAll(\"%PRODUCT_CODE%\", PRODUCT);\n temp = temp.replaceAll(\"%STARTDATE%\", START);\n temp = temp.replaceAll(\"%FINISHDATE%\", END);\n\n\n System.out.println(temp);\n }\n\n System.out.println(\"rows=\" + rownum);\n\n\n// CsvParser parser = new CsvParserImpl();\n// CSV\n// parser.\n// List parsed = parser.parse(\"1\\t2\\t3\\n4\\t5\\t6\");\n// System.out.println(parsed.get(0));\n\n //System.out.println(sql_insert_shipto_template);\n\n }", "public static void main(String[] args) throws FileNotFoundException {\n\t\tscanner = new Scanner(new File(\"digit_data/test.csv\"));\n scanner.useDelimiter(\",\");\n scanner.nextLine();\n // Transforms the values on the csv from strings to ints\n\t\tnew drawnum().go();\n\t}", "public final void entryRuleUnaryExpr() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2405:1: ( ruleUnaryExpr EOF )\r\n // InternalGo.g:2406:1: ruleUnaryExpr EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getUnaryExprRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleUnaryExpr();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getUnaryExprRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleEntry() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:62:1: ( ruleEntry EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:63:1: ruleEntry EOF\n {\n before(grammarAccess.getEntryRule()); \n pushFollow(FollowSets000.FOLLOW_ruleEntry_in_entryRuleEntry61);\n ruleEntry();\n _fsp--;\n\n after(grammarAccess.getEntryRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleEntry68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@gw.internal.gosu.parser.ExtendedProperty\n public entity.LoadRowCount[] getRowCounts();", "@Test\r\n public void readCsvFile() throws FileNotFoundException, IOException { \r\n CsvReader csvr = new CsvReader(CSV_FILE);\r\n \r\n List<NetworkElement> nes = csvr.getNetworkElements();\r\n assertEquals(55,nes.size()); \r\n }", "public final EObject entryRuleExpression_6() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_6_StartIndex = input.index();\n EObject iv_ruleExpression_6 = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 93) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4087:2: (iv_ruleExpression_6= ruleExpression_6 EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4088:2: iv_ruleExpression_6= ruleExpression_6 EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpression_6Rule()); \n }\n pushFollow(FOLLOW_ruleExpression_6_in_entryRuleExpression_68143);\n iv_ruleExpression_6=ruleExpression_6();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression_6; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression_68153); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 93, entryRuleExpression_6_StartIndex); }\n }\n return current;\n }", "@Test\n\tpublic void parsingRoll3() throws BowlingException {\n\t\tassertEquals(0, new DefaultRollParser().parseLine(\"Name\\tF\").getPinfalls().intValue());\n\t\tassertEquals(0, new DefaultRollParser().parseLine(\"Name\\tf\").getPinfalls().intValue());\n\t}", "@Insert({ \"insert into csv_file (id, pid, \", \"filename, start_time, \", \"end_time, length, \", \"density, machine, \",\n\t\t\t\"ar, path, size, \", \"uuid, header_time, \", \"last_update, conflict_resolved, \", \"status, comment, \",\n\t\t\t\"width, start_version, \", \"end_version)\", \"values (#{id,jdbcType=INTEGER}, #{pid,jdbcType=VARCHAR}, \",\n\t\t\t\"#{filename,jdbcType=VARCHAR}, #{startTime,jdbcType=TIMESTAMP}, \",\n\t\t\t\"#{endTime,jdbcType=TIMESTAMP}, #{length,jdbcType=INTEGER}, \",\n\t\t\t\"#{density,jdbcType=DOUBLE}, #{machine,jdbcType=VARCHAR}, \",\n\t\t\t\"#{ar,jdbcType=BIT}, #{path,jdbcType=VARCHAR}, #{size,jdbcType=BIGINT}, \",\n\t\t\t\"#{uuid,jdbcType=CHAR}, #{headerTime,jdbcType=TIMESTAMP}, \",\n\t\t\t\"#{lastUpdate,jdbcType=TIMESTAMP}, #{conflictResolved,jdbcType=BIT}, \",\n\t\t\t\"#{status,jdbcType=INTEGER}, #{comment,jdbcType=VARCHAR}, \",\n\t\t\t\"#{width,jdbcType=INTEGER}, #{startVersion,jdbcType=INTEGER}, \", \"#{endVersion,jdbcType=INTEGER})\" })\n\tint insert(CsvFile record);", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // InternalCsv.g:80:1: ( ruleLanguage EOF )\n // InternalCsv.g:81:1: ruleLanguage EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageRule()); \n }\n pushFollow(FOLLOW_1);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void mRULE_NL() throws RecognitionException {\n try {\n // InternalCucumber.g:2603:18: ( ( '\\\\r' )? ( '\\\\n' )? )\n // InternalCucumber.g:2603:20: ( '\\\\r' )? ( '\\\\n' )?\n {\n // InternalCucumber.g:2603:20: ( '\\\\r' )?\n int alt20=2;\n int LA20_0 = input.LA(1);\n\n if ( (LA20_0=='\\r') ) {\n alt20=1;\n }\n switch (alt20) {\n case 1 :\n // InternalCucumber.g:2603:20: '\\\\r'\n {\n match('\\r'); \n\n }\n break;\n\n }\n\n // InternalCucumber.g:2603:26: ( '\\\\n' )?\n int alt21=2;\n int LA21_0 = input.LA(1);\n\n if ( (LA21_0=='\\n') ) {\n alt21=1;\n }\n switch (alt21) {\n case 1 :\n // InternalCucumber.g:2603:26: '\\\\n'\n {\n match('\\n'); \n\n }\n break;\n\n }\n\n\n }\n\n }\n finally {\n }\n }", "public final EObject entryRuleTypeImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleTypeImport = null;\n\n\n try {\n // InternalNgt.g:1332:51: (iv_ruleTypeImport= ruleTypeImport EOF )\n // InternalNgt.g:1333:2: iv_ruleTypeImport= ruleTypeImport EOF\n {\n newCompositeNode(grammarAccess.getTypeImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleTypeImport=ruleTypeImport();\n\n state._fsp--;\n\n current =iv_ruleTypeImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public abstract int getNumOfRows();", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:287:2: (iv_ruleImport= ruleImport EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:288:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport625);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport635); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "@Test\r\n \tpublic void testQualifiedValues() {\n \t\t\r\n \t\tParameters params = (Parameters) filter.getParameters();\r\n \t\tparams.detectColumnsMode = Parameters.DETECT_COLUMNS_NONE;\r\n \t\t\r\n \t\tInputStream input = TableFilterTest.class.getResourceAsStream(\"/csv_test3.txt\");\r\n \t\tassertNotNull(input);\r\n \t\t\r\n \t\tparams.wrapMode = WrapMode.NONE; // !!!\r\n \t\tparams.removeQualifiers = true;\r\n \t\t\r\n //\t\tparams.valuesStartLineNum = 9;\r\n //\t\tparams.sendHeaderMode = 0;\r\n \r\n \t\t\r\n \t\tfilter.open(new RawDocument(input, \"UTF-8\", locEN));\r\n \t\t\r\n \t\ttestEvent(EventType.START_DOCUMENT, null);\r\n \t\t\r\n \t\t// Line 1\r\n \t\ttestEvent(EventType.START_GROUP, null);\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value11\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value12\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value13\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value14\");\t\t\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\t// Line 2\r\n \t\ttestEvent(EventType.START_GROUP, null);\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value21\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value22.1,Value22.2, Value22.3\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value23\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value24\");\t\t\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\t\t\r\n \t\t// Line 4-7\r\n \t\ttestEvent(EventType.START_GROUP, null);\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value31\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value32\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value33\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value34.1\\nValue34.2\\nValue34.3\\nValue34.4,Value34.5\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value35\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\t// Line 9-12\r\n \t\ttestEvent(EventType.START_GROUP, null);\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value41\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value42\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value43\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value44.1\\nValue44.2\\nValue44.3\\nValue44.4\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value45.1,Value45.2\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\t\t\r\n \t\t\r\n \t\t// Line 14-18\r\n \t\ttestEvent(EventType.START_GROUP, null);\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value51\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value52\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value53\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value54.1\\nValue54.2\\nValue54.3\\nValue54.4,Value55.1,Value55.2\\nValue55.3,Value55.4\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\t// Line 20-25\r\n \t\ttestEvent(EventType.START_GROUP, null);\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value61\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value62\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value63\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value64.1\\nValue64.2\\nValue64.3\\nValue64.4,Value65.1,Value65.2\\nValue65.3,Value65.4\\n\" +\r\n \t\t\t\t\"Value65.5,Value66\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\t\t\r\n \t\t// -------------------------------------------------\r\n \t\t\r\n \t\t// Line 27-31\r\n \t\ttestEvent(EventType.START_GROUP, null);\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value71\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value72 aaa quoted part 1, then quoted part 2 value,Value73,Value74\\n\" +\r\n \t\t\t\t\"Value81,Value82 with unclosed quote\\nValue91,Value92\\nValueA1,ValueA2\\nValueB1\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueB2,ValueB3\");\t\t// If quotation marks are not around field, preserve them \r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueB4\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\t// Line 32\r\n \t\ttestEvent(EventType.START_GROUP, null);\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC1\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC2\");\t\t \r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC3\");\t\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC4\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC5\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\ttestEvent(EventType.END_DOCUMENT, null);\r\n \t\tfilter.close();\r\n \t\t\r\n \t\t\r\n \t\t// Unwrap lines\r\n \t\tinput = TableFilterTest.class.getResourceAsStream(\"/csv_test3.txt\");\r\n \t\tassertNotNull(input);\r\n \t\t\r\n \t\tparams.wrapMode = WrapMode.SPACES; // !!!\r\n \t\tfilter.open(new RawDocument(input, \"UTF-8\", locEN));\r\n \t\t\r\n \t\ttestEvent(EventType.START_DOCUMENT, null);\r\n \t\t\r\n \t\t// Line 1\r\n \t\ttestEvent(EventType.START_GROUP, null);\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value11\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value12\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value13\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value14\");\t\t\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\t// Line 2\r\n \t\ttestEvent(EventType.START_GROUP, null);\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value21\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value22.1,Value22.2, Value22.3\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value23\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value24\");\t\t\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\t\t\r\n \t\t// Line 4-7\r\n \t\ttestEvent(EventType.START_GROUP, null);\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value31\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value32\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value33\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value34.1 Value34.2 Value34.3 Value34.4,Value34.5\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value35\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\t// Line 9-12\r\n \t\ttestEvent(EventType.START_GROUP, null);\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value41\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value42\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value43\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value44.1 Value44.2 Value44.3 Value44.4\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value45.1,Value45.2\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\t\t\r\n \t\t\r\n \t\t// Line 14-18\r\n \t\ttestEvent(EventType.START_GROUP, null);\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value51\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value52\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value53\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value54.1 Value54.2 Value54.3 Value54.4,Value55.1,Value55.2 Value55.3,Value55.4\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\t// Line 20\r\n \t\t// Line 20-25\r\n \t\ttestEvent(EventType.START_GROUP, null);\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value61\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value62\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value63\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value64.1 Value64.2 Value64.3 Value64.4,Value65.1,Value65.2 Value65.3,Value65.4 \" +\r\n \t\t\t\t\"Value65.5,Value66\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t// -------------------------------------------------\r\n \t\t\r\n \t\t// Line 27-31\r\n \t\ttestEvent(EventType.START_GROUP, null);\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value71\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"Value72 aaa quoted part 1, then quoted part 2 value,Value73,Value74 \" +\r\n \t\t\t\t\"Value81,Value82 with unclosed quote Value91,Value92 ValueA1,ValueA2 ValueB1\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueB2,ValueB3\");\t\t// If quotation marks are not around field, preserve them \r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueB4\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\t// Line 32\r\n \t\ttestEvent(EventType.START_GROUP, null);\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC1\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC2\");\t\t \r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC3\");\t\t\t\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC4\");\r\n \t\ttestEvent(EventType.TEXT_UNIT, \"ValueC5\");\r\n \t\ttestEvent(EventType.END_GROUP, null);\r\n \t\t\r\n \t\ttestEvent(EventType.END_DOCUMENT, null);\r\n \t\tfilter.close();\r\n \t}", "private int getColumnNumber(@NonNull String contents, int offset) {\n String preContents = contents.substring(0, offset);\n String[] preLines = preContents.split(\"\\n\");\n int lastIndex = preLines.length -1;\n return preContents.endsWith(\"\\n\") ? 0 : preLines[lastIndex].length();\n }", "public final void entryRuleActivity() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:118:1: ( ruleActivity EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:119:1: ruleActivity EOF\n {\n before(grammarAccess.getActivityRule()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_entryRuleActivity181);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getActivityRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleActivity188); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public abstract void appendReportEntryValues(ReportRow entry);", "public final void entryRuleExpression() throws RecognitionException {\n try {\n // InternalBrowser.g:254:1: ( ruleExpression EOF )\n // InternalBrowser.g:255:1: ruleExpression EOF\n {\n before(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_1);\n ruleExpression();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void importUserMadeTable(BufferedReader br) {\r\n\t\tString line;\r\n\t\tTable table = null;\r\n\t\ttry {\r\n\t\t\tString tableName = br.readLine();\r\n\t\t\ttable = new Table(tableName);\r\n\t\t\tint[] types = convertTypes(br.readLine().split(\",\"));\r\n\t\t\tString[] names = br.readLine().split(\",\");\r\n\t\t\tassert (types.length == names.length);\r\n\t\t\tfor (int i = 0 ; i < types.length; i++) {\r\n\t\t\t\ttable.newAttribute(names[i], types[i]);\r\n\t\t\t}\r\n\t\t\twhile ((line = br.readLine()) != null) {\r\n\t\t\t\tString[] entries = line.split(\",\");\r\n\t\t\t\tfor (int i = 0; i < entries.length; i++) {\r\n\t\t\t\t\tif (!table.getAttributes(i + 1).checkType(entries[i]))\r\n\t\t\t\t\t\tentries[i] = \"--\";\r\n\t\t\t\t}\r\n\t\t\t\ttable.newEntry(entries);\r\n\t\t\t}\r\n\t\t\tbr.close();\r\n\t\t} catch (IOException e) {\r\n\t\t\te.printStackTrace();\r\n\t\t\ttable.delete();\r\n\t\t}\r\n\t}", "public static void printResultsFromCSV() {\n try (CSVReader reader = new CSVReader(new FileReader(\"results.csv\"), ',', '\"', 0)) {\n Map<String, Integer> results = new HashMap<>();\n String[] nextLine;\n while ((nextLine = reader.readNext()) != null) {\n if (nextLine[0].contains(\"http\")) {\n results.put(nextLine[0], Integer.valueOf(nextLine[1]));\n }\n }\n results.\n entrySet().\n stream().\n sorted(Map.Entry.<String, Integer>comparingByValue().reversed()).\n forEach(entry -> System.out.println(entry.getKey() + \", \" + entry.getValue()));\n } catch (IOException e) {\n System.err.println(\"Can't find results.csv\");\n }\n }", "protected abstract int getNumRecords();", "public final void entryRuleNatural() throws RecognitionException {\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2033:1: ( ruleNatural EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2034:1: ruleNatural EOF\n {\n before(grammarAccess.getNaturalRule()); \n pushFollow(FOLLOW_ruleNatural_in_entryRuleNatural3841);\n ruleNatural();\n\n state._fsp--;\n\n after(grammarAccess.getNaturalRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleNatural3848); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Override\n public int writeDataRow(String exportId, int maxRetryCount, int retryTimeout, InputStream inputStream, int noOfChunks, String chunkId, int[] mapcols, int columnCount, String separator)\n throws AnaplanAPIException, SQLException {\n if (jdbcConfig.getJdbcConnectionUrl().length() > MAX_ALLOWED_CONNECTION_STRING_LENGTH) {\n throw new InvalidParameterException(\"JDBC connection string cannot be more than \" + MAX_ALLOWED_CONNECTION_STRING_LENGTH + \" characters in length!\");\n }\n try {\n LineNumberReader lnr = new LineNumberReader(\n new InputStreamReader(inputStream));\n String line;\n List rowBatch = new ArrayList<>();\n while (null != (line = lnr.readLine())) {\n String[] row;\n //ignore the header\n if (lnr.getLineNumber() == 1 && chunkId.equals(\"0\")) {\n LOG.info(\"Export {} to database started successfully\", exportId);\n } else {\n //adding a fix to handle the case when the chunk ends with a complete record\n if (lnr.getLineNumber() == 1 && !(chunkId.equals(\"0\"))) {\n String temp = lastRow.concat(line);\n if (temp.split(separator).length == columnCount) {\n line = temp;\n } else {\n row = lastRow.split(separator);\n rowBatch.add(row);\n }\n }\n row = line.split(separator);\n rowBatch.add(row);\n lastRow = line;\n if (++batch_records % batch_size == 0) {\n ++batch_no;\n //for this batch, code should have dummy values to bypass the check for chunkId and no of chunks\n // chunkId is being sent as 1 and no of chunks as 2 to bypass the check\n batchExecution(rowBatch, columnCount, mapcols, \"1\", 2, maxRetryCount, retryTimeout);\n rowBatch = new ArrayList<>(); //reset temoRowList\n batch_records = 0;\n }\n }\n }\n //Check to make sure it is not the last chunk\n //removing the last record so that it can be processed in the next chunk\n if (Integer.parseInt(chunkId) != noOfChunks - 1 && rowBatch.size() > 0) {\n rowBatch.remove(rowBatch.size() - 1);\n }\n //transfer the last batch when all of the lines from inputstream have been read\n ++batch_no;\n batchExecution(rowBatch, columnCount, mapcols, chunkId, noOfChunks, maxRetryCount, retryTimeout);\n batch_records = 0;\n //batch update exceptions captured to determine the committed and failed records\n } catch (Exception e) {\n LOG.debug(\"Error observed : {}\", e.getStackTrace());\n throw new AnaplanAPIException(e.getMessage());\n } finally {\n if (preparedStatement != null) {\n if (!preparedStatement.isClosed())\n preparedStatement.close();\n }\n }\n return datarowstransferred;\n }" ]
[ "0.61716235", "0.5791068", "0.54517335", "0.51554435", "0.50763106", "0.491948", "0.4871171", "0.48669058", "0.48238468", "0.47886997", "0.47291547", "0.4706528", "0.46924594", "0.46427196", "0.45813552", "0.45579576", "0.4518392", "0.44715878", "0.44547856", "0.44527748", "0.43763813", "0.43426555", "0.43021265", "0.42753038", "0.42593244", "0.42235032", "0.42148215", "0.4201489", "0.4191862", "0.41847616", "0.4154406", "0.41501287", "0.41439262", "0.41376382", "0.41369963", "0.41257793", "0.41172284", "0.40819743", "0.40765437", "0.4076441", "0.40576175", "0.40569004", "0.40564054", "0.40414533", "0.40413052", "0.40340185", "0.40339905", "0.40336248", "0.40334463", "0.40316617", "0.40270132", "0.40244046", "0.401392", "0.40103266", "0.39980236", "0.39785293", "0.39527544", "0.3952648", "0.39392662", "0.3933483", "0.39297202", "0.39242247", "0.39193645", "0.38987753", "0.38928694", "0.38813856", "0.38799176", "0.3879164", "0.38782126", "0.38780183", "0.38750818", "0.38745496", "0.38738772", "0.38736475", "0.3866572", "0.3865689", "0.38584316", "0.38545114", "0.38532653", "0.3852009", "0.3848268", "0.38461295", "0.38369355", "0.3836141", "0.38355827", "0.383468", "0.38329118", "0.38317013", "0.3827451", "0.3826979", "0.38141483", "0.38118875", "0.3811078", "0.3802844", "0.37938982", "0.37935847", "0.379109", "0.37887433", "0.37850425", "0.37835637" ]
0.7362814
0
$ANTLR end "entryRuleNbRow" $ANTLR start "ruleNbRow" InternalCsv.g:213:1: ruleNbRow : ( ( rule__NbRow__Group__0 ) ) ;
public final void ruleNbRow() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:217:2: ( ( ( rule__NbRow__Group__0 ) ) ) // InternalCsv.g:218:2: ( ( rule__NbRow__Group__0 ) ) { // InternalCsv.g:218:2: ( ( rule__NbRow__Group__0 ) ) // InternalCsv.g:219:3: ( rule__NbRow__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getNbRowAccess().getGroup()); } // InternalCsv.g:220:3: ( rule__NbRow__Group__0 ) // InternalCsv.g:220:4: rule__NbRow__Group__0 { pushFollow(FOLLOW_2); rule__NbRow__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getNbRowAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__NbRow__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1558:1: ( ( 'nbrow' ) )\n // InternalCsv.g:1559:1: ( 'nbrow' )\n {\n // InternalCsv.g:1559:1: ( 'nbrow' )\n // InternalCsv.g:1560:2: 'nbrow'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbrowKeyword_1()); \n }\n match(input,24,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbrowKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1519:1: ( rule__NbRow__Group__0__Impl rule__NbRow__Group__1 )\n // InternalCsv.g:1520:2: rule__NbRow__Group__0__Impl rule__NbRow__Group__1\n {\n pushFollow(FOLLOW_21);\n rule__NbRow__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleNbRow() throws RecognitionException {\n try {\n // InternalCsv.g:205:1: ( ruleNbRow EOF )\n // InternalCsv.g:206:1: ruleNbRow EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowRule()); \n }\n pushFollow(FOLLOW_1);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__NbRow__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1531:1: ( ( () ) )\n // InternalCsv.g:1532:1: ( () )\n {\n // InternalCsv.g:1532:1: ( () )\n // InternalCsv.g:1533:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n // InternalCsv.g:1534:2: ()\n // InternalCsv.g:1534:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1546:1: ( rule__NbRow__Group__1__Impl rule__NbRow__Group__2 )\n // InternalCsv.g:1547:2: rule__NbRow__Group__1__Impl rule__NbRow__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbRow__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1573:1: ( rule__NbRow__Group__2__Impl )\n // InternalCsv.g:1574:2: rule__NbRow__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleNbCol() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:242:2: ( ( ( rule__NbCol__Group__0 ) ) )\n // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) )\n {\n // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) )\n // InternalCsv.g:244:3: ( rule__NbCol__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getGroup()); \n }\n // InternalCsv.g:245:3: ( rule__NbCol__Group__0 )\n // InternalCsv.g:245:4: rule__NbCol__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1600:1: ( rule__NbCol__Group__0__Impl rule__NbCol__Group__1 )\n // InternalCsv.g:1601:2: rule__NbCol__Group__0__Impl rule__NbCol__Group__1\n {\n pushFollow(FOLLOW_22);\n rule__NbCol__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1584:1: ( ( ( rule__NbRow__OpenAssignment_2 ) ) )\n // InternalCsv.g:1585:1: ( ( rule__NbRow__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1585:1: ( ( rule__NbRow__OpenAssignment_2 ) )\n // InternalCsv.g:1586:2: ( rule__NbRow__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1587:2: ( rule__NbRow__OpenAssignment_2 )\n // InternalCsv.g:1587:3: rule__NbRow__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1639:1: ( ( 'nbcol' ) )\n // InternalCsv.g:1640:1: ( 'nbcol' )\n {\n // InternalCsv.g:1640:1: ( 'nbcol' )\n // InternalCsv.g:1641:2: 'nbcol'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbcolKeyword_1()); \n }\n match(input,25,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbcolKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1627:1: ( rule__NbCol__Group__1__Impl rule__NbCol__Group__2 )\n // InternalCsv.g:1628:2: rule__NbCol__Group__1__Impl rule__NbCol__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbCol__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleNbCol() throws RecognitionException {\n try {\n // InternalCsv.g:230:1: ( ruleNbCol EOF )\n // InternalCsv.g:231:1: ruleNbCol EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColRule()); \n }\n pushFollow(FOLLOW_1);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__NbCol__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1612:1: ( ( () ) )\n // InternalCsv.g:1613:1: ( () )\n {\n // InternalCsv.g:1613:1: ( () )\n // InternalCsv.g:1614:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n // InternalCsv.g:1615:2: ()\n // InternalCsv.g:1615:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleNumberLiteral() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1501:2: ( ( ( rule__NumberLiteral__Group__0 ) ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1502:1: ( ( rule__NumberLiteral__Group__0 ) )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1502:1: ( ( rule__NumberLiteral__Group__0 ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1503:1: ( rule__NumberLiteral__Group__0 )\n {\n before(grammarAccess.getNumberLiteralAccess().getGroup()); \n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1504:1: ( rule__NumberLiteral__Group__0 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1504:2: rule__NumberLiteral__Group__0\n {\n pushFollow(FOLLOW_rule__NumberLiteral__Group__0_in_ruleNumberLiteral3154);\n rule__NumberLiteral__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getNumberLiteralAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1654:1: ( rule__NbCol__Group__2__Impl )\n // InternalCsv.g:1655:2: rule__NbCol__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NumberLiteral__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:8898:1: ( rule__NumberLiteral__Group__0__Impl rule__NumberLiteral__Group__1 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:8899:2: rule__NumberLiteral__Group__0__Impl rule__NumberLiteral__Group__1\n {\n pushFollow(FOLLOW_rule__NumberLiteral__Group__0__Impl_in_rule__NumberLiteral__Group__017839);\n rule__NumberLiteral__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__NumberLiteral__Group__1_in_rule__NumberLiteral__Group__017842);\n rule__NumberLiteral__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleBTable() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:116:2: ( ( ( rule__BTable__Group__0 ) ) )\n // InternalBSQL2Java.g:117:2: ( ( rule__BTable__Group__0 ) )\n {\n // InternalBSQL2Java.g:117:2: ( ( rule__BTable__Group__0 ) )\n // InternalBSQL2Java.g:118:3: ( rule__BTable__Group__0 )\n {\n before(grammarAccess.getBTableAccess().getGroup()); \n // InternalBSQL2Java.g:119:3: ( rule__BTable__Group__0 )\n // InternalBSQL2Java.g:119:4: rule__BTable__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getBTableAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleTableInstance() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:341:2: ( ( ( rule__TableInstance__Group__0 ) ) )\n // InternalBSQL2Java.g:342:2: ( ( rule__TableInstance__Group__0 ) )\n {\n // InternalBSQL2Java.g:342:2: ( ( rule__TableInstance__Group__0 ) )\n // InternalBSQL2Java.g:343:3: ( rule__TableInstance__Group__0 )\n {\n before(grammarAccess.getTableInstanceAccess().getGroup()); \n // InternalBSQL2Java.g:344:3: ( rule__TableInstance__Group__0 )\n // InternalBSQL2Java.g:344:4: rule__TableInstance__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__TableInstance__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTableInstanceAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getNrow(){\r\n \treturn this.nrow;\r\n \t}", "public final void ruleImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:130:2: ( ( ( rule__Import__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:132:1: ( rule__Import__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:1: ( rule__Import__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:2: rule__Import__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport220);\r\n rule__Import__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__NbRow__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3810:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n // InternalCsv.g:3812:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3813:3: ( RULE_ID )\n // InternalCsv.g:3814:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:103:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:105:1: ( rule__Import__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:1: ( rule__Import__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport160);\n rule__Import__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleIndex() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2592:2: ( ( ( rule__Index__Group__0 ) ) )\r\n // InternalGo.g:2593:2: ( ( rule__Index__Group__0 ) )\r\n {\r\n // InternalGo.g:2593:2: ( ( rule__Index__Group__0 ) )\r\n // InternalGo.g:2594:3: ( rule__Index__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIndexAccess().getGroup()); \r\n }\r\n // InternalGo.g:2595:3: ( rule__Index__Group__0 )\r\n // InternalGo.g:2595:4: rule__Index__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Index__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIndexAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XNumberLiteral__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:13950:1: ( rule__XNumberLiteral__Group__0__Impl rule__XNumberLiteral__Group__1 )\r\n // InternalDroneScript.g:13951:2: rule__XNumberLiteral__Group__0__Impl rule__XNumberLiteral__Group__1\r\n {\r\n pushFollow(FOLLOW_94);\r\n rule__XNumberLiteral__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XNumberLiteral__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXNumberLiteral() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1742:2: ( ( ( rule__XNumberLiteral__Group__0 ) ) )\r\n // InternalDroneScript.g:1743:2: ( ( rule__XNumberLiteral__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1743:2: ( ( rule__XNumberLiteral__Group__0 ) )\r\n // InternalDroneScript.g:1744:3: ( rule__XNumberLiteral__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXNumberLiteralAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1745:3: ( rule__XNumberLiteral__Group__0 )\r\n // InternalDroneScript.g:1745:4: rule__XNumberLiteral__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XNumberLiteral__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXNumberLiteralAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XNumberLiteral__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14477:1: ( rule__XNumberLiteral__Group__0__Impl rule__XNumberLiteral__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14478:2: rule__XNumberLiteral__Group__0__Impl rule__XNumberLiteral__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__XNumberLiteral__Group__0__Impl_in_rule__XNumberLiteral__Group__029329);\r\n rule__XNumberLiteral__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XNumberLiteral__Group__1_in_rule__XNumberLiteral__Group__029332);\r\n rule__XNumberLiteral__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Number__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15633:1: ( ( ( rule__Number__Group_1_1__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15634:1: ( ( rule__Number__Group_1_1__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15634:1: ( ( rule__Number__Group_1_1__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15635:1: ( rule__Number__Group_1_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberAccess().getGroup_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15636:1: ( rule__Number__Group_1_1__0 )?\r\n int alt99=2;\r\n int LA99_0 = input.LA(1);\r\n\r\n if ( (LA99_0==37) ) {\r\n int LA99_1 = input.LA(2);\r\n\r\n if ( ((LA99_1>=RULE_INT && LA99_1<=RULE_DECIMAL)) ) {\r\n alt99=1;\r\n }\r\n }\r\n switch (alt99) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15636:2: rule__Number__Group_1_1__0\r\n {\r\n pushFollow(FOLLOW_rule__Number__Group_1_1__0_in_rule__Number__Group_1__1__Impl31605);\r\n rule__Number__Group_1_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberAccess().getGroup_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXNumberLiteral() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1601:2: ( ( ( rule__XNumberLiteral__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1602:1: ( ( rule__XNumberLiteral__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1602:1: ( ( rule__XNumberLiteral__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1603:1: ( rule__XNumberLiteral__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXNumberLiteralAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1604:1: ( rule__XNumberLiteral__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1604:2: rule__XNumberLiteral__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__XNumberLiteral__Group__0_in_ruleXNumberLiteral3364);\r\n rule__XNumberLiteral__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXNumberLiteralAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Program__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:383:1: ( ( ( ( '\\\\n' ) ) ( ( '\\\\n' )* ) ) )\n // InternalWh.g:384:1: ( ( ( '\\\\n' ) ) ( ( '\\\\n' )* ) )\n {\n // InternalWh.g:384:1: ( ( ( '\\\\n' ) ) ( ( '\\\\n' )* ) )\n // InternalWh.g:385:2: ( ( '\\\\n' ) ) ( ( '\\\\n' )* )\n {\n // InternalWh.g:385:2: ( ( '\\\\n' ) )\n // InternalWh.g:386:3: ( '\\\\n' )\n {\n before(grammarAccess.getProgramAccess().getLineFeedKeyword_1()); \n // InternalWh.g:387:3: ( '\\\\n' )\n // InternalWh.g:387:4: '\\\\n'\n {\n match(input,15,FOLLOW_5); \n\n }\n\n after(grammarAccess.getProgramAccess().getLineFeedKeyword_1()); \n\n }\n\n // InternalWh.g:390:2: ( ( '\\\\n' )* )\n // InternalWh.g:391:3: ( '\\\\n' )*\n {\n before(grammarAccess.getProgramAccess().getLineFeedKeyword_1()); \n // InternalWh.g:392:3: ( '\\\\n' )*\n loop4:\n do {\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==15) ) {\n alt4=1;\n }\n\n\n switch (alt4) {\n \tcase 1 :\n \t // InternalWh.g:392:4: '\\\\n'\n \t {\n \t match(input,15,FOLLOW_5); \n\n \t }\n \t break;\n\n \tdefault :\n \t break loop4;\n }\n } while (true);\n\n after(grammarAccess.getProgramAccess().getLineFeedKeyword_1()); \n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:241:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:243:1: ( rule__Import__Group__0 )\n {\n before(grammarAccess.getImportAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:1: ( rule__Import__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport454);\n rule__Import__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getImportAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Number__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15156:1: ( ( ( rule__Number__Group_1_1__0 )? ) )\r\n // InternalDroneScript.g:15157:1: ( ( rule__Number__Group_1_1__0 )? )\r\n {\r\n // InternalDroneScript.g:15157:1: ( ( rule__Number__Group_1_1__0 )? )\r\n // InternalDroneScript.g:15158:2: ( rule__Number__Group_1_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberAccess().getGroup_1_1()); \r\n }\r\n // InternalDroneScript.g:15159:2: ( rule__Number__Group_1_1__0 )?\r\n int alt115=2;\r\n int LA115_0 = input.LA(1);\r\n\r\n if ( (LA115_0==43) ) {\r\n int LA115_1 = input.LA(2);\r\n\r\n if ( ((LA115_1>=RULE_INT && LA115_1<=RULE_DECIMAL)) ) {\r\n alt115=1;\r\n }\r\n }\r\n switch (alt115) {\r\n case 1 :\r\n // InternalDroneScript.g:15159:3: rule__Number__Group_1_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Number__Group_1_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberAccess().getGroup_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__NumberLiteral__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:8927:1: ( rule__NumberLiteral__Group__1__Impl )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:8928:2: rule__NumberLiteral__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__NumberLiteral__Group__1__Impl_in_rule__NumberLiteral__Group__117900);\n rule__NumberLiteral__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRULE_TABLE_ROW() throws RecognitionException {\n try {\n int _type = RULE_TABLE_ROW;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalCucumber.g:2587:16: ( '|' ( (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|' )+ ( ' ' | '\\\\t' )* RULE_NL )\n // InternalCucumber.g:2587:18: '|' ( (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|' )+ ( ' ' | '\\\\t' )* RULE_NL\n {\n match('|'); \n // InternalCucumber.g:2587:22: ( (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|' )+\n int cnt9=0;\n loop9:\n do {\n int alt9=2;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n \tcase 1 :\n \t // InternalCucumber.g:2587:23: (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|'\n \t {\n \t // InternalCucumber.g:2587:23: (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )*\n \t loop8:\n \t do {\n \t int alt8=2;\n \t int LA8_0 = input.LA(1);\n\n \t if ( ((LA8_0>='\\u0000' && LA8_0<='\\t')||(LA8_0>='\\u000B' && LA8_0<='\\f')||(LA8_0>='\\u000E' && LA8_0<='{')||(LA8_0>='}' && LA8_0<='\\uFFFF')) ) {\n \t alt8=1;\n \t }\n\n\n \t switch (alt8) {\n \t \tcase 1 :\n \t \t // InternalCucumber.g:2587:23: ~ ( ( '|' | '\\\\n' | '\\\\r' ) )\n \t \t {\n \t \t if ( (input.LA(1)>='\\u0000' && input.LA(1)<='\\t')||(input.LA(1)>='\\u000B' && input.LA(1)<='\\f')||(input.LA(1)>='\\u000E' && input.LA(1)<='{')||(input.LA(1)>='}' && input.LA(1)<='\\uFFFF') ) {\n \t \t input.consume();\n\n \t \t }\n \t \t else {\n \t \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t \t recover(mse);\n \t \t throw mse;}\n\n\n \t \t }\n \t \t break;\n\n \t \tdefault :\n \t \t break loop8;\n \t }\n \t } while (true);\n\n \t match('|'); \n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt9 >= 1 ) break loop9;\n EarlyExitException eee =\n new EarlyExitException(9, input);\n throw eee;\n }\n cnt9++;\n } while (true);\n\n // InternalCucumber.g:2587:49: ( ' ' | '\\\\t' )*\n loop10:\n do {\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0=='\\t'||LA10_0==' ') ) {\n alt10=1;\n }\n\n\n switch (alt10) {\n \tcase 1 :\n \t // InternalCucumber.g:\n \t {\n \t if ( input.LA(1)=='\\t'||input.LA(1)==' ' ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop10;\n }\n } while (true);\n\n mRULE_NL(); \n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void entryRuleNumber() throws RecognitionException {\r\n\r\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();\r\n\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1816:1: ( ruleNumber EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1817:1: ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumber_in_entryRuleNumber3816);\r\n ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumber3823); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \tmyHiddenTokenState.restore();\r\n\r\n }\r\n return ;\r\n }", "public Nheader(String groupId) {\r\n\t this.groupId = groupId;\r\n\t long id = ids.incrementAndGet();\r\n\t if (id > MAX_IDS) {\r\n\t \tids.set(0);\r\n\t }\r\n\t reqid = id ;//Long.parseLong(df.format(new Date())+id%MAX_IDS);\r\n\t}", "public AsciiDocWriter tableLineNN(Object... cells) { \r\n\t\tfor(int t=0;cells!=null && t<cells.length;t++) { if(cells[t]==null) { return this; }}\r\n\t\tnnl(); for(int i=0;cells!=null && i<cells.length;i++) { w(\"|\").w(cells[i]); } return nl(); \r\n\t}", "public final void entryRuleNumber() throws RecognitionException {\r\n \r\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();\r\n\r\n try {\r\n // InternalDroneScript.g:1958:1: ( ruleNumber EOF )\r\n // InternalDroneScript.g:1959:1: ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \tmyHiddenTokenState.restore();\r\n\r\n }\r\n return ;\r\n }", "@Override\n public int rowNumber() throws IOException {\n return recordNumber;\n }", "public final void rule__NbCol__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1665:1: ( ( ( rule__NbCol__OpenAssignment_2 ) ) )\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n // InternalCsv.g:1667:2: ( rule__NbCol__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1668:2: ( rule__NbCol__OpenAssignment_2 )\n // InternalCsv.g:1668:3: rule__NbCol__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:989:1: ( ( ')' ) )\n // InternalBSQL2Java.g:990:1: ( ')' )\n {\n // InternalBSQL2Java.g:990:1: ( ')' )\n // InternalBSQL2Java.g:991:2: ')'\n {\n before(grammarAccess.getBTableAccess().getRightParenthesisKeyword_6()); \n match(input,23,FOLLOW_2); \n after(grammarAccess.getBTableAccess().getRightParenthesisKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getTotalRowTopIndex(String rowTotalGroup) {\r\n for (int i=0; i<getCrosstabElement().getRowGroups().size(); ++i)\r\n {\r\n CrosstabGroup group = (CrosstabGroup)getCrosstabElement().getRowGroups().elementAt(i);\r\n if (group.getName().equals(rowTotalGroup))\r\n {\r\n return group.getTotalCell().getTopIndex();\r\n }\r\n }\r\n return findCell(\"\",\"\").getTopIndex();\r\n }", "public int getRowNumber() {\n\t\treturn rowNumber;\n\t}", "public final void ruleScript() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:117:2: ( ( ( rule__Script__Group__0 ) ) )\r\n // InternalDroneScript.g:118:2: ( ( rule__Script__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:118:2: ( ( rule__Script__Group__0 ) )\r\n // InternalDroneScript.g:119:3: ( rule__Script__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getScriptAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:120:3: ( rule__Script__Group__0 )\r\n // InternalDroneScript.g:120:4: rule__Script__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Script__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getScriptAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "GroupCell createGroupCell();", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleNumberExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleNumberExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1964:2: (iv_ruleNumberExpression= ruleNumberExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1965:2: iv_ruleNumberExpression= ruleNumberExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumberExpression_in_entryRuleNumberExpression4108);\r\n iv_ruleNumberExpression=ruleNumberExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumberExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberExpression4118); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public static Row createRow(String[] rowAsArray, int lineCount) {\n\n\t\t//Row is initialized to null so that we don't get an error if ININC is blank\n\t\t//Row object requires ININC number in constructor\n\t\tRow outputRow = new Row(lineCount);\n\n\t\t//First check if ININC column is empty for current row data\n\t\tif(rowAsArray[11].isEmpty()) {\n\t\t\tGUI.sendError(\"Error: ININC# does not exist for row \"+lineCount+\".\");\n\t\t}\n\t\telse {\n\t\t\t//If not, try to parse what is there\n\t\t\t//It should be a long integer\n\t\t\ttry {\n\t\t\t\toutputRow.setIninc(Long.parseLong(rowAsArray[11]));\n\t\t\t}\n\t\t\tcatch (NumberFormatException e) {\n\t\t\t\t//Otherwise we get an error and this row is set to invalid\n\t\t\t\t//A message is printed informing what the error is and the line in which the error occurred\n\t\t\t\tGUI.sendError(\"Error: ININC# is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\t\toutputRow.setValid(false);\n\t\t\t}\n\t\t}\n\n\n\t\t//try/catch for INPRTY\n\t\t//Any numerical values have to be parsed, which allows for an exception if the String is not numerical\n\t\t//The try/catch statements handle the NumberFormatException that could potentially be thrown\n\t\ttry {\n\t\t\toutputRow.setPriority((int) Double.parseDouble(rowAsArray[0]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\t//If there is not a valid number where there should be, print an error and set this row to invalid\n\t\t\t//Data in this row must be corrected in GUI to make it valid again\n\t\t\tGUI.sendError(\"Error: INPRTY is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\n\t\t//address block\n\t\t//error handling tbd\n\t\toutputRow.setAddress(rowAsArray[1].trim());\n\n\t\tif(rowAsArray[2] != null) {\n\t\t\toutputRow.setCross(rowAsArray[2].trim());\n\t\t}\n\t\telse {\n\t\t\toutputRow.setCross(\"\");\n\t\t}\n\t\t//end address block\n\n\n\t\t//Date block\n\t\t//DateTimeFormatter is created to specify format that we expect the date/time to be in\n\t\t//This is consistent with what is usually found in the Excel/CSV\n\t\t//If the date/time read from CSV is not able to be read by this formatter, an error will be thrown\n\t\t//And this line of data will not be included\n\t\tDateTimeFormatter dateAndTimeFormatter = DateTimeFormatter.ofPattern(\"M/d/yyyy H:mm[:ss]\");\n\t\ttry {\n\t\t\toutputRow.setDispatch(LocalDateTime.parse(rowAsArray[3].trim(), dateAndTimeFormatter));\n\t\t\toutputRow.setArrive(LocalDateTime.parse(rowAsArray[4].trim(), dateAndTimeFormatter));\n\t\t}\n\t\tcatch (DateTimeParseException e) {\n\t\t\tGUI.sendError(\"Error: could not parse dispatch and/or arrive time for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\t\t//See above comments about parsing numbers\n\t\t//This block attempts to parse the RESPONSE variable as a double\n\t\ttry {\n\t\t\toutputRow.setResponseDouble(Double.parseDouble(rowAsArray[5]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\tGUI.sendError(\"Error: RESPONSE is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\t\t//If parsing was successful, we can also check that the number parsed is still valid\n\t\t//Response time logically must be at least zero, so any negative response time results in a warning\n\t\t//Warning (as opposed to error) means the row will still be valid, but there is possibly something wrong with the data\n\t\tif(outputRow.getResponseDouble() < 0) {\n\t\t\tGUI.sendInfo(\"Warning: RESPONSE is invalid (less than zero) for row \"+lineCount+\".\");\n\t\t\tGUI.sendInfo(\"This will be overwritten by a manually calculated response time, but still worth noting.\");\n\t\t}\n\n\n\t\toutputRow.setStaffing(rowAsArray[6].trim());\n\t\t//Quick validation check to ensure Staffing is either Volunteer or Career Staffing\n\t\tif(outputRow.getStaffing().toLowerCase().compareTo(\"volunteer\") != 0 && outputRow.getStaffing().toLowerCase().compareTo(\"career staff\") != 0) {\n\t\t\tGUI.sendError(\"Error: Staffing is unexpected value (neither Volunteer nor Career Staffing) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\t\t//The following code ensures that the day of week is a valid day of week\n\t\t//Since is this isn't an entirely essential variable, a warning is thrown if day of week is invalid\n\t\t//Again, the data will still be included, but it does suggest there is an issue with it\n\t\toutputRow.setDay(rowAsArray[7].trim());\n\t\tswitch (outputRow.getDay().toLowerCase()) {\n\t\tcase \"monday\":\n\t\t\tbreak;\n\t\tcase \"tuesday\":\n\t\t\tbreak;\n\t\tcase \"wednesday\":\n\t\t\tbreak;\n\t\tcase \"thursday\":\n\t\t\tbreak;\n\t\tcase \"friday\":\n\t\t\tbreak;\n\t\tcase \"saturday\":\n\t\t\tbreak;\n\t\tcase \"sunday\":\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tGUI.sendError(\"Error: Day of Week is invalid for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t\tbreak;\n\t\t}\n\n\n\t\t//SSA validation moved to row class\n\t\toutputRow.setSsa(rowAsArray[8].trim());\n\n\t\t//Try/catch for district number to ensure data is numerical and avoid error causing crash\n\t\ttry {\n\t\t\toutputRow.setDistrict((int) Double.parseDouble(rowAsArray[9]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\tGUI.sendError(\"Error: District number is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\t\t//moved district number validation to row class\n\n\n\t\t//not sure about validation for these\n\t\toutputRow.setInori(rowAsArray[10].trim());\n\t\toutputRow.setInunit(rowAsArray[12].trim());\n\t\toutputRow.setInbdg(rowAsArray[13].trim());\n\t\toutputRow.setInitype(rowAsArray[14].trim());\n\n\n\t\t//INSECT variable is numerical so try/catch to avoid errors\n\t\ttry {\n\t\t\toutputRow.setInsect((int) Double.parseDouble(rowAsArray[15]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\tGUI.sendError(\"Error: INSECT is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\n\t\t//see above comments on numerical variables\n\t\ttry {\n\t\t\toutputRow.setCadinc(Long.parseLong(rowAsArray[16]));\n\t\t}\n\t\tcatch (NumberFormatException e) {\n\t\t\tGUI.sendError(\"Error: CAD_INC is invalid (not a number) for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\n\t\t//Service_type should be either FIRE or EMS\n\t\t//We can check this easily, if it is neither than throw an error and skip this row of data\n\t\t//Subject to change \n\t\tif(rowAsArray[17].compareTo(\"FIRE\") == 0) {\n\t\t\toutputRow.setServiceType(ServiceType.FIRE);\n\t\t}\n\t\telse if (rowAsArray[17].compareTo(\"EMS\") == 0) {\n\t\t\toutputRow.setServiceType(ServiceType.EMS);\n\t\t}\n\t\telse {\n\t\t\tGUI.sendError(\"Error: SERVICE_TYPE is invalid for row \"+lineCount+\".\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\n\t\toutputRow.setFua(rowAsArray[18].trim());\n\n\n\t\tif(outputRow.getDispatchTime() != null && outputRow.getArriveTime() != null) {\n\t\t\t//for calculating response time\n\t\t\t//first calculates total number of minutes between dispatch and arrive\n\t\t\tint responseTimeMinutesValue = (int) ChronoUnit.MINUTES.between(outputRow.getDispatchTime(), outputRow.getArriveTime());\n\t\t\tint responseTimeHoursValue = 0;\n\t\t\t//If minutes is 60 or greater, than response time is over an hour, so we have to account for that\n\t\t\twhile(responseTimeMinutesValue > 59) {\n\t\t\t\tresponseTimeMinutesValue -= 60;\n\t\t\t\tresponseTimeHoursValue++;\n\t\t\t}\n\t\t\t//Once hours and minutes are calculated, move on to seconds\n\t\t\tint responseTimeSecondsValue = (int) ChronoUnit.SECONDS.between(outputRow.getDispatchTime(), outputRow.getArriveTime());\n\t\t\t//Here we check to ensure that DISPATCH comes before ARRIVE, otherwise throw an error since we have a time traveler on our hands\n\t\t\tif(responseTimeSecondsValue < 0) {\n\t\t\t\tGUI.sendError(\"Error: Response time less than zero (calculated from Dispatch and Arrive) for row \"+lineCount+\".\");\t\n\t\t\t\toutputRow.setValid(false);\n\t\t\t}\n\t\t\t//Assuming that check passes, we can finalize the value of the seconds variable by calculating it modulo 60\n\t\t\tresponseTimeSecondsValue = responseTimeSecondsValue%60;\n\n\t\t\t//now make sure hours is 23 or less\n\t\t\tif(responseTimeHoursValue > 23) {\n\t\t\t\tresponseTimeHoursValue = 23;\n\t\t\t\tGUI.sendError(\"Error: Response time exceeds 1 day for row \"+lineCount+\". Response time value in table may not be accurate; check Dispatch and Arrival times.\");\n\t\t\t}\n\t\t\t//Then use the calculated variables for hours, minutes, and seconds to create the responseTime variable\n\t\t\tLocalTime responseTime = LocalTime.of(responseTimeHoursValue, responseTimeMinutesValue, responseTimeSecondsValue);\n\t\t\toutputRow.setResponseTime(responseTime);\n\t\t}\n\t\telse {\n\t\t\tGUI.sendError(\"Error: Dispatch and/or Response time are null for row \"+lineCount+\", so response time could not be calculated.\");\n\t\t\toutputRow.setValid(false);\n\t\t}\n\t\t//Now that all of the data has been imported into the Row object, return the Row object so it can be added to ArrayList\n\t\treturn outputRow;\n\t}", "public final void ruleInput() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:73:2: ( ( ( rule__Input__Group__0 ) ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:74:1: ( ( rule__Input__Group__0 ) )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:74:1: ( ( rule__Input__Group__0 ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:75:1: ( rule__Input__Group__0 )\r\n {\r\n before(grammarAccess.getInputAccess().getGroup()); \r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:76:1: ( rule__Input__Group__0 )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:76:2: rule__Input__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__0_in_ruleInput94);\r\n rule__Input__Group__0();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n after(grammarAccess.getInputAccess().getGroup()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setRowNo(Integer rowNo) {\n this.rowNo = rowNo;\n }", "public final String entryRuleNUMBER() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleNUMBER = null;\n\n\n try {\n // InternalMyDsl.g:3410:46: (iv_ruleNUMBER= ruleNUMBER EOF )\n // InternalMyDsl.g:3411:2: iv_ruleNUMBER= ruleNUMBER EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getNUMBERRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleNUMBER=ruleNUMBER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleNUMBER.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void synpred62_InternalGo_fragment() throws RecognitionException { \r\n // InternalGo.g:3969:2: ( ( ( rule__UnaryExpr__Group_0__0 ) ) )\r\n // InternalGo.g:3969:2: ( ( rule__UnaryExpr__Group_0__0 ) )\r\n {\r\n // InternalGo.g:3969:2: ( ( rule__UnaryExpr__Group_0__0 ) )\r\n // InternalGo.g:3970:3: ( rule__UnaryExpr__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getUnaryExprAccess().getGroup_0()); \r\n }\r\n // InternalGo.g:3971:3: ( rule__UnaryExpr__Group_0__0 )\r\n // InternalGo.g:3971:4: rule__UnaryExpr__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__UnaryExpr__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n }", "public final String entryRuleNumber() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleNumber = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5341:2: (iv_ruleNumber= ruleNumber EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5342:2: iv_ruleNumber= ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumber_in_entryRuleNumber12345);\r\n iv_ruleNumber=ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumber.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumber12356); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__BTable__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:816:1: ( rule__BTable__Group__0__Impl rule__BTable__Group__1 )\n // InternalBSQL2Java.g:817:2: rule__BTable__Group__0__Impl rule__BTable__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__BTable__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "String translateNumberGroup(int index, String number) throws NumberReaderException;", "public final void mRULE_NUMBER() throws RecognitionException {\n try {\n int _type = RULE_NUMBER;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:13: ( ( '0' .. '9' )+ )\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:15: ( '0' .. '9' )+\n {\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:15: ( '0' .. '9' )+\n int cnt6=0;\n loop6:\n do {\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( ((LA6_0>='0' && LA6_0<='9')) ) {\n alt6=1;\n }\n\n\n switch (alt6) {\n \tcase 1 :\n \t // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:16: '0' .. '9'\n \t {\n \t matchRange('0','9'); \n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt6 >= 1 ) break loop6;\n EarlyExitException eee =\n new EarlyExitException(6, input);\n throw eee;\n }\n cnt6++;\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__XNumberLiteral__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14489:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14490:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14490:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14491:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXNumberLiteralAccess().getXNumberLiteralAction_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14492:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14494:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXNumberLiteralAccess().getXNumberLiteralAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public int getRowNumber()\r\n\t{\r\n\t\treturn this.rowNumber;\r\n\t}", "public int getRowNum(){ return this.rowNum; }", "public void setRowNumber(int rowNumber) {\n this.rowNumber = rowNumber;\n }", "public int getRowNo() {\n return rowIndex+1;\n }", "public final void rule__BTable__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:897:1: ( rule__BTable__Group__3__Impl rule__BTable__Group__4 )\n // InternalBSQL2Java.g:898:2: rule__BTable__Group__3__Impl rule__BTable__Group__4\n {\n pushFollow(FOLLOW_3);\n rule__BTable__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleScan() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:367:2: ( ( ( rule__Scan__Group__0 ) ) )\r\n // InternalDroneScript.g:368:2: ( ( rule__Scan__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:368:2: ( ( rule__Scan__Group__0 ) )\r\n // InternalDroneScript.g:369:3: ( rule__Scan__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getScanAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:370:3: ( rule__Scan__Group__0 )\r\n // InternalDroneScript.g:370:4: rule__Scan__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Scan__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getScanAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setRowNumber(int number){\r\n\t\trowNumber = number;\r\n\t}", "public void setRowNumber(int number){\r\n\t\trowNumber = number;\r\n\t}", "public final void ruleReference() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:152:2: ( ( ( rule__Reference__Group__0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:153:1: ( ( rule__Reference__Group__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:153:1: ( ( rule__Reference__Group__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:154:1: ( rule__Reference__Group__0 )\n {\n before(grammarAccess.getReferenceAccess().getGroup()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:155:1: ( rule__Reference__Group__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:155:2: rule__Reference__Group__0\n {\n pushFollow(FOLLOW_rule__Reference__Group__0_in_ruleReference241);\n rule__Reference__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getReferenceAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void rule__BTable__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:978:1: ( rule__BTable__Group__6__Impl )\n // InternalBSQL2Java.g:979:2: rule__BTable__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:909:1: ( ( '(' ) )\n // InternalBSQL2Java.g:910:1: ( '(' )\n {\n // InternalBSQL2Java.g:910:1: ( '(' )\n // InternalBSQL2Java.g:911:2: '('\n {\n before(grammarAccess.getBTableAccess().getLeftParenthesisKeyword_3()); \n match(input,22,FOLLOW_2); \n after(grammarAccess.getBTableAccess().getLeftParenthesisKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleInput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:141:2: ( ( ( rule__Input__Group__0 ) ) )\n // InternalWh.g:142:2: ( ( rule__Input__Group__0 ) )\n {\n // InternalWh.g:142:2: ( ( rule__Input__Group__0 ) )\n // InternalWh.g:143:3: ( rule__Input__Group__0 )\n {\n before(grammarAccess.getInputAccess().getGroup()); \n // InternalWh.g:144:3: ( rule__Input__Group__0 )\n // InternalWh.g:144:4: rule__Input__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleTab() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:157:2: ( ( ( rule__Tab__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:158:1: ( ( rule__Tab__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:158:1: ( ( rule__Tab__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:159:1: ( rule__Tab__Group__0 )\n {\n before(grammarAccess.getTabAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:160:1: ( rule__Tab__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:160:2: rule__Tab__Group__0\n {\n pushFollow(FOLLOW_rule__Tab__Group__0_in_ruleTab274);\n rule__Tab__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTabAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Number__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3381:1: ( ( RULE_HEX ) | ( ( rule__Number__Group_1__0 ) ) )\r\n int alt37=2;\r\n int LA37_0 = input.LA(1);\r\n\r\n if ( (LA37_0==RULE_HEX) ) {\r\n alt37=1;\r\n }\r\n else if ( ((LA37_0>=RULE_INT && LA37_0<=RULE_DECIMAL)) ) {\r\n alt37=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 37, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt37) {\r\n case 1 :\r\n // InternalDroneScript.g:3382:2: ( RULE_HEX )\r\n {\r\n // InternalDroneScript.g:3382:2: ( RULE_HEX )\r\n // InternalDroneScript.g:3383:3: RULE_HEX\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberAccess().getHEXTerminalRuleCall_0()); \r\n }\r\n match(input,RULE_HEX,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberAccess().getHEXTerminalRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3388:2: ( ( rule__Number__Group_1__0 ) )\r\n {\r\n // InternalDroneScript.g:3388:2: ( ( rule__Number__Group_1__0 ) )\r\n // InternalDroneScript.g:3389:3: ( rule__Number__Group_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberAccess().getGroup_1()); \r\n }\r\n // InternalDroneScript.g:3390:3: ( rule__Number__Group_1__0 )\r\n // InternalDroneScript.g:3390:4: rule__Number__Group_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Number__Group_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Konto__Group__6__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3806:1: ( ( ( rule__Konto__KtoNrAssignment_6 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3807:1: ( ( rule__Konto__KtoNrAssignment_6 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3807:1: ( ( rule__Konto__KtoNrAssignment_6 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3808:1: ( rule__Konto__KtoNrAssignment_6 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getKontoAccess().getKtoNrAssignment_6()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3809:1: ( rule__Konto__KtoNrAssignment_6 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3809:2: rule__Konto__KtoNrAssignment_6\r\n {\r\n pushFollow(FOLLOW_rule__Konto__KtoNrAssignment_6_in_rule__Konto__Group__6__Impl8366);\r\n rule__Konto__KtoNrAssignment_6();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getKontoAccess().getKtoNrAssignment_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleRanking() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRanking = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:834:2: (iv_ruleRanking= ruleRanking EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:835:2: iv_ruleRanking= ruleRanking EOF\n {\n newCompositeNode(grammarAccess.getRankingRule()); \n pushFollow(FollowSets000.FOLLOW_ruleRanking_in_entryRuleRanking1651);\n iv_ruleRanking=ruleRanking();\n\n state._fsp--;\n\n current =iv_ruleRanking; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleRanking1661); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public static int getNameMapRowNumber(RConnection RC) {\n try {\n return RC.eval(\"GetHitsRowNumber(NA)\").asInteger();\n } catch (Exception e) {\n e.printStackTrace();\n }\n return 0;\n }", "public final void rule__XNumberLiteral__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:13962:1: ( ( () ) )\r\n // InternalDroneScript.g:13963:1: ( () )\r\n {\r\n // InternalDroneScript.g:13963:1: ( () )\r\n // InternalDroneScript.g:13964:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXNumberLiteralAccess().getXNumberLiteralAction_0()); \r\n }\r\n // InternalDroneScript.g:13965:2: ()\r\n // InternalDroneScript.g:13965:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXNumberLiteralAccess().getXNumberLiteralAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public int getRowHeight(String rowTotalGroup) {\r\n int tmpHeight = -1;\r\n for (int i=0; i< getCrosstabElement().getCells().size(); ++i) {\r\n CrosstabCell cell = (CrosstabCell) getCrosstabElement().getCells().elementAt(i);\r\n if (cell.getType() == cell.DETAIL_CELL &&\r\n cell.getRowTotalGroup().equals(rowTotalGroup) &&\r\n cell.getHeight() > tmpHeight) {\r\n tmpHeight = cell.getHeight();\r\n }\r\n }\r\n\r\n if (tmpHeight < 0 && !rowTotalGroup.equals(\"\"))\r\n {\r\n return getRowHeight(\"\");\r\n }\r\n else if (tmpHeight < 0 && rowTotalGroup.equals(\"\"))\r\n {\r\n return 0;\r\n }\r\n\r\n return tmpHeight;\r\n }", "public final void rule__BTable__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:951:1: ( rule__BTable__Group__5__Impl rule__BTable__Group__6 )\n // InternalBSQL2Java.g:952:2: rule__BTable__Group__5__Impl rule__BTable__Group__6\n {\n pushFollow(FOLLOW_15);\n rule__BTable__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static int getGeneNameMapRowNumber(RConnection RC) {\n try {\n return RC.eval(\"GetGeneHitsRowNumber(NA)\").asInteger();\n } catch (Exception e) {\n e.printStackTrace();\n }\n return 0;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Number__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15118:1: ( rule__Number__Group_1__0__Impl rule__Number__Group_1__1 )\r\n // InternalDroneScript.g:15119:2: rule__Number__Group_1__0__Impl rule__Number__Group_1__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__Number__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__Number__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__BTable__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:870:1: ( rule__BTable__Group__2__Impl rule__BTable__Group__3 )\n // InternalBSQL2Java.g:871:2: rule__BTable__Group__2__Impl rule__BTable__Group__3\n {\n pushFollow(FOLLOW_14);\n rule__BTable__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleInput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:416:2: ( ( ( rule__Input__Group__0 ) ) )\n // InternalBrowser.g:417:2: ( ( rule__Input__Group__0 ) )\n {\n // InternalBrowser.g:417:2: ( ( rule__Input__Group__0 ) )\n // InternalBrowser.g:418:3: ( rule__Input__Group__0 )\n {\n before(grammarAccess.getInputAccess().getGroup()); \n // InternalBrowser.g:419:3: ( rule__Input__Group__0 )\n // InternalBrowser.g:419:4: rule__Input__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePosition() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:417:2: ( ( ( rule__Position__Group__0 ) ) )\r\n // InternalDroneScript.g:418:2: ( ( rule__Position__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:418:2: ( ( rule__Position__Group__0 ) )\r\n // InternalDroneScript.g:419:3: ( rule__Position__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getPositionAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:420:3: ( rule__Position__Group__0 )\r\n // InternalDroneScript.g:420:4: rule__Position__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Position__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getPositionAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "protected void setTableGroup(int num)\n\t\t{\n\t\t\tGroup = num ;\n\t\t}", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setRowNumber(int rowNumber) {\n\t\tthis.rowNumber = rowNumber;\n\t}", "public final void ruleBPredicate() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:291:2: ( ( ( rule__BPredicate__Group__0 ) ) )\n // InternalBSQL2Java.g:292:2: ( ( rule__BPredicate__Group__0 ) )\n {\n // InternalBSQL2Java.g:292:2: ( ( rule__BPredicate__Group__0 ) )\n // InternalBSQL2Java.g:293:3: ( rule__BPredicate__Group__0 )\n {\n before(grammarAccess.getBPredicateAccess().getGroup()); \n // InternalBSQL2Java.g:294:3: ( rule__BPredicate__Group__0 )\n // InternalBSQL2Java.g:294:4: rule__BPredicate__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__BPredicate__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getBPredicateAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2563:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2564:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__05516);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__05519);\n rule__Import__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleExpression() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2367:2: ( ( ( rule__Expression__Group__0 ) ) )\r\n // InternalGo.g:2368:2: ( ( rule__Expression__Group__0 ) )\r\n {\r\n // InternalGo.g:2368:2: ( ( rule__Expression__Group__0 ) )\r\n // InternalGo.g:2369:3: ( rule__Expression__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionAccess().getGroup()); \r\n }\r\n // InternalGo.g:2370:3: ( rule__Expression__Group__0 )\r\n // InternalGo.g:2370:4: rule__Expression__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Expression__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleNumberLiteral() throws RecognitionException {\n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1489:1: ( ruleNumberLiteral EOF )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1490:1: ruleNumberLiteral EOF\n {\n before(grammarAccess.getNumberLiteralRule()); \n pushFollow(FOLLOW_ruleNumberLiteral_in_entryRuleNumberLiteral3121);\n ruleNumberLiteral();\n\n state._fsp--;\n\n after(grammarAccess.getNumberLiteralRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberLiteral3128); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XNumberLiteral__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14508:1: ( rule__XNumberLiteral__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14509:2: rule__XNumberLiteral__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XNumberLiteral__Group__1__Impl_in_rule__XNumberLiteral__Group__129390);\r\n rule__XNumberLiteral__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XNumberLiteral__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:13977:1: ( rule__XNumberLiteral__Group__1__Impl )\r\n // InternalDroneScript.g:13978:2: rule__XNumberLiteral__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XNumberLiteral__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Konto__Group__9() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3883:1: ( rule__Konto__Group__9__Impl rule__Konto__Group__10 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3884:2: rule__Konto__Group__9__Impl rule__Konto__Group__10\r\n {\r\n pushFollow(FOLLOW_rule__Konto__Group__9__Impl_in_rule__Konto__Group__98518);\r\n rule__Konto__Group__9__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Konto__Group__10_in_rule__Konto__Group__98521);\r\n rule__Konto__Group__10();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Number__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15593:1: ( rule__Number__Group_1__0__Impl rule__Number__Group_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15594:2: rule__Number__Group_1__0__Impl rule__Number__Group_1__1\r\n {\r\n pushFollow(FOLLOW_rule__Number__Group_1__0__Impl_in_rule__Number__Group_1__031518);\r\n rule__Number__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Number__Group_1__1_in_rule__Number__Group_1__031521);\r\n rule__Number__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleContinueStmt() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1317:2: ( ( ( rule__ContinueStmt__Group__0 ) ) )\r\n // InternalGo.g:1318:2: ( ( rule__ContinueStmt__Group__0 ) )\r\n {\r\n // InternalGo.g:1318:2: ( ( rule__ContinueStmt__Group__0 ) )\r\n // InternalGo.g:1319:3: ( rule__ContinueStmt__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getContinueStmtAccess().getGroup()); \r\n }\r\n // InternalGo.g:1320:3: ( rule__ContinueStmt__Group__0 )\r\n // InternalGo.g:1320:4: rule__ContinueStmt__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ContinueStmt__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getContinueStmtAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleColumn() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:185:2: ( ( ( rule__Column__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:186:1: ( ( rule__Column__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:186:1: ( ( rule__Column__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:187:1: ( rule__Column__Group__0 )\n {\n before(grammarAccess.getColumnAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:188:1: ( rule__Column__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:188:2: rule__Column__Group__0\n {\n pushFollow(FOLLOW_rule__Column__Group__0_in_ruleColumn334);\n rule__Column__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getColumnAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public Integer getRowNo() {\n return rowNo;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3549:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3550:2: rule__Import__Group__0__Impl rule__Import__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__07845);\r\n rule__Import__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__07848);\r\n rule__Import__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleExpressionStmt() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1742:2: ( ( ( rule__ExpressionStmt__Group__0 ) ) )\r\n // InternalGo.g:1743:2: ( ( rule__ExpressionStmt__Group__0 ) )\r\n {\r\n // InternalGo.g:1743:2: ( ( rule__ExpressionStmt__Group__0 ) )\r\n // InternalGo.g:1744:3: ( rule__ExpressionStmt__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionStmtAccess().getGroup()); \r\n }\r\n // InternalGo.g:1745:3: ( rule__ExpressionStmt__Group__0 )\r\n // InternalGo.g:1745:4: rule__ExpressionStmt__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ExpressionStmt__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionStmtAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstNetwork__Group__9() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4616:1: ( rule__AstNetwork__Group__9__Impl rule__AstNetwork__Group__10 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4617:2: rule__AstNetwork__Group__9__Impl rule__AstNetwork__Group__10\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group__9__Impl_in_rule__AstNetwork__Group__99840);\n rule__AstNetwork__Group__9__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstNetwork__Group__10_in_rule__AstNetwork__Group__99843);\n rule__AstNetwork__Group__10();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4062:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4063:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__08733);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__08736);\n rule__Import__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.78401154", "0.7518289", "0.7457818", "0.7153122", "0.71281314", "0.6458789", "0.64478815", "0.5878476", "0.5838364", "0.5614701", "0.54141957", "0.5328211", "0.52799946", "0.5142906", "0.506058", "0.4928987", "0.48397008", "0.4810483", "0.47655997", "0.46897653", "0.4684053", "0.46501485", "0.4613168", "0.46077758", "0.4560524", "0.4558904", "0.45112267", "0.44827572", "0.44770536", "0.4472935", "0.44674158", "0.44634986", "0.44631585", "0.4451194", "0.44244644", "0.44219628", "0.44214135", "0.44018796", "0.43988472", "0.43967316", "0.43878868", "0.4387551", "0.437667", "0.4354434", "0.43473887", "0.4339363", "0.4328582", "0.4303397", "0.4293404", "0.42884836", "0.4288135", "0.42866927", "0.42822927", "0.42741126", "0.42699826", "0.42679214", "0.42573932", "0.42560962", "0.4253968", "0.4250778", "0.42491093", "0.42432624", "0.42419407", "0.42419407", "0.42341495", "0.42286718", "0.4224971", "0.42206186", "0.4219035", "0.42144808", "0.4198115", "0.41971046", "0.41939822", "0.41935647", "0.41835538", "0.41756025", "0.41695377", "0.41620383", "0.4152911", "0.4148033", "0.41335064", "0.41271076", "0.41244677", "0.4120584", "0.4115381", "0.41023374", "0.4102117", "0.40982935", "0.40951446", "0.40939823", "0.4092175", "0.40755925", "0.40702188", "0.40664336", "0.4062603", "0.4061582", "0.40537265", "0.40503865", "0.40432632", "0.40393424" ]
0.8448867
0
$ANTLR end "ruleNbRow" $ANTLR start "entryRuleNbCol" InternalCsv.g:229:1: entryRuleNbCol : ruleNbCol EOF ;
public final void entryRuleNbCol() throws RecognitionException { try { // InternalCsv.g:230:1: ( ruleNbCol EOF ) // InternalCsv.g:231:1: ruleNbCol EOF { if ( state.backtracking==0 ) { before(grammarAccess.getNbColRule()); } pushFollow(FOLLOW_1); ruleNbCol(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getNbColRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleNbRow() throws RecognitionException {\n try {\n // InternalCsv.g:205:1: ( ruleNbRow EOF )\n // InternalCsv.g:206:1: ruleNbRow EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowRule()); \n }\n pushFollow(FOLLOW_1);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleNbCol() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:242:2: ( ( ( rule__NbCol__Group__0 ) ) )\n // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) )\n {\n // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) )\n // InternalCsv.g:244:3: ( rule__NbCol__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getGroup()); \n }\n // InternalCsv.g:245:3: ( rule__NbCol__Group__0 )\n // InternalCsv.g:245:4: rule__NbCol__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleNbRow() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:217:2: ( ( ( rule__NbRow__Group__0 ) ) )\n // InternalCsv.g:218:2: ( ( rule__NbRow__Group__0 ) )\n {\n // InternalCsv.g:218:2: ( ( rule__NbRow__Group__0 ) )\n // InternalCsv.g:219:3: ( rule__NbRow__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getGroup()); \n }\n // InternalCsv.g:220:3: ( rule__NbRow__Group__0 )\n // InternalCsv.g:220:4: rule__NbRow__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1639:1: ( ( 'nbcol' ) )\n // InternalCsv.g:1640:1: ( 'nbcol' )\n {\n // InternalCsv.g:1640:1: ( 'nbcol' )\n // InternalCsv.g:1641:2: 'nbcol'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbcolKeyword_1()); \n }\n match(input,25,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbcolKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleColumn() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:173:1: ( ruleColumn EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:174:1: ruleColumn EOF\n {\n before(grammarAccess.getColumnRule()); \n pushFollow(FOLLOW_ruleColumn_in_entryRuleColumn301);\n ruleColumn();\n\n state._fsp--;\n\n after(grammarAccess.getColumnRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleColumn308); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final String entryRuleNumber() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleNumber = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5341:2: (iv_ruleNumber= ruleNumber EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5342:2: iv_ruleNumber= ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumber_in_entryRuleNumber12345);\r\n iv_ruleNumber=ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumber.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumber12356); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final String entryRuleNUMBER() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleNUMBER = null;\n\n\n try {\n // InternalMyDsl.g:3410:46: (iv_ruleNUMBER= ruleNUMBER EOF )\n // InternalMyDsl.g:3411:2: iv_ruleNUMBER= ruleNUMBER EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getNUMBERRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleNUMBER=ruleNUMBER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleNUMBER.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__NbRow__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1558:1: ( ( 'nbrow' ) )\n // InternalCsv.g:1559:1: ( 'nbrow' )\n {\n // InternalCsv.g:1559:1: ( 'nbrow' )\n // InternalCsv.g:1560:2: 'nbrow'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbrowKeyword_1()); \n }\n match(input,24,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbrowKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleNumberExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleNumberExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1964:2: (iv_ruleNumberExpression= ruleNumberExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1965:2: iv_ruleNumberExpression= ruleNumberExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumberExpression_in_entryRuleNumberExpression4108);\r\n iv_ruleNumberExpression=ruleNumberExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumberExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberExpression4118); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleNumber() throws RecognitionException {\r\n\r\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();\r\n\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1816:1: ( ruleNumber EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1817:1: ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumber_in_entryRuleNumber3816);\r\n ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumber3823); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \tmyHiddenTokenState.restore();\r\n\r\n }\r\n return ;\r\n }", "public final void rule__NbCol__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1600:1: ( rule__NbCol__Group__0__Impl rule__NbCol__Group__1 )\n // InternalCsv.g:1601:2: rule__NbCol__Group__0__Impl rule__NbCol__Group__1\n {\n pushFollow(FOLLOW_22);\n rule__NbCol__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleNUMBER_LITERAL() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleNUMBER_LITERAL = null;\n\n\n try {\n // InternalMyDsl.g:10086:54: (iv_ruleNUMBER_LITERAL= ruleNUMBER_LITERAL EOF )\n // InternalMyDsl.g:10087:2: iv_ruleNUMBER_LITERAL= ruleNUMBER_LITERAL EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getNUMBER_LITERALRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleNUMBER_LITERAL=ruleNUMBER_LITERAL();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleNUMBER_LITERAL.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__NbCol__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1627:1: ( rule__NbCol__Group__1__Impl rule__NbCol__Group__2 )\n // InternalCsv.g:1628:2: rule__NbCol__Group__1__Impl rule__NbCol__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbCol__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1546:1: ( rule__NbRow__Group__1__Impl rule__NbRow__Group__2 )\n // InternalCsv.g:1547:2: rule__NbRow__Group__1__Impl rule__NbRow__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbRow__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private int getColumnNumber(@NonNull String contents, int offset) {\n String preContents = contents.substring(0, offset);\n String[] preLines = preContents.split(\"\\n\");\n int lastIndex = preLines.length -1;\n return preContents.endsWith(\"\\n\") ? 0 : preLines[lastIndex].length();\n }", "public final void entryRuleNumber() throws RecognitionException {\r\n \r\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();\r\n\r\n try {\r\n // InternalDroneScript.g:1958:1: ( ruleNumber EOF )\r\n // InternalDroneScript.g:1959:1: ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \tmyHiddenTokenState.restore();\r\n\r\n }\r\n return ;\r\n }", "public final void rule__NbRow__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3810:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n // InternalCsv.g:3812:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3813:3: ( RULE_ID )\n // InternalCsv.g:3814:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1519:1: ( rule__NbRow__Group__0__Impl rule__NbRow__Group__1 )\n // InternalCsv.g:1520:2: rule__NbRow__Group__0__Impl rule__NbRow__Group__1\n {\n pushFollow(FOLLOW_21);\n rule__NbRow__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleNumberLiteral() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleNumberLiteral = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4232:2: (iv_ruleNumberLiteral= ruleNumberLiteral EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4233:2: iv_ruleNumberLiteral= ruleNumberLiteral EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberLiteralRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumberLiteral_in_entryRuleNumberLiteral9097);\r\n iv_ruleNumberLiteral=ruleNumberLiteral();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumberLiteral; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberLiteral9107); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__NbCol__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1612:1: ( ( () ) )\n // InternalCsv.g:1613:1: ( () )\n {\n // InternalCsv.g:1613:1: ( () )\n // InternalCsv.g:1614:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n // InternalCsv.g:1615:2: ()\n // InternalCsv.g:1615:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleNumberLiteral() throws RecognitionException {\n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1489:1: ( ruleNumberLiteral EOF )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1490:1: ruleNumberLiteral EOF\n {\n before(grammarAccess.getNumberLiteralRule()); \n pushFollow(FOLLOW_ruleNumberLiteral_in_entryRuleNumberLiteral3121);\n ruleNumberLiteral();\n\n state._fsp--;\n\n after(grammarAccess.getNumberLiteralRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberLiteral3128); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public int getColumnNumber()\n {\n return parser.getColumnNumber();\n }", "public final void entryRuleExpr() throws RecognitionException {\n try {\n // InternalWh.g:279:1: ( ruleExpr EOF )\n // InternalWh.g:280:1: ruleExpr EOF\n {\n before(grammarAccess.getExprRule()); \n pushFollow(FOLLOW_1);\n ruleExpr();\n\n state._fsp--;\n\n after(grammarAccess.getExprRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public Pair<Integer,Integer> countNewlines(int column,String lexeme)\n\t{\n \tif(lexeme.equals(\"\")) return Pair.cons(0,-1);\n\t\tint startIndex = -1,nlCount = -1;\n\t\twhile(startIndex != 0)\n\t\t{\n\t\t\tnlCount++;\n\t\t\tstartIndex = lexeme.indexOf('\\n',startIndex) + 1;\n\t\t}\n\t\tint lastStartIndex = lexeme.lastIndexOf('\\n') + 1;\n\t\tint columnCount = lastStartIndex == 0 ? column : 0;\n\t\tfor(startIndex = lexeme.indexOf('\\t',lastStartIndex);startIndex != -1;startIndex = lexeme.indexOf('\\t',lastStartIndex))\n\t\t{\n\t\t\tcolumnCount += startIndex - lastStartIndex;\n\t\t\tcolumnCount += tabStop - (columnCount % tabStop);\n\t\t\tlastStartIndex = startIndex + 1;\n\t\t}\n\t\tcolumnCount += lexeme.length() - lastStartIndex;\n\t\t\n\t\t//int pastNewline = ((lexeme.lastIndexOf('\\n') == -1) ? column + lexeme.length() : (lexeme.length() - (lexeme.lastIndexOf('\\n') + 1)));\n\t\t// DEBUG-X-BEGIN\n\t\t//System.err.println(\"Lexeme '\" + lexeme + \"' --- Newline count: \" + nlCount + \"; last newline: \" + pastNewline);\n\t\t// DEBUG-X-END\n\t\treturn Pair.cons(nlCount,columnCount);\n\t}", "public final void rule__NbCol__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3829:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n // InternalCsv.g:3831:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3832:3: ( RULE_ID )\n // InternalCsv.g:3833:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleTn() throws RecognitionException {\n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:341:1: ( ruleTn EOF )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:342:1: ruleTn EOF\n {\n before(grammarAccess.getTnRule()); \n pushFollow(FOLLOW_ruleTn_in_entryRuleTn661);\n ruleTn();\n\n state._fsp--;\n\n after(grammarAccess.getTnRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleTn668); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "private int getColumn(double lng) {\r\n\t\tif (lng <= mbr.minLng()) {\r\n\t\t\treturn 0;\r\n\t\t}\r\n\t\tif (lng >= mbr.maxLng()) {\r\n\t\t\treturn nCol - 1;\r\n\t\t}\r\n\t\treturn (int) ((lng - mbr.minLng()) / cellSize);\r\n\t}", "public final void mRULE_NUMBER() throws RecognitionException {\n try {\n int _type = RULE_NUMBER;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:13: ( ( '0' .. '9' )+ )\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:15: ( '0' .. '9' )+\n {\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:15: ( '0' .. '9' )+\n int cnt6=0;\n loop6:\n do {\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( ((LA6_0>='0' && LA6_0<='9')) ) {\n alt6=1;\n }\n\n\n switch (alt6) {\n \tcase 1 :\n \t // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:16: '0' .. '9'\n \t {\n \t matchRange('0','9'); \n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt6 >= 1 ) break loop6;\n EarlyExitException eee =\n new EarlyExitException(6, input);\n throw eee;\n }\n cnt6++;\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void entryRuleExpression() throws RecognitionException {\n try {\n // InternalBrowser.g:254:1: ( ruleExpression EOF )\n // InternalBrowser.g:255:1: ruleExpression EOF\n {\n before(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_1);\n ruleExpression();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__NbRow__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1531:1: ( ( () ) )\n // InternalCsv.g:1532:1: ( () )\n {\n // InternalCsv.g:1532:1: ( () )\n // InternalCsv.g:1533:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n // InternalCsv.g:1534:2: ()\n // InternalCsv.g:1534:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getColumnAmount(BufferedReader br) {\n\n String rowStr;\n\n try {\n //Get into string\n rowStr = br.readLine();\n\n //Split into 1D array\n columns = rowStr.split(\"\\t\");\n\n } catch (IOException e) {\n e.printStackTrace();\n }\n //Return number of elements -1 for id column\n return columns.length - 1;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpression = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2467:2: (iv_ruleExpression= ruleExpression EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2468:2: iv_ruleExpression= ruleExpression EOF\n {\n currentNode = createCompositeNode(grammarAccess.getExpressionRule(), currentNode); \n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression4256);\n iv_ruleExpression=ruleExpression();\n _fsp--;\n\n current =iv_ruleExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression4266); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleNumberFunction() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleNumberFunction = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2983:2: (iv_ruleNumberFunction= ruleNumberFunction EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2984:2: iv_ruleNumberFunction= ruleNumberFunction EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberFunctionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumberFunction_in_entryRuleNumberFunction6317);\r\n iv_ruleNumberFunction=ruleNumberFunction();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumberFunction; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberFunction6327); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleField() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:201:1: ( ruleField EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:202:1: ruleField EOF\n {\n before(grammarAccess.getFieldRule()); \n pushFollow(FOLLOW_ruleField_in_entryRuleField361);\n ruleField();\n\n state._fsp--;\n\n after(grammarAccess.getFieldRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleField368); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2060:2: (iv_ruleExpression= ruleExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:2061:2: iv_ruleExpression= ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression4369);\r\n iv_ruleExpression=ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression4379); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleRanking() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRanking = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:834:2: (iv_ruleRanking= ruleRanking EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:835:2: iv_ruleRanking= ruleRanking EOF\n {\n newCompositeNode(grammarAccess.getRankingRule()); \n pushFollow(FollowSets000.FOLLOW_ruleRanking_in_entryRuleRanking1651);\n iv_ruleRanking=ruleRanking();\n\n state._fsp--;\n\n current =iv_ruleRanking; \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleRanking1661); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "private void endRow() throws TableFormatException {\n if ( readCol == 0 ) {\n return;\n }\n int nrow = rows.size();\n if ( nrow == 1 ) {\n ncol = ((List) rows.get( 0 )).size();\n }\n else if ( readCol != ncol ) {\n throw new TableFormatException( \n \"Column number mismatch in row \" + ( nrow - 1 ) +\n \" (\" + readCol + \" != \" + ncol + \")\" );\n }\n readCol = 0;\n }", "public final void entryRuleExpression() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2355:1: ( ruleExpression EOF )\r\n // InternalGo.g:2356:1: ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleEntry() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:62:1: ( ruleEntry EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:63:1: ruleEntry EOF\n {\n before(grammarAccess.getEntryRule()); \n pushFollow(FollowSets000.FOLLOW_ruleEntry_in_entryRuleEntry61);\n ruleEntry();\n _fsp--;\n\n after(grammarAccess.getEntryRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleEntry68); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "private int getCharacterColumnNumber(char character) { \t\n if(Character.isUpperCase(character))\n return 1;\n else if(Character.isLowerCase(character))\n return 2;\n else if(Character.isDigit(character))\n return 3;\n else if(Character.isWhitespace(character))\n return 0;\n else if (this.columnHashTable.get(character) != null)\n return this.columnHashTable.get(character);\n else\n return 24;\t\n }", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleType = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2094:2: (iv_ruleType= ruleType EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2095:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FOLLOW_ruleType_in_entryRuleType4992);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleType5002); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public static void countRowCol(){\n\t String line=\"\";\n\t row=0;\n\t col=0;\n try{\n Scanner reader = new Scanner(file);\n while(reader.hasNextLine()){\n row++;\n line=reader.nextLine();\n }\n reader.close();\n }catch (FileNotFoundException e) {\n \t e.printStackTrace();\n }\n String[] seperatedRow = line.split(\"\\t\");\n col=seperatedRow.length;\n\t}", "public final EObject entryRuleField() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleField = null;\n\n\n try {\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:211:2: (iv_ruleField= ruleField EOF )\n // ../org.xtext.example.helloscoping/src-gen/org/xtext/example/helloscoping/parser/antlr/internal/InternalHelloScoping.g:212:2: iv_ruleField= ruleField EOF\n {\n newCompositeNode(grammarAccess.getFieldRule()); \n pushFollow(FOLLOW_ruleField_in_entryRuleField374);\n iv_ruleField=ruleField();\n\n state._fsp--;\n\n current =iv_ruleField; \n match(input,EOF,FOLLOW_EOF_in_entryRuleField384); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpression = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:3793:2: (iv_ruleExpression= ruleExpression EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:3794:2: iv_ruleExpression= ruleExpression EOF\n {\n newCompositeNode(grammarAccess.getExpressionRule()); \n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression8462);\n iv_ruleExpression=ruleExpression();\n\n state._fsp--;\n\n current =iv_ruleExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression8472); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleIndex() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2580:1: ( ruleIndex EOF )\r\n // InternalGo.g:2581:1: ruleIndex EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIndexRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleIndex();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIndexRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleExpressionStmt() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1730:1: ( ruleExpressionStmt EOF )\r\n // InternalGo.g:1731:1: ruleExpressionStmt EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionStmtRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExpressionStmt();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionStmtRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__NbCol__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1654:1: ( rule__NbCol__Group__2__Impl )\n // InternalCsv.g:1655:2: rule__NbCol__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleUnaryExpr() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2405:1: ( ruleUnaryExpr EOF )\r\n // InternalGo.g:2406:1: ruleUnaryExpr EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getUnaryExprRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleUnaryExpr();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getUnaryExprRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "private int parseRowValue(String value) {\n char number = value.charAt(1);\n if (!Character.isDigit(number)) {\n throw new IllegalArgumentException(\"Char '\" + number + \"' is not a number.\");\n }\n return Character.getNumericValue(number) - START_ROW;\n }", "public int getNcol(){\r\n \treturn this.ncol;\r\n \t}", "private int parseColumnValue(String value) {\n char letter = value.charAt(0);\n if (!Character.isLetter(letter)) {\n throw new IllegalArgumentException(\"Char '\" + letter + \"' is not a letter.\");\n }\n return letter - START_LETTER;\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleActivity() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:118:1: ( ruleActivity EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:119:1: ruleActivity EOF\n {\n before(grammarAccess.getActivityRule()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_entryRuleActivity181);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getActivityRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleActivity188); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final String entryRuleUPPER() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleUPPER = null;\n\n\n try {\n // InternalMyDsl.g:10134:45: (iv_ruleUPPER= ruleUPPER EOF )\n // InternalMyDsl.g:10135:2: iv_ruleUPPER= ruleUPPER EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getUPPERRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleUPPER=ruleUPPER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleUPPER.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public int getColumn(){ return (Integer)args[1]; }", "public AsciiDocWriter tableLineNN(Object... cells) { \r\n\t\tfor(int t=0;cells!=null && t<cells.length;t++) { if(cells[t]==null) { return this; }}\r\n\t\tnnl(); for(int i=0;cells!=null && i<cells.length;i++) { w(\"|\").w(cells[i]); } return nl(); \r\n\t}", "public int getColumn() { \n\t// * JFlex starts in zero\n\treturn yycolumn+1;\n}", "public final EObject entryRuleExpression_6() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_6_StartIndex = input.index();\n EObject iv_ruleExpression_6 = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 93) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4087:2: (iv_ruleExpression_6= ruleExpression_6 EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4088:2: iv_ruleExpression_6= ruleExpression_6 EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpression_6Rule()); \n }\n pushFollow(FOLLOW_ruleExpression_6_in_entryRuleExpression_68143);\n iv_ruleExpression_6=ruleExpression_6();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression_6; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression_68153); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 93, entryRuleExpression_6_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleRule() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleRule = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2736:2: (iv_ruleRule= ruleRule EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:2737:2: iv_ruleRule= ruleRule EOF\n {\n newCompositeNode(grammarAccess.getRuleRule()); \n pushFollow(FOLLOW_ruleRule_in_entryRuleRule6136);\n iv_ruleRule=ruleRule();\n\n state._fsp--;\n\n current =iv_ruleRule; \n match(input,EOF,FOLLOW_EOF_in_entryRuleRule6146); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final String entryRuleSTRING_OR_NUMBER() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleSTRING_OR_NUMBER = null;\n\n\n try {\n // InternalNgt.g:1749:56: (iv_ruleSTRING_OR_NUMBER= ruleSTRING_OR_NUMBER EOF )\n // InternalNgt.g:1750:2: iv_ruleSTRING_OR_NUMBER= ruleSTRING_OR_NUMBER EOF\n {\n newCompositeNode(grammarAccess.getSTRING_OR_NUMBERRule()); \n pushFollow(FOLLOW_1);\n iv_ruleSTRING_OR_NUMBER=ruleSTRING_OR_NUMBER();\n\n state._fsp--;\n\n current =iv_ruleSTRING_OR_NUMBER.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public int getColumn() { return cc; }", "public final EObject entryRuleEndExpression() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleEndExpression = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6159:2: (iv_ruleEndExpression= ruleEndExpression EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6160:2: iv_ruleEndExpression= ruleEndExpression EOF\n {\n currentNode = createCompositeNode(grammarAccess.getEndExpressionRule(), currentNode); \n pushFollow(FOLLOW_ruleEndExpression_in_entryRuleEndExpression10733);\n iv_ruleEndExpression=ruleEndExpression();\n _fsp--;\n\n current =iv_ruleEndExpression; \n match(input,EOF,FOLLOW_EOF_in_entryRuleEndExpression10743); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__NbRow__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1573:1: ( rule__NbRow__Group__2__Impl )\n // InternalCsv.g:1574:2: rule__NbRow__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "static int col(String sq) {\n return ((int) (sq.charAt(0) - 'a')) + 1;\n }", "public final EObject entryRuleIntType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleIntType = null;\n\n\n try {\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:360:2: (iv_ruleIntType= ruleIntType EOF )\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:361:2: iv_ruleIntType= ruleIntType EOF\n {\n newCompositeNode(grammarAccess.getIntTypeRule()); \n pushFollow(FOLLOW_ruleIntType_in_entryRuleIntType770);\n iv_ruleIntType=ruleIntType();\n\n state._fsp--;\n\n current =iv_ruleIntType; \n match(input,EOF,FOLLOW_EOF_in_entryRuleIntType780); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "static int row(String sq) {\n String s = sq.substring(1,2);\n return 9 - Integer.parseInt(s);\n }", "public final void entryRulePosition() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:405:1: ( rulePosition EOF )\r\n // InternalDroneScript.g:406:1: rulePosition EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getPositionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n rulePosition();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getPositionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final AstValidator.rank_col_return rank_col() throws RecognitionException {\n AstValidator.rank_col_return retval = new AstValidator.rank_col_return();\n retval.start = input.LT(1);\n\n\n CommonTree root_0 = null;\n\n CommonTree _first_0 = null;\n CommonTree _last = null;\n\n CommonTree set301=null;\n CommonTree set303=null;\n AstValidator.col_range_return col_range300 =null;\n\n AstValidator.col_ref_return col_ref302 =null;\n\n\n CommonTree set301_tree=null;\n CommonTree set303_tree=null;\n\n try {\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:483:10: ( col_range ( ASC | DESC )? | col_ref ( ASC | DESC )? )\n int alt81=2;\n int LA81_0 = input.LA(1);\n\n if ( (LA81_0==COL_RANGE) ) {\n alt81=1;\n }\n else if ( (LA81_0==CUBE||LA81_0==DOLLARVAR||LA81_0==GROUP||LA81_0==IDENTIFIER) ) {\n alt81=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return retval;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 81, 0, input);\n\n throw nvae;\n\n }\n switch (alt81) {\n case 1 :\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:483:12: col_range ( ASC | DESC )?\n {\n root_0 = (CommonTree)adaptor.nil();\n\n\n _last = (CommonTree)input.LT(1);\n pushFollow(FOLLOW_col_range_in_rank_col2517);\n col_range300=col_range();\n\n state._fsp--;\n if (state.failed) return retval;\n if ( state.backtracking==0 ) \n adaptor.addChild(root_0, col_range300.getTree());\n\n\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:483:22: ( ASC | DESC )?\n int alt79=2;\n int LA79_0 = input.LA(1);\n\n if ( (LA79_0==ASC||LA79_0==DESC) ) {\n alt79=1;\n }\n switch (alt79) {\n case 1 :\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:\n {\n _last = (CommonTree)input.LT(1);\n set301=(CommonTree)input.LT(1);\n\n if ( input.LA(1)==ASC||input.LA(1)==DESC ) {\n input.consume();\n if ( state.backtracking==0 ) {\n set301_tree = (CommonTree)adaptor.dupNode(set301);\n\n\n adaptor.addChild(root_0, set301_tree);\n }\n\n state.errorRecovery=false;\n state.failed=false;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return retval;}\n MismatchedSetException mse = new MismatchedSetException(null,input);\n throw mse;\n }\n\n\n }\n break;\n\n }\n\n\n if ( state.backtracking==0 ) {\n }\n }\n break;\n case 2 :\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:484:12: col_ref ( ASC | DESC )?\n {\n root_0 = (CommonTree)adaptor.nil();\n\n\n _last = (CommonTree)input.LT(1);\n pushFollow(FOLLOW_col_ref_in_rank_col2539);\n col_ref302=col_ref();\n\n state._fsp--;\n if (state.failed) return retval;\n if ( state.backtracking==0 ) \n adaptor.addChild(root_0, col_ref302.getTree());\n\n\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:484:20: ( ASC | DESC )?\n int alt80=2;\n int LA80_0 = input.LA(1);\n\n if ( (LA80_0==ASC||LA80_0==DESC) ) {\n alt80=1;\n }\n switch (alt80) {\n case 1 :\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:\n {\n _last = (CommonTree)input.LT(1);\n set303=(CommonTree)input.LT(1);\n\n if ( input.LA(1)==ASC||input.LA(1)==DESC ) {\n input.consume();\n if ( state.backtracking==0 ) {\n set303_tree = (CommonTree)adaptor.dupNode(set303);\n\n\n adaptor.addChild(root_0, set303_tree);\n }\n\n state.errorRecovery=false;\n state.failed=false;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return retval;}\n MismatchedSetException mse = new MismatchedSetException(null,input);\n throw mse;\n }\n\n\n }\n break;\n\n }\n\n\n if ( state.backtracking==0 ) {\n }\n }\n break;\n\n }\n if ( state.backtracking==0 ) {\n\n retval.tree = (CommonTree)adaptor.rulePostProcessing(root_0);\n }\n\n }\n\n catch(RecognitionException re) {\n throw re;\n }\n\n finally {\n \t// do for sure before leaving\n }\n return retval;\n }", "public final EObject entryRuleAnnotation() throws RecognitionException {\n EObject current = null;\n int entryRuleAnnotation_StartIndex = input.index();\n EObject iv_ruleAnnotation = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 145) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:6080:2: (iv_ruleAnnotation= ruleAnnotation EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:6081:2: iv_ruleAnnotation= ruleAnnotation EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getAnnotationRule()); \n }\n pushFollow(FOLLOW_ruleAnnotation_in_entryRuleAnnotation12439);\n iv_ruleAnnotation=ruleAnnotation();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleAnnotation; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleAnnotation12449); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 145, entryRuleAnnotation_StartIndex); }\n }\n return current;\n }", "public final String entryRuleEInt() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleEInt = null;\n\n\n try {\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1290:2: (iv_ruleEInt= ruleEInt EOF )\n // ../dk.itu.smdp.survey.xtext/src-gen/dk/itu/smdp/survey/xtext/parser/antlr/internal/InternalTaco.g:1291:2: iv_ruleEInt= ruleEInt EOF\n {\n newCompositeNode(grammarAccess.getEIntRule()); \n pushFollow(FollowSets000.FOLLOW_ruleEInt_in_entryRuleEInt2601);\n iv_ruleEInt=ruleEInt();\n\n state._fsp--;\n\n current =iv_ruleEInt.getText(); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleEInt2612); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleExpressions() throws RecognitionException {\n\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n\n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:892:1: ( ruleExpressions EOF )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:893:1: ruleExpressions EOF\n {\n before(grammarAccess.getExpressionsRule()); \n pushFollow(FOLLOW_ruleExpressions_in_entryRuleExpressions1650);\n ruleExpressions();\n\n state._fsp--;\n\n after(grammarAccess.getExpressionsRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleExpressions1657); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void entryRuleTab() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:145:1: ( ruleTab EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:146:1: ruleTab EOF\n {\n before(grammarAccess.getTabRule()); \n pushFollow(FOLLOW_ruleTab_in_entryRuleTab241);\n ruleTab();\n\n state._fsp--;\n\n after(grammarAccess.getTabRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleTab248); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleExpression() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_StartIndex = input.index();\n EObject iv_ruleExpression = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 81) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:3658:2: (iv_ruleExpression= ruleExpression EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:3659:2: iv_ruleExpression= ruleExpression EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpressionRule()); \n }\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression7279);\n iv_ruleExpression=ruleExpression();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression7289); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 81, entryRuleExpression_StartIndex); }\n }\n return current;\n }", "public final EObject entryRuleExpr() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleExpr = null;\n\n\n try {\n // InternalMyDsl.g:64:45: (iv_ruleExpr= ruleExpr EOF )\n // InternalMyDsl.g:65:2: iv_ruleExpr= ruleExpr EOF\n {\n newCompositeNode(grammarAccess.getExprRule()); \n pushFollow(FOLLOW_1);\n iv_ruleExpr=ruleExpr();\n\n state._fsp--;\n\n current =iv_ruleExpr; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleCount() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleCount = null;\n\n\n try {\n // InternalMyDsl.g:3299:46: (iv_ruleCount= ruleCount EOF )\n // InternalMyDsl.g:3300:2: iv_ruleCount= ruleCount EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getCountRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleCount=ruleCount();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleCount; \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "private int getSubjTypeIdx() {\n return this.colStartOffset + 6;\n }", "public final void entryRuleAstExpression() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1435:1: ( ruleAstExpression EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1436:1: ruleAstExpression EOF\n {\n before(grammarAccess.getAstExpressionRule()); \n pushFollow(FOLLOW_ruleAstExpression_in_entryRuleAstExpression3003);\n ruleAstExpression();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstExpression3010); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleExpression_9() throws RecognitionException {\n EObject current = null;\n int entryRuleExpression_9_StartIndex = input.index();\n EObject iv_ruleExpression_9 = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 99) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4321:2: (iv_ruleExpression_9= ruleExpression_9 EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:4322:2: iv_ruleExpression_9= ruleExpression_9 EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getExpression_9Rule()); \n }\n pushFollow(FOLLOW_ruleExpression_9_in_entryRuleExpression_98626);\n iv_ruleExpression_9=ruleExpression_9();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleExpression_9; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression_98636); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 99, entryRuleExpression_9_StartIndex); }\n }\n return current;\n }", "protected Integer getColumnIndex(String header){\n for (Map.Entry<String, Integer> entry: headerMap.entrySet()){\n if (header.toLowerCase().equals(entry.getKey().toLowerCase())) return entry.getValue();\n }\n return -1;\n }", "public final void mRULE_TABLE_ROW() throws RecognitionException {\n try {\n int _type = RULE_TABLE_ROW;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalCucumber.g:2587:16: ( '|' ( (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|' )+ ( ' ' | '\\\\t' )* RULE_NL )\n // InternalCucumber.g:2587:18: '|' ( (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|' )+ ( ' ' | '\\\\t' )* RULE_NL\n {\n match('|'); \n // InternalCucumber.g:2587:22: ( (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|' )+\n int cnt9=0;\n loop9:\n do {\n int alt9=2;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n \tcase 1 :\n \t // InternalCucumber.g:2587:23: (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )* '|'\n \t {\n \t // InternalCucumber.g:2587:23: (~ ( ( '|' | '\\\\n' | '\\\\r' ) ) )*\n \t loop8:\n \t do {\n \t int alt8=2;\n \t int LA8_0 = input.LA(1);\n\n \t if ( ((LA8_0>='\\u0000' && LA8_0<='\\t')||(LA8_0>='\\u000B' && LA8_0<='\\f')||(LA8_0>='\\u000E' && LA8_0<='{')||(LA8_0>='}' && LA8_0<='\\uFFFF')) ) {\n \t alt8=1;\n \t }\n\n\n \t switch (alt8) {\n \t \tcase 1 :\n \t \t // InternalCucumber.g:2587:23: ~ ( ( '|' | '\\\\n' | '\\\\r' ) )\n \t \t {\n \t \t if ( (input.LA(1)>='\\u0000' && input.LA(1)<='\\t')||(input.LA(1)>='\\u000B' && input.LA(1)<='\\f')||(input.LA(1)>='\\u000E' && input.LA(1)<='{')||(input.LA(1)>='}' && input.LA(1)<='\\uFFFF') ) {\n \t \t input.consume();\n\n \t \t }\n \t \t else {\n \t \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t \t recover(mse);\n \t \t throw mse;}\n\n\n \t \t }\n \t \t break;\n\n \t \tdefault :\n \t \t break loop8;\n \t }\n \t } while (true);\n\n \t match('|'); \n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt9 >= 1 ) break loop9;\n EarlyExitException eee =\n new EarlyExitException(9, input);\n throw eee;\n }\n cnt9++;\n } while (true);\n\n // InternalCucumber.g:2587:49: ( ' ' | '\\\\t' )*\n loop10:\n do {\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0=='\\t'||LA10_0==' ') ) {\n alt10=1;\n }\n\n\n switch (alt10) {\n \tcase 1 :\n \t // InternalCucumber.g:\n \t {\n \t if ( input.LA(1)=='\\t'||input.LA(1)==' ' ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop10;\n }\n } while (true);\n\n mRULE_NL(); \n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final EObject entryRuleNumberLiteralExpCS() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleNumberLiteralExpCS = null;\n\n\n try {\n // InternalMyDsl.g:6981:59: (iv_ruleNumberLiteralExpCS= ruleNumberLiteralExpCS EOF )\n // InternalMyDsl.g:6982:2: iv_ruleNumberLiteralExpCS= ruleNumberLiteralExpCS EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getNumberLiteralExpCSRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleNumberLiteralExpCS=ruleNumberLiteralExpCS();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleNumberLiteralExpCS; \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "int getColumnIndex();", "int getColumnIndex();", "int getColumnIndex();", "private int getNIdx() {\n return this.colStartOffset + 7;\n }", "private static void testLineAndColNums() throws IOException {\n\t// say what output is expected\n\tSystem.err.println(\"\\nTEST LINE AND CHAR NUMS\");\n\tSystem.err.println(\"BAD ESCAPED CHAR ON LINES 17, 18, 19, 19, 19\");\n\n\t// open input files\n\tFileReader inFile = null;\n\tjava.util.Scanner numsFile = null;\n\ttry {\n\t inFile = new FileReader(\"inTestNums\");\n\t numsFile = new java.util.Scanner (new File(\"expectedNums\"));\n\t} catch (FileNotFoundException ex) {\n\t System.err.println(\"File inTestNums or expectedNums not found.\");\n\t System.exit(-1);\n\t}\n\n\t// create and call the scanner\n\tYylex scanner = new Yylex(inFile);\n\tSymbol token = scanner.next_token();\n\twhile (token.sym != sym.EOF) {\n\t int linenum = numsFile.nextInt();\n\t int charnum = numsFile.nextInt();\n\t if (linenum != ((TokenVal)token.value).linenum) {\n\t\tSystem.err.println(\"Testing Line Nums; expected \" +\n\t\t\t\t linenum + \" but got \" +\n\t\t\t\t ((TokenVal)token.value).linenum);\n\t\tSystem.exit(-1);\n\t }\n\t if (charnum != ((TokenVal)token.value).charnum) {\n\t\tSystem.err.println(\"Testing Char Nums; expected \" +\n\t\t\t\t charnum + \" but got \" +\n\t\t\t\t ((TokenVal)token.value).charnum +\n\t\t\t\t \" on line \" + linenum);\n\t }\n\t token = scanner.next_token();\n\t}\n }", "public final EObject entryRuleTypeDef() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleTypeDef = null;\n\n\n try {\n // InternalNgt.g:1373:48: (iv_ruleTypeDef= ruleTypeDef EOF )\n // InternalNgt.g:1374:2: iv_ruleTypeDef= ruleTypeDef EOF\n {\n newCompositeNode(grammarAccess.getTypeDefRule()); \n pushFollow(FOLLOW_1);\n iv_ruleTypeDef=ruleTypeDef();\n\n state._fsp--;\n\n current =iv_ruleTypeDef; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleidColonne() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleidColonne = null;\n\n\n try {\n // InternalMyDsl.g:543:50: (iv_ruleidColonne= ruleidColonne EOF )\n // InternalMyDsl.g:544:2: iv_ruleidColonne= ruleidColonne EOF\n {\n newCompositeNode(grammarAccess.getIdColonneRule()); \n pushFollow(FOLLOW_1);\n iv_ruleidColonne=ruleidColonne();\n\n state._fsp--;\n\n current =iv_ruleidColonne; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "@Test\n public void testConvertColumnMarkToNumber() {\n Assertions.assertEquals(1, GameUtil.convertRowMarkToNumber(\"A\"), \"Test - A returns 1\");\n Assertions.assertEquals(2, GameUtil.convertRowMarkToNumber(\"B\"), \"Test - B returns 2\");\n Assertions.assertEquals(3, GameUtil.convertRowMarkToNumber(\"C\"), \"Test - C returns 3\");\n Assertions.assertEquals(27, GameUtil.convertRowMarkToNumber(\"AA\"), \"Test - A returns 27\");\n Assertions.assertEquals(703, GameUtil.convertRowMarkToNumber(\"AAA\"), \"Test - A returns 703\");\n Assertions.assertEquals(703, GameUtil.convertRowMarkToNumber(\"AAeA\"), \"Test - A returns 703\");\n Assertions.assertEquals(703, GameUtil.convertRowMarkToNumber(\"AA!A\"), \"Test - A returns 703\");\n Assertions.assertEquals(704, GameUtil.convertRowMarkToNumber(\"AAB\"), \"Test - A returns 704\");\n }", "public final void entryRuleNop() throws RecognitionException {\n try {\n // InternalWh.g:229:1: ( ruleNop EOF )\n // InternalWh.g:230:1: ruleNop EOF\n {\n before(grammarAccess.getNopRule()); \n pushFollow(FOLLOW_1);\n ruleNop();\n\n state._fsp--;\n\n after(grammarAccess.getNopRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleAstExpressionExp() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1715:1: ( ruleAstExpressionExp EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1716:1: ruleAstExpressionExp EOF\n {\n before(grammarAccess.getAstExpressionExpRule()); \n pushFollow(FOLLOW_ruleAstExpressionExp_in_entryRuleAstExpressionExp3603);\n ruleAstExpressionExp();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionExpRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstExpressionExp3610); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleExprCaseClause() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1905:1: ( ruleExprCaseClause EOF )\r\n // InternalGo.g:1906:1: ruleExprCaseClause EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExprCaseClauseRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleExprCaseClause();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExprCaseClauseRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleExpression = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2458:2: (iv_ruleExpression= ruleExpression EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:2459:2: iv_ruleExpression= ruleExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleExpression_in_entryRuleExpression5585);\r\n iv_ruleExpression=ruleExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleExpression5595); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleAstExpressionVariable() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1911:1: ( ruleAstExpressionVariable EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1912:1: ruleAstExpressionVariable EOF\n {\n before(grammarAccess.getAstExpressionVariableRule()); \n pushFollow(FOLLOW_ruleAstExpressionVariable_in_entryRuleAstExpressionVariable4023);\n ruleAstExpressionVariable();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionVariableRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstExpressionVariable4030); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n int entryRuleType_StartIndex = input.index();\n EObject iv_ruleType = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 27) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:1701:2: (iv_ruleType= ruleType EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:1702:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FOLLOW_ruleType_in_entryRuleType3109);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleType3119); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 27, entryRuleType_StartIndex); }\n }\n return current;\n }", "public int getColumnNumber() {\n return rows;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:229:1: ( ruleImport EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:230:1: ruleImport EOF\n {\n before(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport421);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getImportRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleBTable() throws RecognitionException {\n try {\n // InternalBSQL2Java.g:104:1: ( ruleBTable EOF )\n // InternalBSQL2Java.g:105:1: ruleBTable EOF\n {\n before(grammarAccess.getBTableRule()); \n pushFollow(FOLLOW_1);\n ruleBTable();\n\n state._fsp--;\n\n after(grammarAccess.getBTableRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }" ]
[ "0.7020902", "0.62139946", "0.56869566", "0.54089457", "0.5388794", "0.5168381", "0.49415278", "0.49288276", "0.49060735", "0.4892935", "0.48398685", "0.48303384", "0.47954145", "0.47675854", "0.4600238", "0.45880392", "0.4585796", "0.45576313", "0.45554277", "0.45266187", "0.45234916", "0.45182168", "0.4517335", "0.45003736", "0.44494435", "0.44470367", "0.44443002", "0.44371787", "0.44336984", "0.44111142", "0.4398496", "0.43897837", "0.43855432", "0.43840593", "0.4381633", "0.43814963", "0.43806398", "0.43382606", "0.43314323", "0.43282253", "0.43069986", "0.43039024", "0.42851156", "0.42748934", "0.42746723", "0.42692158", "0.4268941", "0.4254211", "0.42439574", "0.42393655", "0.42373478", "0.42200768", "0.42195886", "0.42076012", "0.42009652", "0.42006943", "0.41930214", "0.4183018", "0.41797215", "0.417346", "0.41717553", "0.41682753", "0.41587746", "0.41486672", "0.41399994", "0.41382414", "0.41204587", "0.41187143", "0.4113465", "0.41126105", "0.4102809", "0.41018116", "0.40897366", "0.40862733", "0.40845302", "0.40817532", "0.40789157", "0.40769476", "0.40750363", "0.4071409", "0.40702394", "0.40672845", "0.4059659", "0.40567026", "0.40567026", "0.40567026", "0.4054341", "0.4053911", "0.4047789", "0.40464383", "0.4045403", "0.40441355", "0.404307", "0.4040869", "0.4036348", "0.40357432", "0.40174583", "0.40088773", "0.40043783", "0.40025324" ]
0.7477609
0
$ANTLR end "entryRuleNbCol" $ANTLR start "ruleNbCol" InternalCsv.g:238:1: ruleNbCol : ( ( rule__NbCol__Group__0 ) ) ;
public final void ruleNbCol() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:242:2: ( ( ( rule__NbCol__Group__0 ) ) ) // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) ) { // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) ) // InternalCsv.g:244:3: ( rule__NbCol__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getNbColAccess().getGroup()); } // InternalCsv.g:245:3: ( rule__NbCol__Group__0 ) // InternalCsv.g:245:4: rule__NbCol__Group__0 { pushFollow(FOLLOW_2); rule__NbCol__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getNbColAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__NbCol__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1639:1: ( ( 'nbcol' ) )\n // InternalCsv.g:1640:1: ( 'nbcol' )\n {\n // InternalCsv.g:1640:1: ( 'nbcol' )\n // InternalCsv.g:1641:2: 'nbcol'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbcolKeyword_1()); \n }\n match(input,25,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbcolKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleNbCol() throws RecognitionException {\n try {\n // InternalCsv.g:230:1: ( ruleNbCol EOF )\n // InternalCsv.g:231:1: ruleNbCol EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColRule()); \n }\n pushFollow(FOLLOW_1);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__NbCol__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1600:1: ( rule__NbCol__Group__0__Impl rule__NbCol__Group__1 )\n // InternalCsv.g:1601:2: rule__NbCol__Group__0__Impl rule__NbCol__Group__1\n {\n pushFollow(FOLLOW_22);\n rule__NbCol__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1612:1: ( ( () ) )\n // InternalCsv.g:1613:1: ( () )\n {\n // InternalCsv.g:1613:1: ( () )\n // InternalCsv.g:1614:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n // InternalCsv.g:1615:2: ()\n // InternalCsv.g:1615:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1627:1: ( rule__NbCol__Group__1__Impl rule__NbCol__Group__2 )\n // InternalCsv.g:1628:2: rule__NbCol__Group__1__Impl rule__NbCol__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbCol__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleNbRow() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:217:2: ( ( ( rule__NbRow__Group__0 ) ) )\n // InternalCsv.g:218:2: ( ( rule__NbRow__Group__0 ) )\n {\n // InternalCsv.g:218:2: ( ( rule__NbRow__Group__0 ) )\n // InternalCsv.g:219:3: ( rule__NbRow__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getGroup()); \n }\n // InternalCsv.g:220:3: ( rule__NbRow__Group__0 )\n // InternalCsv.g:220:4: rule__NbRow__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1654:1: ( rule__NbCol__Group__2__Impl )\n // InternalCsv.g:1655:2: rule__NbCol__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1519:1: ( rule__NbRow__Group__0__Impl rule__NbRow__Group__1 )\n // InternalCsv.g:1520:2: rule__NbRow__Group__0__Impl rule__NbRow__Group__1\n {\n pushFollow(FOLLOW_21);\n rule__NbRow__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1531:1: ( ( () ) )\n // InternalCsv.g:1532:1: ( () )\n {\n // InternalCsv.g:1532:1: ( () )\n // InternalCsv.g:1533:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n // InternalCsv.g:1534:2: ()\n // InternalCsv.g:1534:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1558:1: ( ( 'nbrow' ) )\n // InternalCsv.g:1559:1: ( 'nbrow' )\n {\n // InternalCsv.g:1559:1: ( 'nbrow' )\n // InternalCsv.g:1560:2: 'nbrow'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbrowKeyword_1()); \n }\n match(input,24,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbrowKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleColumn() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:185:2: ( ( ( rule__Column__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:186:1: ( ( rule__Column__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:186:1: ( ( rule__Column__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:187:1: ( rule__Column__Group__0 )\n {\n before(grammarAccess.getColumnAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:188:1: ( rule__Column__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:188:2: rule__Column__Group__0\n {\n pushFollow(FOLLOW_rule__Column__Group__0_in_ruleColumn334);\n rule__Column__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getColumnAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1665:1: ( ( ( rule__NbCol__OpenAssignment_2 ) ) )\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n // InternalCsv.g:1667:2: ( rule__NbCol__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1668:2: ( rule__NbCol__OpenAssignment_2 )\n // InternalCsv.g:1668:3: rule__NbCol__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleNbRow() throws RecognitionException {\n try {\n // InternalCsv.g:205:1: ( ruleNbRow EOF )\n // InternalCsv.g:206:1: ruleNbRow EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowRule()); \n }\n pushFollow(FOLLOW_1);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__NbRow__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1546:1: ( rule__NbRow__Group__1__Impl rule__NbRow__Group__2 )\n // InternalCsv.g:1547:2: rule__NbRow__Group__1__Impl rule__NbRow__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbRow__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1573:1: ( rule__NbRow__Group__2__Impl )\n // InternalCsv.g:1574:2: rule__NbRow__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleBTable() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:116:2: ( ( ( rule__BTable__Group__0 ) ) )\n // InternalBSQL2Java.g:117:2: ( ( rule__BTable__Group__0 ) )\n {\n // InternalBSQL2Java.g:117:2: ( ( rule__BTable__Group__0 ) )\n // InternalBSQL2Java.g:118:3: ( rule__BTable__Group__0 )\n {\n before(grammarAccess.getBTableAccess().getGroup()); \n // InternalBSQL2Java.g:119:3: ( rule__BTable__Group__0 )\n // InternalBSQL2Java.g:119:4: rule__BTable__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getBTableAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1584:1: ( ( ( rule__NbRow__OpenAssignment_2 ) ) )\n // InternalCsv.g:1585:1: ( ( rule__NbRow__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1585:1: ( ( rule__NbRow__OpenAssignment_2 ) )\n // InternalCsv.g:1586:2: ( rule__NbRow__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1587:2: ( rule__NbRow__OpenAssignment_2 )\n // InternalCsv.g:1587:3: rule__NbRow__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1676:1: ( rule__Column__Group__0__Impl rule__Column__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1677:2: rule__Column__Group__0__Impl rule__Column__Group__1\n {\n pushFollow(FOLLOW_rule__Column__Group__0__Impl_in_rule__Column__Group__03316);\n rule__Column__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Column__Group__1_in_rule__Column__Group__03319);\n rule__Column__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1738:1: ( rule__Column__Group__2__Impl rule__Column__Group__3 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1739:2: rule__Column__Group__2__Impl rule__Column__Group__3\n {\n pushFollow(FOLLOW_rule__Column__Group__2__Impl_in_rule__Column__Group__23439);\n rule__Column__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Column__Group__3_in_rule__Column__Group__23442);\n rule__Column__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleColumn() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:173:1: ( ruleColumn EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:174:1: ruleColumn EOF\n {\n before(grammarAccess.getColumnRule()); \n pushFollow(FOLLOW_ruleColumn_in_entryRuleColumn301);\n ruleColumn();\n\n state._fsp--;\n\n after(grammarAccess.getColumnRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleColumn308); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__NbCol__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3829:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n // InternalCsv.g:3831:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3832:3: ( RULE_ID )\n // InternalCsv.g:3833:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleNumberLiteral() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1501:2: ( ( ( rule__NumberLiteral__Group__0 ) ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1502:1: ( ( rule__NumberLiteral__Group__0 ) )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1502:1: ( ( rule__NumberLiteral__Group__0 ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1503:1: ( rule__NumberLiteral__Group__0 )\n {\n before(grammarAccess.getNumberLiteralAccess().getGroup()); \n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1504:1: ( rule__NumberLiteral__Group__0 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1504:2: rule__NumberLiteral__Group__0\n {\n pushFollow(FOLLOW_rule__NumberLiteral__Group__0_in_ruleNumberLiteral3154);\n rule__NumberLiteral__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getNumberLiteralAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleIndex() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2592:2: ( ( ( rule__Index__Group__0 ) ) )\r\n // InternalGo.g:2593:2: ( ( rule__Index__Group__0 ) )\r\n {\r\n // InternalGo.g:2593:2: ( ( rule__Index__Group__0 ) )\r\n // InternalGo.g:2594:3: ( rule__Index__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIndexAccess().getGroup()); \r\n }\r\n // InternalGo.g:2595:3: ( rule__Index__Group__0 )\r\n // InternalGo.g:2595:4: rule__Index__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Index__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIndexAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3004:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // InternalCsv.g:3005:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group_5__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1017:1: ( ( ',' ) )\n // InternalBSQL2Java.g:1018:1: ( ',' )\n {\n // InternalBSQL2Java.g:1018:1: ( ',' )\n // InternalBSQL2Java.g:1019:2: ','\n {\n before(grammarAccess.getBTableAccess().getCommaKeyword_5_0()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getBTableAccess().getCommaKeyword_5_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1688:1: ( ( () ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1689:1: ( () )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1689:1: ( () )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1690:1: ()\n {\n before(grammarAccess.getColumnAccess().getColumnAction_0()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1691:1: ()\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1693:1: \n {\n }\n\n after(grammarAccess.getColumnAccess().getColumnAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:442:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n // InternalCsv.g:444:3: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // InternalCsv.g:445:3: ( rule__JvmUpperBound__Group__0 )\n // InternalCsv.g:445:4: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setNbCase(int nbCase) {\n this.nbCase = nbCase;\n }", "public final void ruleAstExpressionBitor() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1503:2: ( ( ( rule__AstExpressionBitor__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1504:1: ( ( rule__AstExpressionBitor__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1504:1: ( ( rule__AstExpressionBitor__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1505:1: ( rule__AstExpressionBitor__Group__0 )\n {\n before(grammarAccess.getAstExpressionBitorAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1506:1: ( rule__AstExpressionBitor__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1506:2: rule__AstExpressionBitor__Group__0\n {\n pushFollow(FOLLOW_rule__AstExpressionBitor__Group__0_in_ruleAstExpressionBitor3156);\n rule__AstExpressionBitor__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstExpressionBitorAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NumberLiteral__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:8898:1: ( rule__NumberLiteral__Group__0__Impl rule__NumberLiteral__Group__1 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:8899:2: rule__NumberLiteral__Group__0__Impl rule__NumberLiteral__Group__1\n {\n pushFollow(FOLLOW_rule__NumberLiteral__Group__0__Impl_in_rule__NumberLiteral__Group__017839);\n rule__NumberLiteral__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__NumberLiteral__Group__1_in_rule__NumberLiteral__Group__017842);\n rule__NumberLiteral__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void synpred62_InternalGo_fragment() throws RecognitionException { \r\n // InternalGo.g:3969:2: ( ( ( rule__UnaryExpr__Group_0__0 ) ) )\r\n // InternalGo.g:3969:2: ( ( rule__UnaryExpr__Group_0__0 ) )\r\n {\r\n // InternalGo.g:3969:2: ( ( rule__UnaryExpr__Group_0__0 ) )\r\n // InternalGo.g:3970:3: ( rule__UnaryExpr__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getUnaryExprAccess().getGroup_0()); \r\n }\r\n // InternalGo.g:3971:3: ( rule__UnaryExpr__Group_0__0 )\r\n // InternalGo.g:3971:4: rule__UnaryExpr__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__UnaryExpr__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n }", "public int getColumn() { return cc; }", "public final void ruleImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:130:2: ( ( ( rule__Import__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:132:1: ( rule__Import__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:1: ( rule__Import__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:2: rule__Import__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport220);\r\n rule__Import__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final AstValidator.rank_col_return rank_col() throws RecognitionException {\n AstValidator.rank_col_return retval = new AstValidator.rank_col_return();\n retval.start = input.LT(1);\n\n\n CommonTree root_0 = null;\n\n CommonTree _first_0 = null;\n CommonTree _last = null;\n\n CommonTree set301=null;\n CommonTree set303=null;\n AstValidator.col_range_return col_range300 =null;\n\n AstValidator.col_ref_return col_ref302 =null;\n\n\n CommonTree set301_tree=null;\n CommonTree set303_tree=null;\n\n try {\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:483:10: ( col_range ( ASC | DESC )? | col_ref ( ASC | DESC )? )\n int alt81=2;\n int LA81_0 = input.LA(1);\n\n if ( (LA81_0==COL_RANGE) ) {\n alt81=1;\n }\n else if ( (LA81_0==CUBE||LA81_0==DOLLARVAR||LA81_0==GROUP||LA81_0==IDENTIFIER) ) {\n alt81=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return retval;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 81, 0, input);\n\n throw nvae;\n\n }\n switch (alt81) {\n case 1 :\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:483:12: col_range ( ASC | DESC )?\n {\n root_0 = (CommonTree)adaptor.nil();\n\n\n _last = (CommonTree)input.LT(1);\n pushFollow(FOLLOW_col_range_in_rank_col2517);\n col_range300=col_range();\n\n state._fsp--;\n if (state.failed) return retval;\n if ( state.backtracking==0 ) \n adaptor.addChild(root_0, col_range300.getTree());\n\n\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:483:22: ( ASC | DESC )?\n int alt79=2;\n int LA79_0 = input.LA(1);\n\n if ( (LA79_0==ASC||LA79_0==DESC) ) {\n alt79=1;\n }\n switch (alt79) {\n case 1 :\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:\n {\n _last = (CommonTree)input.LT(1);\n set301=(CommonTree)input.LT(1);\n\n if ( input.LA(1)==ASC||input.LA(1)==DESC ) {\n input.consume();\n if ( state.backtracking==0 ) {\n set301_tree = (CommonTree)adaptor.dupNode(set301);\n\n\n adaptor.addChild(root_0, set301_tree);\n }\n\n state.errorRecovery=false;\n state.failed=false;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return retval;}\n MismatchedSetException mse = new MismatchedSetException(null,input);\n throw mse;\n }\n\n\n }\n break;\n\n }\n\n\n if ( state.backtracking==0 ) {\n }\n }\n break;\n case 2 :\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:484:12: col_ref ( ASC | DESC )?\n {\n root_0 = (CommonTree)adaptor.nil();\n\n\n _last = (CommonTree)input.LT(1);\n pushFollow(FOLLOW_col_ref_in_rank_col2539);\n col_ref302=col_ref();\n\n state._fsp--;\n if (state.failed) return retval;\n if ( state.backtracking==0 ) \n adaptor.addChild(root_0, col_ref302.getTree());\n\n\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:484:20: ( ASC | DESC )?\n int alt80=2;\n int LA80_0 = input.LA(1);\n\n if ( (LA80_0==ASC||LA80_0==DESC) ) {\n alt80=1;\n }\n switch (alt80) {\n case 1 :\n // /home/hoang/DATA/WORKSPACE/trunk0408/src/org/apache/pig/parser/AstValidator.g:\n {\n _last = (CommonTree)input.LT(1);\n set303=(CommonTree)input.LT(1);\n\n if ( input.LA(1)==ASC||input.LA(1)==DESC ) {\n input.consume();\n if ( state.backtracking==0 ) {\n set303_tree = (CommonTree)adaptor.dupNode(set303);\n\n\n adaptor.addChild(root_0, set303_tree);\n }\n\n state.errorRecovery=false;\n state.failed=false;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return retval;}\n MismatchedSetException mse = new MismatchedSetException(null,input);\n throw mse;\n }\n\n\n }\n break;\n\n }\n\n\n if ( state.backtracking==0 ) {\n }\n }\n break;\n\n }\n if ( state.backtracking==0 ) {\n\n retval.tree = (CommonTree)adaptor.rulePostProcessing(root_0);\n }\n\n }\n\n catch(RecognitionException re) {\n throw re;\n }\n\n finally {\n \t// do for sure before leaving\n }\n return retval;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:467:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // InternalCsv.g:469:3: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:470:3: ( rule__JvmUpperBoundAnded__Group__0 )\n // InternalCsv.g:470:4: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstConstantVariable() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:521:2: ( ( ( rule__AstConstantVariable__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:522:1: ( ( rule__AstConstantVariable__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:522:1: ( ( rule__AstConstantVariable__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:523:1: ( rule__AstConstantVariable__Group__0 )\n {\n before(grammarAccess.getAstConstantVariableAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:524:1: ( rule__AstConstantVariable__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:524:2: rule__AstConstantVariable__Group__0\n {\n pushFollow(FOLLOW_rule__AstConstantVariable__Group__0_in_ruleAstConstantVariable1054);\n rule__AstConstantVariable__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstConstantVariableAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3058:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // InternalCsv.g:3059:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:870:1: ( rule__BTable__Group__2__Impl rule__BTable__Group__3 )\n // InternalBSQL2Java.g:871:2: rule__BTable__Group__2__Impl rule__BTable__Group__3\n {\n pushFollow(FOLLOW_14);\n rule__BTable__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1707:1: ( rule__Column__Group__1__Impl rule__Column__Group__2 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1708:2: rule__Column__Group__1__Impl rule__Column__Group__2\n {\n pushFollow(FOLLOW_rule__Column__Group__1__Impl_in_rule__Column__Group__13377);\n rule__Column__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Column__Group__2_in_rule__Column__Group__13380);\n rule__Column__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleExpressionStmt() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1742:2: ( ( ( rule__ExpressionStmt__Group__0 ) ) )\r\n // InternalGo.g:1743:2: ( ( rule__ExpressionStmt__Group__0 ) )\r\n {\r\n // InternalGo.g:1743:2: ( ( rule__ExpressionStmt__Group__0 ) )\r\n // InternalGo.g:1744:3: ( rule__ExpressionStmt__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionStmtAccess().getGroup()); \r\n }\r\n // InternalGo.g:1745:3: ( rule__ExpressionStmt__Group__0 )\r\n // InternalGo.g:1745:4: rule__ExpressionStmt__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ExpressionStmt__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionStmtAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setCol_groups(int col_groups) throws IOException\n\t{\n\t\tif ((__io__pointersize == 8)) {\n\t\t\t__io__block.writeInt(__io__address + 8, col_groups);\n\t\t} else {\n\t\t\t__io__block.writeInt(__io__address + 8, col_groups);\n\t\t}\n\t}", "public int getCol_groups() throws IOException\n\t{\n\t\tif ((__io__pointersize == 8)) {\n\t\t\treturn __io__block.readInt(__io__address + 8);\n\t\t} else {\n\t\t\treturn __io__block.readInt(__io__address + 8);\n\t\t}\n\t}", "public final void rule__BTable__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:951:1: ( rule__BTable__Group__5__Impl rule__BTable__Group__6 )\n // InternalBSQL2Java.g:952:2: rule__BTable__Group__5__Impl rule__BTable__Group__6\n {\n pushFollow(FOLLOW_15);\n rule__BTable__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleExpression() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2367:2: ( ( ( rule__Expression__Group__0 ) ) )\r\n // InternalGo.g:2368:2: ( ( rule__Expression__Group__0 ) )\r\n {\r\n // InternalGo.g:2368:2: ( ( rule__Expression__Group__0 ) )\r\n // InternalGo.g:2369:3: ( rule__Expression__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionAccess().getGroup()); \r\n }\r\n // InternalGo.g:2370:3: ( rule__Expression__Group__0 )\r\n // InternalGo.g:2370:4: rule__Expression__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Expression__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final String entryRuleNumber() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleNumber = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5341:2: (iv_ruleNumber= ruleNumber EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5342:2: iv_ruleNumber= ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumber_in_entryRuleNumber12345);\r\n iv_ruleNumber=ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumber.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumber12356); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__Column__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1767:1: ( rule__Column__Group__3__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1768:2: rule__Column__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Column__Group__3__Impl_in_rule__Column__Group__33499);\n rule__Column__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstConstantVariable__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6475:1: ( rule__AstConstantVariable__Group__0__Impl rule__AstConstantVariable__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6476:2: rule__AstConstantVariable__Group__0__Impl rule__AstConstantVariable__Group__1\n {\n pushFollow(FOLLOW_rule__AstConstantVariable__Group__0__Impl_in_rule__AstConstantVariable__Group__013490);\n rule__AstConstantVariable__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstConstantVariable__Group__1_in_rule__AstConstantVariable__Group__013493);\n rule__AstConstantVariable__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:963:1: ( ( ( rule__BTable__Group_5__0 )* ) )\n // InternalBSQL2Java.g:964:1: ( ( rule__BTable__Group_5__0 )* )\n {\n // InternalBSQL2Java.g:964:1: ( ( rule__BTable__Group_5__0 )* )\n // InternalBSQL2Java.g:965:2: ( rule__BTable__Group_5__0 )*\n {\n before(grammarAccess.getBTableAccess().getGroup_5()); \n // InternalBSQL2Java.g:966:2: ( rule__BTable__Group_5__0 )*\n loop4:\n do {\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==24) ) {\n alt4=1;\n }\n\n\n switch (alt4) {\n \tcase 1 :\n \t // InternalBSQL2Java.g:966:3: rule__BTable__Group_5__0\n \t {\n \t pushFollow(FOLLOW_16);\n \t rule__BTable__Group_5__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop4;\n }\n } while (true);\n\n after(grammarAccess.getBTableAccess().getGroup_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleTableInstance() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:341:2: ( ( ( rule__TableInstance__Group__0 ) ) )\n // InternalBSQL2Java.g:342:2: ( ( rule__TableInstance__Group__0 ) )\n {\n // InternalBSQL2Java.g:342:2: ( ( rule__TableInstance__Group__0 ) )\n // InternalBSQL2Java.g:343:3: ( rule__TableInstance__Group__0 )\n {\n before(grammarAccess.getTableInstanceAccess().getGroup()); \n // InternalBSQL2Java.g:344:3: ( rule__TableInstance__Group__0 )\n // InternalBSQL2Java.g:344:4: rule__TableInstance__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__TableInstance__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTableInstanceAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XNumberLiteral__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14477:1: ( rule__XNumberLiteral__Group__0__Impl rule__XNumberLiteral__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14478:2: rule__XNumberLiteral__Group__0__Impl rule__XNumberLiteral__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__XNumberLiteral__Group__0__Impl_in_rule__XNumberLiteral__Group__029329);\r\n rule__XNumberLiteral__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XNumberLiteral__Group__1_in_rule__XNumberLiteral__Group__029332);\r\n rule__XNumberLiteral__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:816:1: ( rule__BTable__Group__0__Impl rule__BTable__Group__1 )\n // InternalBSQL2Java.g:817:2: rule__BTable__Group__0__Impl rule__BTable__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__BTable__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleExprCaseClause() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1917:2: ( ( ( rule__ExprCaseClause__Group__0 ) ) )\r\n // InternalGo.g:1918:2: ( ( rule__ExprCaseClause__Group__0 ) )\r\n {\r\n // InternalGo.g:1918:2: ( ( rule__ExprCaseClause__Group__0 ) )\r\n // InternalGo.g:1919:3: ( rule__ExprCaseClause__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExprCaseClauseAccess().getGroup()); \r\n }\r\n // InternalGo.g:1920:3: ( rule__ExprCaseClause__Group__0 )\r\n // InternalGo.g:1920:4: rule__ExprCaseClause__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ExprCaseClause__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExprCaseClauseAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleField() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:213:2: ( ( ( rule__Field__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:214:1: ( ( rule__Field__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:214:1: ( ( rule__Field__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:215:1: ( rule__Field__Group__0 )\n {\n before(grammarAccess.getFieldAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:216:1: ( rule__Field__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:216:2: rule__Field__Group__0\n {\n pushFollow(FOLLOW_rule__Field__Group__0_in_ruleField394);\n rule__Field__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getFieldAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleTypeCaseClause() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2017:2: ( ( ( rule__TypeCaseClause__Group__0 ) ) )\r\n // InternalGo.g:2018:2: ( ( rule__TypeCaseClause__Group__0 ) )\r\n {\r\n // InternalGo.g:2018:2: ( ( rule__TypeCaseClause__Group__0 ) )\r\n // InternalGo.g:2019:3: ( rule__TypeCaseClause__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeCaseClauseAccess().getGroup()); \r\n }\r\n // InternalGo.g:2020:3: ( rule__TypeCaseClause__Group__0 )\r\n // InternalGo.g:2020:4: rule__TypeCaseClause__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__TypeCaseClause__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeCaseClauseAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstConstantVariable__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6533:1: ( rule__AstConstantVariable__Group__2__Impl rule__AstConstantVariable__Group__3 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6534:2: rule__AstConstantVariable__Group__2__Impl rule__AstConstantVariable__Group__3\n {\n pushFollow(FOLLOW_rule__AstConstantVariable__Group__2__Impl_in_rule__AstConstantVariable__Group__213609);\n rule__AstConstantVariable__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstConstantVariable__Group__3_in_rule__AstConstantVariable__Group__213612);\n rule__AstConstantVariable__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group_5__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1005:1: ( rule__BTable__Group_5__0__Impl rule__BTable__Group_5__1 )\n // InternalBSQL2Java.g:1006:2: rule__BTable__Group_5__0__Impl rule__BTable__Group_5__1\n {\n pushFollow(FOLLOW_3);\n rule__BTable__Group_5__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group_5__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:103:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:105:1: ( rule__Import__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:1: ( rule__Import__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport160);\n rule__Import__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:989:1: ( ( ')' ) )\n // InternalBSQL2Java.g:990:1: ( ')' )\n {\n // InternalBSQL2Java.g:990:1: ( ')' )\n // InternalBSQL2Java.g:991:2: ')'\n {\n before(grammarAccess.getBTableAccess().getRightParenthesisKeyword_6()); \n match(input,23,FOLLOW_2); \n after(grammarAccess.getBTableAccess().getRightParenthesisKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:241:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:243:1: ( rule__Import__Group__0 )\n {\n before(grammarAccess.getImportAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:1: ( rule__Import__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport454);\n rule__Import__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getImportAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1778:1: ( ( ']' ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1779:1: ( ']' )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1779:1: ( ']' )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1780:1: ']'\n {\n before(grammarAccess.getColumnAccess().getRightSquareBracketKeyword_3()); \n match(input,25,FOLLOW_25_in_rule__Column__Group__3__Impl3527); \n after(grammarAccess.getColumnAccess().getRightSquareBracketKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleNumber() throws RecognitionException {\r\n\r\n \tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens();\r\n\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1816:1: ( ruleNumber EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1817:1: ruleNumber EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumber_in_entryRuleNumber3816);\r\n ruleNumber();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumber3823); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \tmyHiddenTokenState.restore();\r\n\r\n }\r\n return ;\r\n }", "public final void ruleAstExpressionVariable() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1923:2: ( ( ( rule__AstExpressionVariable__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1924:1: ( ( rule__AstExpressionVariable__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1924:1: ( ( rule__AstExpressionVariable__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1925:1: ( rule__AstExpressionVariable__Group__0 )\n {\n before(grammarAccess.getAstExpressionVariableAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1926:1: ( rule__AstExpressionVariable__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1926:2: rule__AstExpressionVariable__Group__0\n {\n pushFollow(FOLLOW_rule__AstExpressionVariable__Group__0_in_ruleAstExpressionVariable4056);\n rule__AstExpressionVariable__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstExpressionVariableAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group__9__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4628:1: ( ( ':' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4629:1: ( ':' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4629:1: ( ':' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4630:1: ':'\n {\n before(grammarAccess.getAstNetworkAccess().getColonKeyword_9()); \n match(input,51,FOLLOW_51_in_rule__AstNetwork__Group__9__Impl9871); \n after(grammarAccess.getAstNetworkAccess().getColonKeyword_9()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Number__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15633:1: ( ( ( rule__Number__Group_1_1__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15634:1: ( ( rule__Number__Group_1_1__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15634:1: ( ( rule__Number__Group_1_1__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15635:1: ( rule__Number__Group_1_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getNumberAccess().getGroup_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15636:1: ( rule__Number__Group_1_1__0 )?\r\n int alt99=2;\r\n int LA99_0 = input.LA(1);\r\n\r\n if ( (LA99_0==37) ) {\r\n int LA99_1 = input.LA(2);\r\n\r\n if ( ((LA99_1>=RULE_INT && LA99_1<=RULE_DECIMAL)) ) {\r\n alt99=1;\r\n }\r\n }\r\n switch (alt99) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15636:2: rule__Number__Group_1_1__0\r\n {\r\n pushFollow(FOLLOW_rule__Number__Group_1_1__0_in_rule__Number__Group_1__1__Impl31605);\r\n rule__Number__Group_1_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getNumberAccess().getGroup_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final String entryRuleNUMBER() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleNUMBER = null;\n\n\n try {\n // InternalMyDsl.g:3410:46: (iv_ruleNUMBER= ruleNUMBER EOF )\n // InternalMyDsl.g:3411:2: iv_ruleNUMBER= ruleNUMBER EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getNUMBERRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleNUMBER=ruleNUMBER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleNUMBER.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__AstExpressionBitor__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:17180:1: ( rule__AstExpressionBitor__Group__0__Impl rule__AstExpressionBitor__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:17181:2: rule__AstExpressionBitor__Group__0__Impl rule__AstExpressionBitor__Group__1\n {\n pushFollow(FOLLOW_rule__AstExpressionBitor__Group__0__Impl_in_rule__AstExpressionBitor__Group__034583);\n rule__AstExpressionBitor__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstExpressionBitor__Group__1_in_rule__AstExpressionBitor__Group__034586);\n rule__AstExpressionBitor__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXNumberLiteral() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1601:2: ( ( ( rule__XNumberLiteral__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1602:1: ( ( rule__XNumberLiteral__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1602:1: ( ( rule__XNumberLiteral__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1603:1: ( rule__XNumberLiteral__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXNumberLiteralAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1604:1: ( rule__XNumberLiteral__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1604:2: rule__XNumberLiteral__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__XNumberLiteral__Group__0_in_ruleXNumberLiteral3364);\r\n rule__XNumberLiteral__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXNumberLiteralAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public int getNcol(){\r\n \treturn this.ncol;\r\n \t}", "private int getColumn(double lng) {\r\n\t\tif (lng <= mbr.minLng()) {\r\n\t\t\treturn 0;\r\n\t\t}\r\n\t\tif (lng >= mbr.maxLng()) {\r\n\t\t\treturn nCol - 1;\r\n\t\t}\r\n\t\treturn (int) ((lng - mbr.minLng()) / cellSize);\r\n\t}", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getColumnNumber()\n {\n return parser.getColumnNumber();\n }", "public final void ruleRangeClause() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:2242:2: ( ( ( rule__RangeClause__Group__0 ) ) )\r\n // InternalGo.g:2243:2: ( ( rule__RangeClause__Group__0 ) )\r\n {\r\n // InternalGo.g:2243:2: ( ( rule__RangeClause__Group__0 ) )\r\n // InternalGo.g:2244:3: ( rule__RangeClause__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getRangeClauseAccess().getGroup()); \r\n }\r\n // InternalGo.g:2245:3: ( rule__RangeClause__Group__0 )\r\n // InternalGo.g:2245:4: rule__RangeClause__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__RangeClause__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getRangeClauseAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void synpred52_InternalGo_fragment() throws RecognitionException { \r\n // InternalGo.g:3774:2: ( ( ( rule__IncDecStmt__Group_0__0 ) ) )\r\n // InternalGo.g:3774:2: ( ( rule__IncDecStmt__Group_0__0 ) )\r\n {\r\n // InternalGo.g:3774:2: ( ( rule__IncDecStmt__Group_0__0 ) )\r\n // InternalGo.g:3775:3: ( rule__IncDecStmt__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIncDecStmtAccess().getGroup_0()); \r\n }\r\n // InternalGo.g:3776:3: ( rule__IncDecStmt__Group_0__0 )\r\n // InternalGo.g:3776:4: rule__IncDecStmt__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IncDecStmt__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n }", "public final void rule__XNumberLiteral__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14489:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14490:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14490:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14491:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXNumberLiteralAccess().getXNumberLiteralAction_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14492:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14494:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXNumberLiteralAccess().getXNumberLiteralAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Buchung__Group_11_2__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:5556:1: ( ( ',' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:5557:1: ( ',' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:5557:1: ( ',' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:5558:1: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getBuchungAccess().getCommaKeyword_11_2_0()); \r\n }\r\n match(input,84,FOLLOW_84_in_rule__Buchung__Group_11_2__0__Impl11798); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getBuchungAccess().getCommaKeyword_11_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setNbColumn(final int nbColumn)\n\t{\n\t\tif (nbColumn < 1)\n\t\t{\n\t\t\tthis.nbColumn = 1;\n\t\t}\n\t\telse\n\t\t{\n\t\t\tthis.nbColumn = nbColumn;\n\t\t}\n\t}", "public final void ruleAstExpressionExp() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1727:2: ( ( ( rule__AstExpressionExp__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1728:1: ( ( rule__AstExpressionExp__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1728:1: ( ( rule__AstExpressionExp__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1729:1: ( rule__AstExpressionExp__Group__0 )\n {\n before(grammarAccess.getAstExpressionExpAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1730:1: ( rule__AstExpressionExp__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1730:2: rule__AstExpressionExp__Group__0\n {\n pushFollow(FOLLOW_rule__AstExpressionExp__Group__0_in_ruleAstExpressionExp3636);\n rule__AstExpressionExp__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstExpressionExpAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleScript() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:117:2: ( ( ( rule__Script__Group__0 ) ) )\r\n // InternalDroneScript.g:118:2: ( ( rule__Script__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:118:2: ( ( rule__Script__Group__0 ) )\r\n // InternalDroneScript.g:119:3: ( rule__Script__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getScriptAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:120:3: ( rule__Script__Group__0 )\r\n // InternalDroneScript.g:120:4: rule__Script__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Script__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getScriptAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:67:2: ( ( ( rule__Model__Group__0 ) ) )\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n {\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n // InternalCsv.g:69:3: ( rule__Model__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getGroup()); \n }\n // InternalCsv.g:70:3: ( rule__Model__Group__0 )\n // InternalCsv.g:70:4: rule__Model__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleNumberExpression() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleNumberExpression = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1964:2: (iv_ruleNumberExpression= ruleNumberExpression EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1965:2: iv_ruleNumberExpression= ruleNumberExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getNumberExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_ruleNumberExpression_in_entryRuleNumberExpression4108);\r\n iv_ruleNumberExpression=ruleNumberExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleNumberExpression; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleNumberExpression4118); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "protected void setTableGroup(int num)\n\t\t{\n\t\t\tGroup = num ;\n\t\t}", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2029:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2031:1: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:1: ( rule__JvmUpperBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:2: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound4273);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXNumberLiteral() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1742:2: ( ( ( rule__XNumberLiteral__Group__0 ) ) )\r\n // InternalDroneScript.g:1743:2: ( ( rule__XNumberLiteral__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1743:2: ( ( rule__XNumberLiteral__Group__0 ) )\r\n // InternalDroneScript.g:1744:3: ( rule__XNumberLiteral__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXNumberLiteralAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1745:3: ( rule__XNumberLiteral__Group__0 )\r\n // InternalDroneScript.g:1745:4: rule__XNumberLiteral__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XNumberLiteral__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXNumberLiteralAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XNumberLiteral__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:13950:1: ( rule__XNumberLiteral__Group__0__Impl rule__XNumberLiteral__Group__1 )\r\n // InternalDroneScript.g:13951:2: rule__XNumberLiteral__Group__0__Impl rule__XNumberLiteral__Group__1\r\n {\r\n pushFollow(FOLLOW_94);\r\n rule__XNumberLiteral__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XNumberLiteral__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3810:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n // InternalCsv.g:3812:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3813:3: ( RULE_ID )\n // InternalCsv.g:3814:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRULE_NUMBER() throws RecognitionException {\n try {\n int _type = RULE_NUMBER;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:13: ( ( '0' .. '9' )+ )\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:15: ( '0' .. '9' )+\n {\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:15: ( '0' .. '9' )+\n int cnt6=0;\n loop6:\n do {\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( ((LA6_0>='0' && LA6_0<='9')) ) {\n alt6=1;\n }\n\n\n switch (alt6) {\n \tcase 1 :\n \t // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12781:16: '0' .. '9'\n \t {\n \t matchRange('0','9'); \n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt6 >= 1 ) break loop6;\n EarlyExitException eee =\n new EarlyExitException(6, input);\n throw eee;\n }\n cnt6++;\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void ruleBuchung() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:270:2: ( ( ( rule__Buchung__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:271:1: ( ( rule__Buchung__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:271:1: ( ( rule__Buchung__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:272:1: ( rule__Buchung__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getBuchungAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:273:1: ( rule__Buchung__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:273:2: rule__Buchung__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Buchung__Group__0_in_ruleBuchung520);\r\n rule__Buchung__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getBuchungAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleSaveCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:267:2: ( ( ( rule__SaveCSV__Group__0 ) ) )\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n {\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n // InternalCsv.g:269:3: ( rule__SaveCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n // InternalCsv.g:270:3: ( rule__SaveCSV__Group__0 )\n // InternalCsv.g:270:4: rule__SaveCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setGroup (int col)\n\t{\n\t\tlog.config( \"RModel.setGroup col=\" + col);\n\t\tif (col < 0 || col >= m_data.cols.size())\n\t\t\treturn;\n\t\tInteger ii = new Integer(col);\n\t\tif (!m_data.groups.contains(ii))\n\t\t\tm_data.groups.add(ii);\n\t}", "public final void rule__BTable__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:897:1: ( rule__BTable__Group__3__Impl rule__BTable__Group__4 )\n // InternalBSQL2Java.g:898:2: rule__BTable__Group__3__Impl rule__BTable__Group__4\n {\n pushFollow(FOLLOW_3);\n rule__BTable__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7595053", "0.74048805", "0.7275599", "0.7032271", "0.6766025", "0.6585799", "0.62374544", "0.59188396", "0.5909818", "0.5776052", "0.5762314", "0.5649036", "0.56440556", "0.5544631", "0.5201035", "0.50031304", "0.48835397", "0.48685363", "0.48617986", "0.47693533", "0.47648248", "0.46368995", "0.45505863", "0.454807", "0.45364887", "0.45130298", "0.45037943", "0.44935128", "0.4460343", "0.4451952", "0.4446536", "0.44200063", "0.44130045", "0.4409923", "0.44093293", "0.4409001", "0.44060382", "0.43887916", "0.43813777", "0.4379562", "0.43788546", "0.43729305", "0.43522245", "0.4346339", "0.43113607", "0.4302686", "0.42957535", "0.42854536", "0.42806646", "0.42792132", "0.4279106", "0.42784056", "0.4274467", "0.42721087", "0.42699", "0.42670116", "0.42606503", "0.42567563", "0.42440578", "0.42416576", "0.42387193", "0.42384475", "0.42277524", "0.42229024", "0.4221295", "0.42155635", "0.42152336", "0.42097238", "0.42095578", "0.42084265", "0.4207611", "0.4193474", "0.41897288", "0.41867247", "0.41796374", "0.4172478", "0.41633743", "0.41600507", "0.4159907", "0.4145912", "0.41420028", "0.41389525", "0.41365623", "0.41353774", "0.4130435", "0.41265044", "0.41224435", "0.4120348", "0.41198146", "0.4111958", "0.4109748", "0.4106478", "0.4100097", "0.40937647", "0.40929967", "0.4087503", "0.40748927", "0.40686345", "0.40671918", "0.4065133" ]
0.8305946
0
$ANTLR end "ruleNbCol" $ANTLR start "entryRuleSaveCSV" InternalCsv.g:254:1: entryRuleSaveCSV : ruleSaveCSV EOF ;
public final void entryRuleSaveCSV() throws RecognitionException { try { // InternalCsv.g:255:1: ( ruleSaveCSV EOF ) // InternalCsv.g:256:1: ruleSaveCSV EOF { if ( state.backtracking==0 ) { before(grammarAccess.getSaveCSVRule()); } pushFollow(FOLLOW_1); ruleSaveCSV(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getSaveCSVRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleNbCol() throws RecognitionException {\n try {\n // InternalCsv.g:230:1: ( ruleNbCol EOF )\n // InternalCsv.g:231:1: ruleNbCol EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColRule()); \n }\n pushFollow(FOLLOW_1);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleSaveCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:267:2: ( ( ( rule__SaveCSV__Group__0 ) ) )\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n {\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n // InternalCsv.g:269:3: ( rule__SaveCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n // InternalCsv.g:270:3: ( rule__SaveCSV__Group__0 )\n // InternalCsv.g:270:4: rule__SaveCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "CSV createCSV();", "public final void rule__SaveCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1720:1: ( ( 'save' ) )\n // InternalCsv.g:1721:1: ( 'save' )\n {\n // InternalCsv.g:1721:1: ( 'save' )\n // InternalCsv.g:1722:2: 'save'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveKeyword_1()); \n }\n match(input,26,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void main(String[] args) throws IOException {\n\t\tint id_telefone = 4;\n\t\t\n\t\tFileInputStream fis = new FileInputStream(SAMPLE_CSV_FILE_PATH);\n\t\tInputStreamReader isr = new InputStreamReader(fis, \"UTF-8\");\n\t\t\n\t\t@SuppressWarnings(\"deprecation\")\n\t\tCSVReader reader = new CSVReader(isr, ';' , '\"' , 0);\n \tString[] nextLine;\n \t\n// \tWriter writer = Files.newBufferedWriter(Paths.get(\"saida.csv\"));\n// \tCSVWriter csvWriter = new CSVWriter(writer,\n// CSVWriter.DEFAULT_SEPARATOR,\n// CSVWriter.NO_QUOTE_CHARACTER,\n// CSVWriter.DEFAULT_ESCAPE_CHARACTER,\n// CSVWriter.DEFAULT_LINE_END);\n \t\n \tFile file = new File(\"Clientes.sql\");\n \n BufferedWriter fr = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file),\"UTF-8\"));\n \t\n \twhile ((nextLine = reader.readNext()) != null) {\n \t\t\n if (nextLine != null) {\n \t\n// \tSystem.out.println(nextLine.length);\n \t\n \tString id = nextLine[0];\n \tif(!id.isEmpty()) {\n \t\n \t\tid = id.substring(5);\n \t\tid = id.replace(\".\", \"\");\n \t\t\n \t\tboolean temCEP = false;\n \t\t\n \t\tif(nextLine.length > 12) temCEP = true;\n \t\t\n \t\tString CEP = \"\";\n \t\tif(temCEP) {\n \t\t CEP = nextLine[12];\n CEP = CEP.replace(\".\", \"\");\n CEP = CEP.replaceAll(\"-\",\"\");\n CEP = CEP.replaceAll(\" \",\"\");\n \t\t};\n \n \t\n \n \tfr.write(\"INSERT INTO hmprojetos.cliente values (\" \n + id \n + \",'\" + nextLine[1]\n \t\t+ \"','\" + nextLine[2]\n \t\t\t\t+ \"','\" + nextLine[3]\n \t\t\t\t\t\t+ \"','\" + nextLine[4]\n \t\t\t\t\t\t\t\t+ \"','\" + nextLine[5]\n \t\t\t\t\t\t\t\t\t\t+ \"','\" + CEP\n \t\t\t\t\t\t\t\t\t\t\t\t+ \"','\" + nextLine[10]\n \t\t\t\t\t\t\t\t\t\t\t\t\t\t+ \"','\" + nextLine[11]\n \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t+ \"','\" + nextLine[6]\n + \"');\\n\");\n \t\n \t//Criação dos INSERTS dos telefones\n \tif(!nextLine[7].isEmpty()) {\n \tfr.write(\"INSERT INTO hmprojetos.telefone values (\"\n \t\t\t+ id_telefone\n \t\t\t+ \",'','\" + nextLine[7]\n \t\t\t+ \"',\"\n \t\t\t+ id \n \t\t\t+ \");\\n\"\n \t\t\t);\n \t\tid_telefone++;\n \t}\n \tif(!nextLine[8].isEmpty()) {\n \tfr.write(\"INSERT INTO hmprojetos.telefone values (\"\n \t\t\t+ id_telefone\n \t\t\t+ \",'','\" + nextLine[8]\n \t\t\t+ \"',\"\n \t\t\t+ id \n \t\t\t+ \");\\n\"\n \t\t\t);\n \t\tid_telefone++;\n \t}\n \tif(!nextLine[9].isEmpty()) {\n \tfr.write(\"INSERT INTO hmprojetos.telefone values (\"\n \t\t\t+ id_telefone\n \t\t\t+ \",'','\" + nextLine[9]\n \t\t\t+ \"',\"\n \t\t\t+ id \n \t\t\t+ \");\\n\"\n \t\t\t);\n \t\tid_telefone++;\n \t}\n \t\n \t}\n }\n \t}\n \t\n \tfr.close();\n \tSystem.out.println(\"Done\");\n\t}", "public final void entryRuleColumn() throws RecognitionException {\n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:173:1: ( ruleColumn EOF )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:174:1: ruleColumn EOF\n {\n before(grammarAccess.getColumnRule()); \n pushFollow(FOLLOW_ruleColumn_in_entryRuleColumn301);\n ruleColumn();\n\n state._fsp--;\n\n after(grammarAccess.getColumnRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleColumn308); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "@Insert({ \"insert into csv_file (id, pid, \", \"filename, start_time, \", \"end_time, length, \", \"density, machine, \",\n\t\t\t\"ar, path, size, \", \"uuid, header_time, \", \"last_update, conflict_resolved, \", \"status, comment, \",\n\t\t\t\"width, start_version, \", \"end_version)\", \"values (#{id,jdbcType=INTEGER}, #{pid,jdbcType=VARCHAR}, \",\n\t\t\t\"#{filename,jdbcType=VARCHAR}, #{startTime,jdbcType=TIMESTAMP}, \",\n\t\t\t\"#{endTime,jdbcType=TIMESTAMP}, #{length,jdbcType=INTEGER}, \",\n\t\t\t\"#{density,jdbcType=DOUBLE}, #{machine,jdbcType=VARCHAR}, \",\n\t\t\t\"#{ar,jdbcType=BIT}, #{path,jdbcType=VARCHAR}, #{size,jdbcType=BIGINT}, \",\n\t\t\t\"#{uuid,jdbcType=CHAR}, #{headerTime,jdbcType=TIMESTAMP}, \",\n\t\t\t\"#{lastUpdate,jdbcType=TIMESTAMP}, #{conflictResolved,jdbcType=BIT}, \",\n\t\t\t\"#{status,jdbcType=INTEGER}, #{comment,jdbcType=VARCHAR}, \",\n\t\t\t\"#{width,jdbcType=INTEGER}, #{startVersion,jdbcType=INTEGER}, \", \"#{endVersion,jdbcType=INTEGER})\" })\n\tint insert(CsvFile record);", "public final void ruleNbCol() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:242:2: ( ( ( rule__NbCol__Group__0 ) ) )\n // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) )\n {\n // InternalCsv.g:243:2: ( ( rule__NbCol__Group__0 ) )\n // InternalCsv.g:244:3: ( rule__NbCol__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getGroup()); \n }\n // InternalCsv.g:245:3: ( rule__NbCol__Group__0 )\n // InternalCsv.g:245:4: rule__NbCol__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void writeCSVLine(int[] entries) {\n\t\tint size = entries.length;\n\t\tString[] convertedEntries = new String[size];\n\t\tfor (int i = 0; i < size; i++) {\n\t\t\tconvertedEntries[i] = Integer.toString(entries[i]);\n\t\t}\n\t\twriter.writeNext(convertedEntries);\n\t}", "public final void rule__SaveCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3848:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n // InternalCsv.g:3850:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3851:3: ( RULE_ID )\n // InternalCsv.g:3852:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public void saveCSVFile(String csvPath, String output) {\n this.csvPath = csvPath;\n BufferedWriter outputFile = null;\n\n try {\n outputFile = new BufferedWriter(new FileWriter(this.csvPath));\n if (this.header == null) {\n this.header = Rules.getDefaultHeaders();\n }\n outputFile.write(header);\n outputFile.write(output);\n outputFile.close();\n } catch (FileNotFoundException fnfe) {\n System.out.println(\"File not found\");\n } catch (IOException ioe) {\n System.out.println(\"Something went wrong\");\n }\n }", "private Result outputCsv(Request request, Entry entry) throws Exception {\r\n Result result = getCsvResult(request, entry);\r\n result.setReturnFilename(\r\n IOUtil.stripExtension(getStorageManager().getFileTail(entry))\r\n + \".csv\");\r\n result.setMimeType(\"text/csv\");\r\n\r\n return result;\r\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void CSVExport(String output, LinkedList<Patient> src, boolean[] shouldEx) {\n\t\tExportSepValuesFile(output, src, \",\", shouldEx);\n\t}", "private static void processCsvEntry(String entryFileName, byte[] csvBytes, JsonNode columnClassJson, Connection connection,\n String keywordEscapeChar, int batchSize, List<DeleteWrapper> allDeletes) throws Exception {\n\n String tableName = Files.getNameWithoutExtension(entryFileName);\n ArrayList<String> actualColumns = getTableColumns(connection, tableName);\n\n ByteArrayInputStream bais = new ByteArrayInputStream(csvBytes);\n InputStreamReader isr = new InputStreamReader(bais);\n CSVParser csvParser = new CSVParser(isr, CSV_FORMAT.withHeader());\n\n //find out what columns we've got\n List<String> columns = createHeaderList(csvParser);\n List<String> columnsRemove = new ArrayList<>();\n for (String column : columns) {\n if (!column.equals(COL_IS_DELETE) && !column.equals(COL_ID)) {\n if (!actualColumns.contains(column)) {\n columnsRemove.add(column);\n }\n }\n }\n for (String column : columnsRemove) {\n LOG.debug(\"Removing column:\" + column + \" from the header map for table:\" + tableName);\n columns.remove(column);\n }\n\n Map<String, Class> columnClasses = createHeaderColumnMap(entryFileName, columnClassJson, columns);\n\n //validate that file has \"id\" and \"is_delete\" always\n if (!columns.contains(COL_IS_DELETE)) {\n throw new Exception(\"\" + entryFileName + \" doesn't have an \" + COL_IS_DELETE + \" column\");\n }\n if (!columns.contains(COL_ID)) {\n throw new Exception(\"\" + entryFileName + \" doesn't have an \" + COL_ID + \" column\");\n }\n\n //since we're dealing with small volumes, we can just read keep all the records in memory\n List<CSVRecord> upserts = new ArrayList<>();\n List<DeleteWrapper> deletes = new ArrayList<>();\n\n int row = 0;\n\n Iterator<CSVRecord> csvIterator = csvParser.iterator();\n while (csvIterator.hasNext()) {\n CSVRecord csvRecord = csvIterator.next();\n String isDeleteStr = csvRecord.get(COL_IS_DELETE);\n if (Strings.isNullOrEmpty(isDeleteStr)) {\n throw new Exception(\"Empty \" + COL_IS_DELETE + \" value on row \" + row + \" of \" + entryFileName);\n }\n boolean isDelete = Boolean.parseBoolean(isDeleteStr);\n\n if (isDelete) {\n //we have to play deletes in reverse, so just add to this list and they'll be processed after all the upserts\n deletes.add(new DeleteWrapper(tableName, csvRecord, columns, columnClasses));\n\n } else {\n upserts.add(csvRecord);\n }\n\n row ++;\n }\n\n LOG.trace(\"Got \" + upserts.size() + \" upserts and \" + deletes.size() + \" deletes for \" + tableName);\n\n //add the deletes to this list to apply later\n allDeletes.addAll(deletes);\n\n if (!upserts.isEmpty()) {\n\n //when doing a bulk, we can have 300,000+ practitioners, so do them in batches, so we're\n //not keeping huge DB transactions open\n List<CSVRecord> batch = new ArrayList<>();\n for (CSVRecord record : upserts) {\n batch.add(record);\n\n //in testing, batches of 20000 seemed best, although there wasn't much difference between batches of 5000 up to 100000\n if (batch.size() >= batchSize) {\n fileUpsertsWithRetry(batch, columns, columnClasses, tableName, connection, keywordEscapeChar);\n batch = new ArrayList<>();\n }\n }\n if (!batch.isEmpty()) {\n fileUpsertsWithRetry(batch, columns, columnClasses, tableName, connection, keywordEscapeChar);\n }\n }\n }", "public final void entryRuleNbRow() throws RecognitionException {\n try {\n // InternalCsv.g:205:1: ( ruleNbRow EOF )\n // InternalCsv.g:206:1: ruleNbRow EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowRule()); \n }\n pushFollow(FOLLOW_1);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__SaveCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3867:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3868:2: ( RULE_STRING )\n {\n // InternalCsv.g:3868:2: ( RULE_STRING )\n // InternalCsv.g:3869:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void writeCSVtable(String outBuffer) throws IOException\n {\n String csvFile;\n // Create a file chooser\n File currentDir = new File(\"\").getAbsoluteFile();\n final JFileChooser fc = new JFileChooser(currentDir);\n // In response to a button click:\n int returnVal = fc.showSaveDialog(null);\n // open file\n File file = fc.getSelectedFile();\n // obtain filename\n csvFile = file.getName();\n\n // open the file\n fWriter = new FileWriter(csvFile); \n // write ALL the to the file in 1 burst\n fWriter.write(outBuffer); \n // close the file\n fWriter.close();\n }", "@Override\r\n\tpublic void actionPerformed(ActionEvent ae) {\n\t\tFile file = FileChooser.SaveCsvFile();\r\n\t\tif(file==null)\r\n\t\t\treturn;\r\n\t\tBufferedWriter bw = null;\r\n\t\ttry {\r\n\t\t\tbw = new BufferedWriter(new FileWriter(file));\r\n\t\t\tSystem.out.println(file.getAbsolutePath());\r\n\t\t\tbw.write(\"Phonenumber\");\r\n\t\t\tbw.newLine();\r\n\t\t\tfor(int i = 0;i<CSVFrame.model.getRowCount();i++) {\r\n\t\t\t\tRecord r = CSVFrame.model.getRowAt(i);\r\n\t\t\t\tSystem.out.println(r.getPhone());\r\n\t\t\t\tbw.write(r.getPhone());\r\n\t\t\t\tbw.newLine();\r\n\t\t\t}\r\n\t\t\tJOptionPane.showMessageDialog(null, \"Finished creating suppression file\");\r\n\t\t} catch(IOException ex) {\r\n\t\t\tex.printStackTrace();\r\n\t\t}\r\n\t\tfinally {\r\n\t\t\ttry {\r\n\t\t\t\tbw.close();\r\n\t\t\t} catch (IOException e) {\r\n\t\t\t\t// TODO Auto-generated catch block\r\n\t\t\t\te.printStackTrace();\r\n\t\t\t}\r\n\t\t}\r\n\t}", "@Override\n\tpublic void createCSVOutput() {\n\t\tFile file = new File(\"rejectedByEsteticalRestructurationRejector.csv\"); \n\t\t\n\t\t//test if the file already exist\n\t\tif(file.exists()) {\n\t\t\tSystem.out.println(\"le fichier rejectedByEstheticalRestructurationRejector.csv existe deja\");\n\t\t\tSystem.exit(0);\n\t\t}\n\t\t\n\t\t//create the different column for the CSV file\n\t\tString[] titles = { \"before\" , \"after\", \"id\"};\n\t\ttry {\n\t\t\toutputFile = new CsvFileWriter(file, '\\t', titles);\n\t\t} catch (IOException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t}\t\t\n\t}", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleModel() throws RecognitionException {\n try {\n // InternalCsv.g:55:1: ( ruleModel EOF )\n // InternalCsv.g:56:1: ruleModel EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelRule()); \n }\n pushFollow(FOLLOW_1);\n ruleModel();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void exportToCSV();", "public void csv() throws IOException {\n\t\t\n\t\tSystem.out.println(); //spacing\\\n\t\tFileWriter f;\n\t\t\n\t\tif (bundle.getString(\"csvName\").endsWith(\".csv\")) {\n\t\t\tf = new FileWriter(bundle.getString(\"csvName\"));\n\t\t}\n\t\t\n\t\telse {\n\t\t\tf = new FileWriter(bundle.getString(\"csvName\") + \".csv\");\n\t\t}\n\t\t\n\t\tPrintWriter p = new PrintWriter(f);\n\t\tObject[][] input = {revisionsToo, flowOfTime};\n\t\tCSVWork(input, p, f);\n\t\t\n\t\tObject[][] nextInput = {revisions, ratings};\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[1] = irrelevants;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[1] = relevants;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[0] = intervals;\n\t\tnextInput[1] = commits;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tspecialCSV(existsHere, p);\n\t\t\n\t\tp.flush();\n\t\tp.close();\n\t\tf.close();\n\t}", "public final void rule__SaveCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1773:1: ( ( ( rule__SaveCSV__FileAssignment_3 )? ) )\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n {\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n // InternalCsv.g:1775:2: ( rule__SaveCSV__FileAssignment_3 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1776:2: ( rule__SaveCSV__FileAssignment_3 )?\n int alt13=2;\n int LA13_0 = input.LA(1);\n\n if ( (LA13_0==RULE_STRING) ) {\n alt13=1;\n }\n switch (alt13) {\n case 1 :\n // InternalCsv.g:1776:3: rule__SaveCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public void importCSV(File file) {\n System.out.println(\"oi\");\n System.out.println(file.isFile()+\" \"+file.getAbsolutePath());\n if(file.isFile() && file.getPath().toLowerCase().contains(\".csv\")){\n System.out.println(\"Entro\");\n try {\n final Reader reader = new FileReader(file);\n final BufferedReader bufferReader = new BufferedReader(reader);\n String[] cabecalho = bufferReader.readLine().split(\",\");\n int tipo;\n if(cabecalho.length == 3){\n if(cabecalho[2].equalsIgnoreCase(\"SIGLA\")){\n tipo = 1;\n System.out.println(\"TIPO PAIS\");\n }\n else {\n tipo = 2;\n System.out.println(\"TIPO CIDADE\");\n }\n }else {\n tipo = 3;\n System.out.println(\"TIPO ESTADO\");\n }\n \n while(true){\n String linha = bufferReader.readLine();\n if(linha == null){\n break;\n }\n String[] row = linha.split(\",\");\n switch (tipo) {\n case 1:\n Pais pais = new Pais();\n pais.setId(Long.parseLong(row[0]));\n pais.setNome(row[1]);\n pais.setSigla(row[2]);\n new PaisDaoImpl().insert(pais);\n break;\n case 2:\n Cidade cidade = new Cidade();\n cidade.setId(Long.parseLong(row[0]));\n cidade.setNome(row[1]);\n cidade.setEstado(Long.parseLong(row[2]));\n new CidadeDaoImpl().insert(cidade);\n break;\n default:\n Estado estado = new Estado();\n estado.setId(Long.parseLong(row[0]));\n estado.setNome(row[1]);\n estado.setUf(row[2]);\n estado.setPais(Long.parseLong(row[3]));\n new EstadoDaoImpl().insert(estado);\n break;\n }\n }\n \n } catch (FileNotFoundException ex) {\n Logger.getLogger(SQLUtilsImpl.class.getName()).log(Level.SEVERE, null, ex);\n } catch (IOException ex) {\n Logger.getLogger(SQLUtilsImpl.class.getName()).log(Level.SEVERE, null, ex);\n }\n }\n }", "public void exportContact(String csvId) {\n String[] csv= MainActivity.appDb.getEditData(csvId); //get the data ready to export\n //String[] csv = Contact.split(\"~\", -1);\n\n Intent intent = new Intent(Intent.ACTION_INSERT); //create an intent to to place the contact data to the Phone contacts\n intent.setType(ContactsContract.Contacts.CONTENT_TYPE);\n intent.putExtra(ContactsContract.Intents.Insert.NAME, csv[0]); //place the data in the fields\n intent.putExtra(ContactsContract.Intents.Insert.PHONE, csv[1]);\n intent.putExtra(ContactsContract.Intents.Insert.EMAIL, csv[2]);\n intent.putExtra(ContactsContract.Intents.Insert.POSTAL, csv[3]);\n intent.putExtra(ContactsContract.Intents.Insert.COMPANY, csv[4]);\n intent.putExtra(ContactsContract.Intents.Insert.JOB_TITLE, csv[5]);\n ArrayList<ContentValues> data = new ArrayList<ContentValues>(); //use an arraylist containing content values specfically for the website\n\n ContentValues row1 = new ContentValues(); //establish new row\n row1.put(ContactsContract.Data.MIMETYPE, Website.CONTENT_ITEM_TYPE); //specify the type\n row1.put(Website.URL, csv[6]); //insert the website\n row1.put(Website.TYPE, Website.TYPE_WORK);\n\n data.add(row1); //add it to the data entry\n\n\n intent.putParcelableArrayListExtra(ContactsContract.Intents.Insert.DATA, data); //insert the data row in extras\n\n //intent.putExtra(ContactsContract.Intents.Insert.DATA, csv[6]);\n intent.putExtra(ContactsContract.Intents.Insert.NOTES, csv[7]);\n\n startActivity(intent); //start the activity\n }", "public static void writeCSV(Collection<? extends CSVable> src, File to) throws IOException {\r\n\t\tfinal String SYSTEM_LINE_END = System.getProperty(\"line.separator\");\r\n\t\t\r\n\t\tFileWriter fw = null;\r\n\t\tBufferedWriter bw = null;\r\n\t\t\r\n\t\ttry {\r\n\t\t\t// Create the file if it doesn't exist yet\r\n\t\t\tif ( ! to.exists() ) {\r\n\t\t\t\tto.createNewFile();\r\n\t\t\t}\r\n\r\n\t\t\tfw = new FileWriter(to.getAbsoluteFile(), false);\r\n\t\t\tbw = new BufferedWriter(fw);\r\n\r\n\t\t\tsynchronized (src) {\r\n\t\t\t\tfor ( CSVable obj : src ) {\r\n\t\t\t\t\tbw.write(obj.toCSVRow() + SYSTEM_LINE_END);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\tfinally {\r\n\t\t\ttry {\r\n\t\t\t\tif (bw != null) {\r\n\t\t\t\t\tbw.close();\r\n\t\t\t\t}\r\n\t\t\t\tif (fw != null) {\r\n\t\t\t\t\tfw.close();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tcatch (IOException e) {\r\n\t\t\t\tSystem.err.println(\"I'm having really bad luck today - I couldn't even close the CSV file!\");\r\n\t\t\t\te.printStackTrace();\r\n\t\t\t}\r\n\t\t}\r\n\t}", "@Override\n\tpublic void exportToCSV() {\n\n\t}", "private void save(List<String[]> data, Integer numFichier, String nomFichier) throws IOException {\n FileWriter fileWriter = null;\n CSVWriter cSVWriter2 = null;\n //-------------------------------------------------------------\n // Construction du nom de fichier\n //-------------------------------------------------------------\n\n\n// String nomFichier = constructionNomFichier(flux);\n\n// // Mini rappel sur les ternaire en java : variable = (condition) ? valeur_si_vrai : valeur_si_faux; \n// String pays = (flux.getJournalLie() != null && flux.getJournalLie().getPays() != null && !flux.getJournalLie().getPays().isEmpty()) ? flux.getJournalLie().getPays() : \"XX\";\n// String ville = (flux.getJournalLie() != null && flux.getJournalLie().getCodeVille() != null && !flux.getJournalLie().getCodeVille().isEmpty()) ? flux.getJournalLie().getCodeVille() : \"XX\";\n// String langue = (flux.getJournalLie() != null && flux.getJournalLie().getLangue() != null && !flux.getJournalLie().getLangue().isEmpty()) ? flux.getJournalLie().getLangue() : \"XX\";\n// String codeJournal = (flux.getJournalLie() != null && flux.getJournalLie().getCodeJournal() != null && !flux.getJournalLie().getCodeJournal().isEmpty()) ? flux.getJournalLie().getCodeJournal() : \"XX\";\n// String codeTypeFlux = (flux.getTypeFlux() != null && flux.getTypeFlux().getCodeType() != null && !flux.getTypeFlux().getCodeType().isEmpty()) ? flux.getTypeFlux().getCodeType() : \"XXX\";\n//\n// nomFichier = langue + \"_\" + pays + \"_\" + codeJournal + \"_\" + codeTypeFlux;\n\n //--------------------------------------------------------------------------------\n // Enregistrement \n //--------------------------------------------------------------------------------\n try {\n fileWriter = new FileWriter(exportPath + nomFichier + \"__F__\" + numFichier.toString() + \".csv\");\n\n if (escapebySlash) {\n cSVWriter2 = new CSVWriter(fileWriter, '\\t', '\"', '\\\\');\n } else {\n cSVWriter2 = new CSVWriter(fileWriter, '\\t', '\"');\n }\n\n cSVWriter2.writeAll(data);\n\n\n } catch (Exception e) {\n logger.debug(\"Erreur lors de l'enregistrement\");\n } finally {\n if (cSVWriter2 != null) {\n try {\n cSVWriter2.close();\n } catch (Exception e) {\n }\n }\n\n if (fileWriter != null) {\n try {\n fileWriter.close();\n } catch (Exception e) {\n }\n }\n }\n\n data.clear(); // On purge le fichier data\n //---------------------------------------------------------------------------\n // Assemblage \n //---------------------------------------------------------------------------\n // Si ce n'est pas le premier fichier. Il faut réassembler\n// if (numFichier != 0) {\n// File f1 = new File(exportPath + nomFichier + \"__F__0.csv\");\n// File fCurrent = new File(exportPath + nomFichier + \"__F__\" + numFichier.toString() + \".csv\");\n// \n// String content = FileUtils.readFileToString(fCurrent);\n// FileUtils.write(f1, content, true);\n// \n// fCurrent.delete();\n// }\n }", "static public void writeCSVReply (String csvFile, String validInfo)\n\t{\n\t\tFile f = new File(csvFile);\n\t\t\n\t\tString columnName = \"Nom: \\tDate de sortie: \\tRéalisateur: \\tDescription: \\tBande d'annonce: \\tSéances: \\n\";\n\t\tvalidInfo = columnName + validInfo;\n\t\t\n\t\ttry\n\t\t{\n\t\t\tFileWriter fw = new FileWriter (f);\n\t\t\tfw.write (validInfo);\n\t\t\tfw.write (\"\\r\\n\");\n\t\t\tfw.close();\n\t\t}\n\t\tcatch (IOException exception)\n\t\t{\n\t\t\tSystem.out.println (\"error when reading CSV file : \" + exception.getMessage());\n\t\t}\n\t}", "public static void save() {\r\n\t\ttry {\r\n\t\t\tFile csv = new File(\"src/transaction.csv\");\r\n\t\t\tBufferedWriter bw = new BufferedWriter(new FileWriter(csv, false));\r\n\t\t\tbw.write(\"type,account number,amount,year,month,date,cleared\");\r\n\t\t\tbw.newLine();\r\n\t\t\tfor (int i = 0; i < transList.size(); i++) {\r\n\t\t\t\tbw.write(transList.get(i).toFile());\r\n\t\t\t\tbw.newLine();\r\n\t\t\t}\r\n\t\t\tbw.close();\r\n\t\t} catch (FileNotFoundException e) {\r\n\t\t\te.printStackTrace();\r\n\t\t} catch (IOException e) {\r\n\t\t\te.printStackTrace();\r\n\t\t}\r\n\t}", "public IndexModifierCSVMessage(pgrid.GUID guid, Key key, short mode, CSVIndexTable csvItems) {\n\t\tsuper(guid);\n\t\tmItems = new CSVIndexTable(\"IMcsv_\"+randomString()+\"_\"+(++num)+\".csv\",false);\n\t\tmKey = key;\n\t\tif(csvItems != null){\n\t\t\ttry{\n\t\t\t\tcsvItems.openFileForReading();\n\t\t\t\tmItems.openFileForWriting();\n\t\t\t\tIndexEntry dataItem = null;\n\t\t\t\twhile((dataItem = (IndexEntry)csvItems.getNextIndexEntry())!=null) {\n\t\t\t\t\tmItems.addIndexEntry(dataItem);\n\t\t\t\t}\n\t\t\t} catch (Exception e) {\n\t\t\t\t// TODO Auto-generated catch block\n\t\t\t\te.printStackTrace();\n\t\t\t}finally{\n\t\t\t\tmItems.closeFileForWriting();\n\t\t\t\tcsvItems.closeFileOnReading();\n\t\t\t}\n\t\t}\n\t\tmMode = mode;\n\n\t\tCompression.compressFile(getFileName(),getFileName()+\".zip\" );\n\t\tmFileSize = new File(getFilePath()+\".zip\").length();\n\t\tthis.getHeader().setAdditionalAttribute(\"FileLength\", getFileSize()+\"\");\n\t\tthis.getHeader().setAdditionalAttribute(\"FileName\", getFileName());\n\n\t}", "@Override\n\tpublic void validateBatch(ReversalBatch csvReversalBatch) {\n\t\t\n\t}", "public static void main(String[] args) throws IOException {\n\t\t\n\t\tFileManager csv=new FileManager();\n\t\t\n\t\tcsv.readListOfFiles();\n\t\tcsv.readFile();\n\t\t\n\t\t//csv.tk.displayTokens();\n\t\t//csv.it.displayHashMap();\n\t\tcsv.writeTokensToFile(csv.tk.tokensMap);\n\t\tcsv.matcher.longestSequence(csv.it);\t//csv.it.intTokenList was supposed to be passed but since I need csv.it object in caller so im passing it\n\t\tcsv.matcher.displaySubsequences(csv.it);\n\t\tcsv.writeMatchesToFile(csv.matcher.resultMap,csv.it);\n\t System.out.println(\"\\nProgram Ends \");\n\t \t \n\t}", "void exportToAJP(JTable tableToExport, String tabName, String pathToExportTo) throws IOException \n {\n BufferedWriter out;//defines a writer\n TableModel model = tableToExport.getModel();\n \n CodeSource codeSource = ExportToAJP.class.getProtectionDomain().getCodeSource();\n File jarFile = new File(URLDecoder.decode(codeSource.getLocation().getPath(), \"UTF-8\"));\n pathToExportTo = jarFile.getParentFile().getPath();\n //creates new save in the install dir/saves folder\n out = new BufferedWriter(new FileWriter(pathToExportTo+\"\\\\saves\\\\\"+tabName+\".ajp\"));\n \n try \n { //writes the tabled headers to the .ajp\n for(int i=0; i < model.getColumnCount(); i++) {\n if (i!=model.getColumnCount()-1)\n out.write(model.getColumnName(i) + \",\");\n else\n out.write(model.getColumnName(i));\n }\n out.write(\"\\n\");//new line\n //cycles each cell after the headers and writes to the csv file\n for(int i=0; i< model.getRowCount(); i++) {\n for(int j=0; j < model.getColumnCount(); j++) {\n if (model.getValueAt(i,j)!= null)//checks for empty cell\n {\n if (j!=model.getColumnCount()-1)\n out.write(model.getValueAt(i,j).toString()+\",\");\n else\n out.write(model.getValueAt(i,j).toString());\n }\n else if (j!=model.getColumnCount()-1)\n out.write(\",\");\n }\n out.write(\"\\n\");\n }\n } catch (IOException e) {}\n finally //checks if the writter worked\n {\n try {\n if(out != null){\n out.close();//closes file for deletion and other manipulation\n } else {\n System.out.println(\"Buffer has not been initialized!\");\n }\n } catch (IOException e) {}\n }\n }", "public static void test000(String[] args) throws IOException\n {\n\n\n //System.out.println(sql_insert_shipto_template);\n\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SALES_ORGANIZATION_CODE%\", \"261\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%DC_SHORTNAME%\", \"PF\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SHIPTO_CODE%\", \"10156409\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%PRODUCT_CODE%\", \"10104574\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%STARTDATE%\", \"01.02.2014\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%FINISHDATE%\", \"31.12.9999\");\n\n\n // String test = \"1\\t2\\t3\\n4\\t5\\t6\";\n\n String test = \"SO;SHIPTO;SHIPTO;DCSHORT;REP;GRD;Name;start date;end date\\n\" +\n \"261;10156405PF;10156405;PF;249394;10104570;A.KORKUNOV DARK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"261;10156405CH;10156405;CH;249410;10104542;A.KORKUNOV MILK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"377;10156409PF;10156409;PF;249399;10104574;A.KORKUNOV DARK ALMOND 5*10*100G;07.10.2014;31.12.9999\\n\";\n\n\n //CSVParser parser = CSVParser.parse(test, CSVFormat.newFormat(';'));\n File file = new File(\"c:\\\\MATDET_SHIPTO_EXAMPLE.csv\");\n CSVParser parser = CSVParser.parse(file, java.nio.charset.Charset.defaultCharset(), CSVFormat.newFormat(';'));\n\n int rownum = 0;\n for (CSVRecord strings : parser)\n {\n\n if (rownum++ == 0)\n continue;\n String SO = strings.get(0);\n String SHIPTO = strings.get(2);\n String DCSHORT = strings.get(3);\n //String REP = strings.get(4);\n String PRODUCT = strings.get(5);\n String START = strings.get(7);\n String END = strings.get(8);\n\n String temp = SQL_INSERT_TMATDET_SHIPTO_TEMPLATE;\n temp = temp.replaceAll(\"%SALES_ORGANIZATION_CODE%\", SO);\n temp = temp.replaceAll(\"%DC_SHORTNAME%\", DCSHORT);\n temp = temp.replaceAll(\"%SHIPTO_CODE%\", SHIPTO);\n temp = temp.replaceAll(\"%PRODUCT_CODE%\", PRODUCT);\n temp = temp.replaceAll(\"%STARTDATE%\", START);\n temp = temp.replaceAll(\"%FINISHDATE%\", END);\n\n\n System.out.println(temp);\n }\n\n System.out.println(\"rows=\" + rownum);\n\n\n// CsvParser parser = new CsvParserImpl();\n// CSV\n// parser.\n// List parsed = parser.parse(\"1\\t2\\t3\\n4\\t5\\t6\");\n// System.out.println(parsed.get(0));\n\n //System.out.println(sql_insert_shipto_template);\n\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void exportCSV(ActionEvent actionEvent) {\n\t\tLOGGER.info(\"Exportando ficheros CSV\");\n\t\ttry {\n\t\t\tDirectoryChooser dir = new DirectoryChooser();\n\t\t\tFile file = new File(ConfigHelper.getProperty(\"csvFolderPath\", \"./\"));\n\t\t\tif (file.exists() && file.isDirectory()) {\n\t\t\t\tdir.setInitialDirectory(file);\n\t\t\t}\n\n\t\t\tFile selectedDir = dir.showDialog(controller.getStage());\n\t\t\tif (selectedDir != null) {\n\t\t\t\tCSVBuilderAbstract.setPath(selectedDir.toPath());\n\t\t\t\tCharsets charset = controller.getMainConfiguration().getValue(MainConfiguration.GENERAL, \"charset\");\n\t\t\t\tCSVExport.run(charset.get());\n\t\t\t\tUtilMethods.infoWindow(I18n.get(\"message.export_csv_success\") + selectedDir.getAbsolutePath());\n\t\t\t\tConfigHelper.setProperty(\"csvFolderPath\", selectedDir.getAbsolutePath());\n\t\t\t}\n\n\t\t} catch (Exception e) {\n\t\t\tLOGGER.error(\"Error al exportar ficheros CSV.\", e);\n\t\t\tUtilMethods.errorWindow(I18n.get(\"error.savecsvfiles\"), e);\n\t\t}\n\t}", "private static void SaveTable(Class<?> itemClass, List<CSVItem> data) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException, NoSuchFieldException {\n\t\tString tl = (String)itemClass.getMethod(\"readTitle\").invoke(null, null);\n\t\tString val = \"\";\n\t\tString fn = (String)itemClass.getField(\"file\").get(val);\n\t\t\n\t\t\n\t\t\n\t\tfn = \"C:\\\\Users\\\\Chebakov.AA\\\\neo4j\\\\import\\\\pitc\\\\\" + fn + \".csv\";\n\t\ttry (OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(fn), \"UTF8\")) { //\"cp1251\"\n\t\t\tout.write(tl + \"\\r\\n\");\n\t\t\tdata.stream()\n\t\t\t\t.map(v -> v.readDataRow())\n\t\t\t\t.forEach(v -> {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tout.write(v + \"\\r\\n\");\n\t\t\t\t\t} catch (IOException e) {\n\t\t\t\t\t\te.printStackTrace();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t} catch (FileNotFoundException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (UnsupportedEncodingException e) {\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "protected void changeCSV(CSVDocument doc, int row, int col) {\n doc.moveRowUp(row);\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // InternalCsv.g:80:1: ( ruleLanguage EOF )\n // InternalCsv.g:81:1: ruleLanguage EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageRule()); \n }\n pushFollow(FOLLOW_1);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public boolean saveData(String gameType, Board board, int time, String name1, String name2,\n String playerType1, String playerType2, int turn) throws IOException{\n System.out.println(\"Saving....\");\n nameFile(SAVE);\n m_FileName = PATH+ m_FileName +FILETYPE;\n m_Writer = new CSVWriter(new FileWriter(m_FileName));\n m_Data = new ArrayList<String[]>();\n m_LoadBoard = board.getBoard();\n\n for (int i = 0; i < BOARD_ROWS; i++) {\n for (int j = 0; j < BOARD_COLS; j++) {\n if (m_LoadBoard[j][i].getColour().equals(\"Red\")){\n m_Data.add(new String[] {gameType, String.valueOf(j), String.valueOf(i), m_LoadBoard[j][i].getColour(),\n name1, playerType1, String.valueOf(turn), String.valueOf(time)});\n\n } else if (m_LoadBoard[j][i].getColour().equals(\"Yellow\")){\n m_Data.add(new String[] {gameType, String.valueOf(j), String.valueOf(i), m_LoadBoard[j][i].getColour(),\n name2, playerType2, String.valueOf(turn), String.valueOf(time)});\n\n } else {\n m_Data.add(new String[] {gameType, String.valueOf(j), String.valueOf(i),\n m_LoadBoard[j][i].getColour(), \"\", \"\", String.valueOf(turn), String.valueOf(time)});\n }\n }\n }\n m_Writer.writeAll(m_Data);\n m_Writer.close();\n return true;\n }", "public static void writeToCSV() {\n final String CSV_SEPARATOR = \",\";\n final String QUOTE = \"\\\"\";\n if (!Crawler.getKeyWordsHits().isEmpty()) {\n try (BufferedWriter bufferedWriter =\n new BufferedWriter(\n new OutputStreamWriter(\n new FileOutputStream(\"results.csv\", true), StandardCharsets.UTF_8))) {\n\n Crawler.getKeyWordsHits().forEach((keyWord, hitsNumber) -> {\n String oneLine = QUOTE + keyWord + QUOTE +\n CSV_SEPARATOR +\n hitsNumber;\n try {\n bufferedWriter.write(oneLine);\n bufferedWriter.newLine();\n } catch (IOException e) {\n e.printStackTrace();\n }\n });\n String lastLine = QUOTE + Crawler.getUrl() + QUOTE + CSV_SEPARATOR + Crawler.getTotalHits();\n bufferedWriter.write(lastLine);\n bufferedWriter.newLine();\n bufferedWriter.flush();\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n Crawler.setKeyWordsHits(new HashMap<>());\n Crawler.setTotalHits(0);\n }", "private void saveToFile(Agent agent, String _login)\n {\n File file = new File(_login + \".csv\");\n FileWriter fw;\n BufferedWriter bw;\n try {\n fw = new FileWriter(file, false);\n bw = new BufferedWriter (fw);\n String csvData = agent.getCSVData();\n bw.write(csvData);\n bw.close();\n fw.close();\n }\n catch(IOException ioEx) {\n JOptionPane.showMessageDialog(null, ioEx.getMessage());\n }\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private void openCsvDialog(){\n JFileChooser aFileChooser = new JFileChooser();\n aFileChooser.setFileFilter(new MyFileFilterCSV());\n if (lastUsedFileCSV != null){\n aFileChooser.setCurrentDirectory(lastUsedFileCSV.getParentFile());\n aFileChooser.setSelectedFile(lastUsedFileCSV);\n }else{\n File file = new File(aFileChooser.getCurrentDirectory(), dataset.getName()+\".csv\");\n aFileChooser.setSelectedFile(file);\n }\n int r = aFileChooser.showSaveDialog(this);\n if (r == JFileChooser.APPROVE_OPTION){\n setCursor(new Cursor(Cursor.WAIT_CURSOR));\n File file = aFileChooser.getSelectedFile();\n if(!MyUtilities.isCSVFile(file)){\n file = MyUtilities.getCSVFile(file);\n }\n lastUsedFileCSV = file;\n String sep = getCSVSeparator();\n PrintWriter writer = null;\n try{\n writer = new PrintWriter(new BufferedWriter (new OutputStreamWriter(new FileOutputStream(file), \"utf-8\")));\n // header\n String s = \"\";\n for(int j=0; j<dataset.getListDataHeader().length; j++){\n s += dataset.getListDataHeader()[j] == null? \"\" : dataset.getListDataHeader()[j].getValue();\n if(j <dataset.getListDataHeader().length -1)\n s+= sep;\n }\n writer.println(s);\n // data\n Data[][] data = dataset.getData();\n int nbR = dataset.getNbRows();\n int nbC = dataset.getNbCol();\n for(int i=0; i<nbR; i++){\n s = \"\";\n for(int j=0; j<nbC; j++){\n if(data[i][j] != null){\n if(data[i][j].isDoubleValue()){\n if(!Double.isNaN(data[i][j].getDoubleValue()))\n s += NumberFormat.getNumberInstance(getLocale()).format(data[i][j].getDoubleValue());\n }else{\n s += data[i][j].getValue();\n }\n }\n if(j <nbC -1)\n s+= sep;\n }\n writer.println(s);\n }\n //log\n\t\tdataProcessToolPanel.logExportCSV(dataset, file.getPath());\n }catch (IOException e){\n setCursor(new Cursor(Cursor.DEFAULT_CURSOR));\n displayError(new CopexReturn(getBundleString(\"MSG_ERROR_CSV\"), false), getBundleString(\"TITLE_DIALOG_ERROR\"));\n }\n finally{\n if (writer != null)\n try{\n writer.close();\n setCursor(new Cursor(Cursor.DEFAULT_CURSOR));\n }catch (Exception e){\n setCursor(new Cursor(Cursor.DEFAULT_CURSOR));\n displayError(new CopexReturn(getBundleString(\"MSG_ERROR_CSV\"), false), getBundleString(\"TITLE_DIALOG_ERROR\"));\n }\n }\n }\n }", "public interface DboCsvTransformer<DBO extends DatabaseObject<?>> extends DboFileTransformer<DBO> {\n\n String COMMA_IN_QUOTES_REGEX = \",(?=(?:[^\\\\\\\"]*\\\\\\\"[^\\\\\\\"]*\\\\\\\")*[^\\\\\\\"]*$)\";\n\n /**\n * This method consumes a single line of CSV to produce a DatabaseObject.\n *\n * @param csv the single line of CSV representing a single DatabaseObject\n * @return the DatabaseObject represented\n * @throws TransformerException if the object cannot be produced\n */\n @Override\n DBO consume(String csv) throws TransformerException;\n\n /**\n * This method consumes a DatabaseObject to produce a String in CSV format.\n *\n * @param object the DatabaseObject\n * @return a String in CSV format\n * @throws TransformerException if the object cannot be consumed\n */\n @Override\n String produce(DBO object) throws TransformerException;\n\n}", "private void exportTabDelim() {\n boolean modOK = modIfChanged();\n int exported = 0;\n if (modOK) {\n fileChooser.setDialogTitle (\"Export to Tab-Delimited\");\n fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);\n File selectedFile = fileChooser.showSaveDialog (this);\n if (selectedFile != null) {\n TabDelimFile tabs = new TabDelimFile(selectedFile);\n try {\n tabs.openForOutput(ClubEvent.getRecDef());\n for (int i = 0; i < clubEventList.size(); i++) {\n ClubEvent nextClubEvent = clubEventList.get(i);\n if (nextClubEvent != null) {\n tabs.nextRecordOut(nextClubEvent.getDataRec());\n exported++;\n }\n }\n tabs.close();\n JOptionPane.showMessageDialog(this,\n String.valueOf(exported) + \" Club Events exported successfully to\"\n + GlobalConstants.LINE_FEED\n + selectedFile.toString(),\n \"Export Results\",\n JOptionPane.INFORMATION_MESSAGE,\n Home.getShared().getIcon());\n logger.recordEvent (LogEvent.NORMAL, String.valueOf(exported) \n + \" Club Events exported in tab-delimited format to \" \n + selectedFile.toString(),\n false);\n statusBar.setStatus(String.valueOf(exported) \n + \" Club Events exported\");\n } catch (java.io.IOException e) {\n logger.recordEvent (LogEvent.MEDIUM,\n \"Problem exporting Club Events to \" + selectedFile.toString(),\n false);\n trouble.report (\"I/O error attempting to export club events to \" \n + selectedFile.toString(),\n \"I/O Error\");\n statusBar.setStatus(\"Trouble exporting Club Events\");\n } // end if I/O error\n } // end if user selected an output file\n } // end if were able to save the last modified record\n }", "public final void mRULE_COMMA() throws RecognitionException {\n try {\n int _type = RULE_COMMA;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12801:12: ( ',' )\n // ../org.sqlproc.meta/src-gen/org/sqlproc/meta/parser/antlr/internal/InternalProcessorMeta.g:12801:14: ','\n {\n match(','); \n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "String toCSVString();", "@Override\n DBO consume(String csv) throws TransformerException;", "public interface CSVSerializable\n{\n\t//Parse string arguments to this object\n\tvoid parse(String[] args) throws Exception;\n\n\t//Return CSV format string\n\tString[] toCSV() throws Exception;\n\n\t//Get number of arguments or variables\n\tint getNumberOfArguments();\n}", "@Update({ \"update csv_file\", \"set pid = #{pid,jdbcType=VARCHAR},\", \"filename = #{filename,jdbcType=VARCHAR},\",\n\t\t\t\"start_time = #{startTime,jdbcType=TIMESTAMP},\", \"end_time = #{endTime,jdbcType=TIMESTAMP},\",\n\t\t\t\"length = #{length,jdbcType=INTEGER},\", \"density = #{density,jdbcType=DOUBLE},\",\n\t\t\t\"machine = #{machine,jdbcType=VARCHAR},\", \"ar = #{ar,jdbcType=BIT},\", \"path = #{path,jdbcType=VARCHAR},\",\n\t\t\t\"size = #{size,jdbcType=BIGINT},\", \"uuid = #{uuid,jdbcType=CHAR},\",\n\t\t\t\"header_time = #{headerTime,jdbcType=TIMESTAMP},\", \"last_update = #{lastUpdate,jdbcType=TIMESTAMP},\",\n\t\t\t\"conflict_resolved = #{conflictResolved,jdbcType=BIT},\", \"status = #{status,jdbcType=INTEGER},\",\n\t\t\t\"comment = #{comment,jdbcType=VARCHAR},\", \"width = #{width,jdbcType=INTEGER},\",\n\t\t\t\"start_version = #{startVersion,jdbcType=INTEGER},\", \"end_version = #{endVersion,jdbcType=INTEGER}\",\n\t\t\t\"where id = #{id,jdbcType=INTEGER}\" })\n\tint updateByPrimaryKey(CsvFile record);", "protected AbstractCSVParser(TokenStream input) {\n super(input);\n }", "public static void save(ArrayList<String> inputsInOrder) throws IOException {\r\n\t\tboolean start = true;\r\n\r\n\t\tFileWriter filewrite = new FileWriter(csv);\r\n\t\tfor (String str : inputsInOrder) {\r\n\t\t\tif (start == true) {\r\n\t\t\t\tfilewrite.write(str);\r\n\t\t\t\tstart = false;\r\n\t\t\t} else {\r\n\t\t\t\tfilewrite.write(\",\");\r\n\t\t\t\tfilewrite.write(str);\r\n\t\t\t}\r\n\t\t}\r\n\t\tfilewrite.flush();\r\n\t\tfilewrite.close();\r\n\t}", "private void writeBatchToFile(ArrayList<SensorEntry> batch) {\n\n\t\tFile file = new File(currFolder + \"/\" + entriesRecorded + \".csv\");\n\n\t\ttry {\n\n\t\t\tFileOutputStream outputStream = new FileOutputStream(file);\n\n\t\t\tif (!file.exists()) {\n\t\t\t\tfile.createNewFile();\n\t\t\t\toutputStream.write(Constants.INS_DATA_HEADER.getBytes());\n\t\t\t}\n\n\t\t\tfor (SensorEntry e : batch)\n\t\t\t\toutputStream.write((e.toRawString() + \",\" + e.getTimeRecorded() + \"\\n\").getBytes());\n\n\t\t\toutputStream.close();\n\n\t\t\tsetsOfEntriesRecorded++;\n\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\n\t}", "private void miSalvareActionPerformed(java.awt.event.ActionEvent evt) { \n if (!model.isEmpty()) {\n int response = JOptionPane.showConfirmDialog(this, \"Doriti sa salvati lista de contacte?\", \"Salvare\", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);\n if (response == JOptionPane.YES_OPTION) {\n try {\n JFileChooser chooser = new JFileChooser();\n chooser.showSaveDialog(this);\n File list = new File(chooser.getSelectedFile().getAbsolutePath() + \".csv\");\n PrintWriter writer = new PrintWriter(list);\n StringBuilder sb = new StringBuilder();\n\n sb.append(\"Nume\");\n sb.append(\",\");\n sb.append(\"Prenume\");\n sb.append(\",\");\n sb.append(\"Data nasterii\");\n sb.append(\",\");\n sb.append(\"Numar Telefon\");\n sb.append(\",\");\n sb.append(\"\\r\\n\");\n\n listaContacte.stream().map((c) -> {\n sb.append(c.getNume());\n return c;\n }).map((c) -> {\n sb.append(\",\");\n sb.append(c.getPrenume());\n return c;\n }).map((c) -> {\n sb.append(\",\");\n String dataNasterii[] = c.getDataNasterii().toString().split(\"-\");\n String a = dataNasterii[0];\n String l = dataNasterii[1];\n String z = dataNasterii[2];\n String dt = z + \".\" + l + \".\" + a;\n sb.append(dt);\n sb.append(\",\");\n sb.append(c.getNrTel().toString());\n return c;\n }).forEachOrdered((_item) -> {\n sb.append(\"\\r\\n\");\n });\n\n writer.write(sb.toString());\n writer.close();\n\n } catch (FileNotFoundException ex) {\n Logger.getLogger(MainForm.class.getName()).log(Level.SEVERE, null, ex);\n }\n }\n }\n }", "public static void main(String[] args) {\n String fileName= \"ToRead.csv\";\n //running tally\n int runningNum = 0;\n //this is the add/subtract field\n String action = \"\";\n //Identifying the end\n String terminator = \"=\";\n //how many elements there are\n int elements = 0;\n //current number\n int current = 0;\n //average\n float avg = 0;\n //the file\n File file= new File(fileName);\n //to read in data\n Scanner inputStream;\n //results file!\n PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(\"results.csv\")));\n\n //This checking to make sure that there is a file to read\n try {\n inputStream = new Scanner(file);\n //while more data, continue reading through\n while(inputStream.hasNext()){\n //read data in\n String line = inputStream.next();\n //increase elements by 1\n elements = elements + 1;\n //So long as the read in doesn't include =\n if (line.indexOf(terminator) == -1) {\n //makes the first value into an int\n current = Character.getNumericValue(line.charAt(1));\n //These check for the sign, update action, and update the runningNum\n if (line.contains(\"+\")) {\n action = \"Add \";\n runningNum = runningNum + current;\n } else if (line.contains(\"-\")) {\n action = \"Subtract \";\n runningNum = runningNum - current;\n } else if (line.contains(\"*\")) {\n action = \"Multiply \";\n runningNum = runningNum * current;\n } else {\n action = \"Divide \";\n runningNum = runningNum / current;\n }\n //Once done, it pushes the sentence to the new csv\n out.println(results, action + current + \" total \" + runningNum + \"\\n\");\n //results.write(action + current + \" total \" + runningNum + \"\\n\");\n //System.out.println(action + current + \" total \" + runningNum + \"\\n\");\n }\n //If it is =, then the program pushes the final summation statement to the new csv, and then sets the file elements to their default values\n else {\n avg = (float) runningNum / (float) elements;\n out.println(\"Number of elements = \" + elements + \", Total = \" + runningNum + \", Average = \" + avg +\"\\n\");\n current = 0;\n elements = 0;\n runningNum = 0;\n action = \"\";\n avg = 0;\n }\n }\n //closes the inputStream\n inputStream.close();\n }\n //catches if there isn't a file\n catch (FileNotFoundException e) {\n e.printStackTrace();\n }\n }", "public void convertCsvDataToSQLScrip(List<CorruptionIndex> data, String destinationFile){\n\n }", "public Fixed2Csv(final AbstractLineReader reader,\n \t final String outfile,\n \t final String font,\n \t final String sep,\n \t final String quote, \n \t final IUpdateFieldName updateFldName) {\n super();\n try {\n copyFile(reader, outfile, font, sep, quote, updateFldName);\n } catch (IOException e) {\n e.printStackTrace();\n }\n\n }", "public final void rule__NbCol__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3829:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n // InternalCsv.g:3831:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3832:3: ( RULE_ID )\n // InternalCsv.g:3833:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private void saveMarkovToCSVFileInformation(){\n //Clear out the current NewCensusColumnDetails before saving.\n this.currentMarkovChain.setNewCensusColumnDetails(new ArrayList<NewCensusColumnDetails>());\n \n ArrayList<NewCensusColumnDetails> newCensusColumnDetails = new ArrayList<>();\n \n ArrayList<cerl.gui.utilities.Class> censusClasses = this.currentMarkovChain.getCensusClasses();\n List<SurveyColumnValuesGrouping> surveyGroupings = this.currentMarkovChain.getSelectSurveyClass().getSurveyColumnValuesGroupings();\n\n /**\n * These will be used to find the min and max values stored in the grid. \n * \n * Row data starts at index 1.\n * Column data starts at index 2.\n */\n int rowToStartAt = START_EDITABLE_ROW;\n \n for(int surveyCounter = 0; surveyCounter < surveyGroupings.size(); surveyCounter++){ //rows\n int currentColumnNumber = START_EDITABLE_COL;\n SurveyColumnValuesGrouping surveyGrouping = surveyGroupings.get(surveyCounter);\n\n double newTotalRandomNumber = 0;\n ArrayList<Integer> oldValueLookUpColumns = new ArrayList<Integer>();\n\n for(int censusCounter = 0; censusCounter < censusClasses.size(); censusCounter++){ //columns\n cerl.gui.utilities.Class censusClass = censusClasses.get(censusCounter);\n oldValueLookUpColumns.add(censusClass.getColumnNumber());\n\n double[] minMaxValues = this.myTable.getMinMaxObject(rowToStartAt + surveyCounter, currentColumnNumber);\n\n double foundMin = minMaxValues[0];\n double foundMax = minMaxValues[1];\n\n double foundRandomNumber = 0.0;\n if(foundMin == foundMax){\n foundRandomNumber = foundMax;\n }else {\n foundRandomNumber = ThreadLocalRandom.current().nextDouble(foundMin, foundMax);\n foundRandomNumber = Math.round(foundRandomNumber * 100.0) / 100.0;\n }\n\n newTotalRandomNumber += foundRandomNumber;\n if(currentColumnNumber < END_EDITABLE_COL){\n currentColumnNumber++;\n }\n }\n\n //set min and max numbers\n //New column header that will appear in the new csv file\n NewCensusColumnDetails details = new NewCensusColumnDetails(\n surveyGrouping.toString(), \n newTotalRandomNumber,\n oldValueLookUpColumns,\n 0\n );\n\n newCensusColumnDetails.add(details);\n }\n \n newCensusColumnDetails = setCensusTotalColumns(newCensusColumnDetails);\n \n //Add the new NewCensusColumnDetails to the current MarkovChain object\n this.currentMarkovChain.setNewCensusColumnDetails(newCensusColumnDetails);\n }", "private static void writeRecords(Collection<Record> values)\n throws IOException {\n for (Record record : values) {\n writer2.writeRecord(record.makeup());\n // over write, update writer\n // System.out.println(lineNum);\n if (++lineNum > Merge.lineNumbers.get(fileNum)) {\n writer2.flush();\n writer2.close();\n\n fileNum++;\n lineNum = 0;\n writer2 = new CsvWriter(new OutputStreamWriter(\n new FileOutputStream(SORT_USER_FN + fileNum + \".csv\"),\n \"UTF-8\"), ',');\n }\n }\n\n }", "private static void export(Tensor tensor, String filterType, int index, int radius, SmoothingKernel smoothingKernel) throws IOException {\n try (FileWriter writer = new FileWriter(\"030619_\" + filterType + \"_\" + smoothingKernel.toString() + \"_\" + radius + \"_\" + index + \".csv\")) {\n StringBuilder sb = new StringBuilder();\n for (int i = 0; i < tensor.length(); i++) {\n sb.append(tensor.get(i).Get(0).toString());\n sb.append(\",\");\n sb.append(tensor.get(i).Get(1).toString());\n sb.append(\",\");\n sb.append(tensor.get(i).Get(2).toString());\n sb.append(\"\\n\");\n }\n writer.write(sb.toString());\n }\n }", "@java.lang.Override\n public boolean hasCsv() {\n return schemaCase_ == 6;\n }", "private ActionErrors storeCsvFile(HttpServletRequest request, FormFile csvFile) {\n ActionErrors errors = new ActionErrors();\n HttpSession session = request.getSession();\n String savePath = generateSavePath(session);\n File file = new File(savePath);\n InputStream inputStream = null;\n FileOutputStream outputStream = null;\n try {\n file.createNewFile();\n inputStream = csvFile.getInputStream();\n outputStream = new FileOutputStream(file, false);\n IOUtils.copy(inputStream, outputStream);\n removeStoredCsvFile(request);\n session.setAttribute(CSV_FILE_PATH_KEY, savePath);\n session.setAttribute(CSV_ORIGINAL_FILE_NAME_KEY, csvFile.getFileName());\n fileUploadPerformed = true;\n } catch (IOException e) {\n errors.add(\"csvFile\", new ActionMessage(\"error.import.no_file\"));\n return errors;\n } finally {\n \tIOUtils.closeQuietly(inputStream);\n \tIOUtils.closeQuietly(outputStream);\n }\n return errors;\n }", "@Test\n public void testCSVHandlerForEdges() throws IOException, URISyntaxException {\n val csvHandler = TestInjector.create(CSVHandler.class);\n // todo clean this up but also keep it working on windows\n val input = Paths.get(getClass().getResource(\"PrototypeEdges.csv\").toURI()).toString();\n val output = \"build/Edges.csv\";\n\n //nodes must be imported first so that they can be recognized while importing edges\n val nodesPath = Paths.get(getClass().getResource(\"PrototypeNodes.csv\").toURI()).toString();\n csvHandler.importNodes(nodesPath);\n\n csvHandler.importEdges(input);\n csvHandler.exportEdges(output);\n val inputLines = Files.readAllLines(Paths.get(input));\n val outputLines = Files.readAllLines(Paths.get(output));\n assertEquals(inputLines.size(), outputLines.size());\n assertEquals(inputLines.get(0), outputLines.get(0)); // make sure header lines are the same\n assertTrue(outputLines.containsAll(inputLines));\n assertTrue(inputLines.containsAll(outputLines));\n }", "public final void entryRuleValidID() throws RecognitionException {\n try {\n // InternalCsv.g:580:1: ( ruleValidID EOF )\n // InternalCsv.g:581:1: ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_1);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getValidIDRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "private static void memberExport(String club, HttpServletResponse resp, PrintWriter out, HttpServletRequest req, Connection con) {\r\n\r\n \r\n Statement stmt = null;\r\n ResultSet rs = null;\r\n \r\n //\r\n // First, verify club name and key as a security measure (all new clubs must be added here!)\r\n //\r\n if (!club.equals(\"interlachen\") || !req.getParameter(\"key\").equals(\"asdf\")) {\r\n \r\n Utilities.logError(\"dataLoader.memberExport - Unknown Club or Key: Club = \" +club+ \", key = \" +req.getParameter(\"key\")+ \", todo = memberExport\");\r\n out.print(\"Error: Improper request. Invalid club or key.\");\r\n return;\r\n }\r\n \r\n resp.setContentType(\"text/csv\"); // text-csv file\r\n resp.setHeader(\"Content-Disposition\", \"attachment;filename=\\\"\"+club+\"-login-counts.csv\\\"\"); \r\n \r\n StringBuffer sb = new StringBuffer(\"\"); // Use a stringbuffer to hold the records\r\n \r\n //\r\n // Add header row\r\n //\r\n sb.append(\"\\\"ForeTees Id\\\",\");\r\n sb.append(\"\\\"Member #\\\",\");\r\n sb.append(\"\\\"Membership\\\",\");\r\n sb.append(\"\\\"Member Type\\\",\");\r\n sb.append(\"\\\"Total Logins\\\",\");\r\n sb.append(\"\\\"Mobile Logins\\\",\");\r\n sb.append(\"\\\"App Logins\\\"\\n\");\r\n \r\n try {\r\n\r\n //\r\n // Get member info and output as table rows\r\n //\r\n if (con != null) {\r\n \r\n stmt = con.createStatement(); \r\n \r\n String sql = \"\" +\r\n \"SELECT id, username, count, m_ship, m_type, mobile_count, mobile_app_count \" +\r\n \"FROM member2b \" +\r\n \"WHERE inact=0 AND billable = 1\";\r\n \r\n rs = stmt.executeQuery(sql);\r\n \r\n while (rs.next()) {\r\n\r\n sb.append(\"\\\"\" + rs.getInt(\"id\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getString(\"username\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getString(\"m_ship\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getString(\"m_type\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getInt(\"count\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getInt(\"mobile_count\") + \"\\\",\");\r\n sb.append(\"\\\"\" + rs.getInt(\"mobile_app_count\") + \"\\\"\\n\");\r\n }\r\n \r\n stmt.close();\r\n }\r\n \r\n out.print(sb.toString()); // output the file\r\n \r\n } catch (Exception e) {\r\n\r\n Utilities.logError(\"Error in dataLoader.memberExport for club: \" + club + \". Exception= \" + org.apache.commons.lang.exception.ExceptionUtils.getStackTrace(e));\r\n out.print(\"Error: Database error gathering member data.\");\r\n\r\n } finally {\r\n\r\n try { rs.close(); }\r\n catch (Exception ignore) {}\r\n\r\n try { stmt.close(); }\r\n catch (Exception ignore) {}\r\n }\r\n\r\n }", "public void loadCSVData() throws IOException, SQLException {\r\n //SQL statement to load csv information into data table\r\n String insertvaluesSQL = \"INSERT INTO data\"\r\n + \"(InvoiceNo, StockCode, Description, Quantity, InvoiceDate, UnitPrice, CustomerID, Country)\"\r\n + \" VALUES (?,?,?,?,?,?,?,?);\";\r\n\r\n //code to read csv file taken from W03 practical\r\n BufferedReader br = new BufferedReader(new FileReader(filePath));\r\n String line = br.readLine();\r\n String[] informationArray;\r\n while (line != null) {\r\n informationArray = line.split(\",\");\r\n PreparedStatement preparedStatement = connection.prepareStatement(insertvaluesSQL);\r\n //the first '?' corresponds to the 0th term in the information array\r\n //the second '?' corresponds to the 1st term in the information array\r\n for (int i = 1; i < 9; i++) {\r\n preparedStatement.setString(i, informationArray[i - 1]);\r\n }\r\n preparedStatement.executeUpdate();\r\n line = br.readLine();\r\n }\r\n Statement statement = connection.createStatement();\r\n statement.executeUpdate(\"DELETE FROM data WHERE InvoiceNo = 'InvoiceNo';\");\r\n statement.close();\r\n }", "public final void mT__46() throws RecognitionException {\n try {\n int _type = T__46;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalVizualizer.g:46:7: ( 'CSV' )\n // InternalVizualizer.g:46:9: 'CSV'\n {\n match(\"CSV\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public static void readFromCSVIntoTable() {\n try {\n for (String tn : ORDERED_TABLE_NAMES) {\n handle.execute(buildInsertIntoFromCSV(tn));\n }\n } catch (Throwable e) {\n itsLogger.error(e.getMessage(), e);\n }\n\n }", "public CSVExporter() {\n super(NAME, CONTENTTYPE);\n }", "public static File createExtraColsFile(ClinicalCode parser, EmisCsvHelper csvHelper) throws Exception {\n\n //use the CSV helper thread pool to perform multiple lookups in parallel\n List<Long> codeIds = new ArrayList<>();\n Map<Long, String> hmAdjustedCodes = new ConcurrentHashMap<>();\n Map<Long, Integer> hmIsEmisCodes = new ConcurrentHashMap<>(); //use int rather than boolean so we end up with 1 or 0 not \"true\" or \"false\"\n Map<Long, String> hmSnomedTerms = new ConcurrentHashMap<>();\n\n try {\n\n Task nextTask = new Task(hmAdjustedCodes, hmIsEmisCodes, hmSnomedTerms);\n\n while (parser.nextRecord()) {\n CsvCell codeIdCell = parser.getCodeId();\n CsvCell readCodeCell = parser.getReadTermId();\n CsvCell snomedConceptIdCell = parser.getSnomedCTConceptId();\n\n long codeId = codeIdCell.getLong().longValue();\n String readCode = readCodeCell.getString();\n Long snomedConceptId = snomedConceptIdCell.getLong();\n\n codeIds.add(new Long(codeId));\n\n //perform the lookups in the thread pool\n nextTask.addRecord(codeId, readCode, snomedConceptId);\n if (nextTask.isFull()) {\n csvHelper.submitToThreadPool(nextTask);\n nextTask = new Task(hmAdjustedCodes, hmIsEmisCodes, hmSnomedTerms);\n }\n }\n\n //finish off the current task\n if (!nextTask.isEmpty()) {\n csvHelper.submitToThreadPool(nextTask);\n }\n\n } finally {\n csvHelper.waitUntilThreadPoolIsEmpty();\n }\n\n //then write out the results to file\n File tempDir = FileHelper.getTempDir();\n File subTempDir = new File(tempDir, UUID.randomUUID().toString());\n if (!subTempDir.exists()) {\n boolean createDir = subTempDir.mkdirs();\n if (!createDir) {\n throw new Exception(\"Failed to create temp dir \" + subTempDir);\n }\n }\n\n File dstFile = new File(subTempDir, \"EmisCodeExtraCols.csv\");\n\n FileOutputStream fos = new FileOutputStream(dstFile);\n OutputStreamWriter osw = new OutputStreamWriter(fos);\n BufferedWriter bufferedWriter = new BufferedWriter(osw);\n\n //the Emis records use Windows record separators, so we need to match that otherwise\n //the bulk import routine will fail\n CSVFormat format = EmisCsvToFhirTransformer.CSV_FORMAT\n .withHeader(\"CodeId\", \"AdjustedCode\", \"IsEmisCode\", \"SnomedTerm\")\n .withRecordSeparator(\"\\r\\n\");\n\n CSVPrinter printer = new CSVPrinter(bufferedWriter, format);\n\n for (Long codeId: codeIds) {\n String adjustedCode = hmAdjustedCodes.get(codeId);\n Integer isEmisCode = hmIsEmisCodes.get(codeId);\n String snomedTerm = hmSnomedTerms.get(codeId);\n\n printer.printRecord(codeId, adjustedCode, isEmisCode, snomedTerm);\n }\n\n printer.close();\n\n return dstFile;\n }", "private void saveCSV(ActionEvent actionEvent) {\n JFileChooser fileChooser = new JFileChooser();\n fileChooser.setCurrentDirectory(new File(System.getProperty(\"user.home\")));\n int result = fileChooser.showOpenDialog(this);\n if (result == JFileChooser.APPROVE_OPTION) {\n String selectedFile = fileChooser.getSelectedFile().getAbsolutePath();\n StatisticsFile statisticsFile = new StatisticsFile(selectedFile);\n try{\n statisticsFile.writeInCvs(my_map.getSettlements());\n }catch(IOException ioException){\n ioException.printStackTrace();\n }\n }\n }", "@Override\n public void csvExport(String filename, Grade grade) {\n PrintWriter out = null;\n try {\n out = new PrintWriter(filename);\n\n for (Student key : map.keySet()) {\n if (map.get(key).getLetter().equals(grade.getLetter())) {\n out.println(key.getFirst() + \", \" + key.getLast() + \", \" + key.getID());\n }\n }\n } catch (FileNotFoundException ex) {\n System.out.println(\"File was not found\");\n } finally {\n out.close();\n }\n }", "public final void entryRuleAstToken() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1155:1: ( ruleAstToken EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1156:1: ruleAstToken EOF\n {\n before(grammarAccess.getAstTokenRule()); \n pushFollow(FOLLOW_ruleAstToken_in_entryRuleAstToken2403);\n ruleAstToken();\n\n state._fsp--;\n\n after(grammarAccess.getAstTokenRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstToken2410); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public static void writeCSV(Calendar cal) {\n\n try {\n\n BufferedWriter bw = null;\n\n String fileString = \"P5Calendar.csv\";\n String fileLine = \"\";\n\n FileWriter fw = new FileWriter(fileString, false);\n bw = new BufferedWriter(fw);\n\n ArrayList<Activity> activities = cal.getActivities();\n\n for (int j = 0; j < 1; j++) {\n bw.write(\"Year\" + \",\" + \"Month\" + \",\" + \"Activity\" + \",\" + \"Role\" + \"\\n\");\n }\n\n for (int i = 0; i < activities.size(); i++) {\n Activity activity = activities.get(i);\n bw.append(activity.Year + \",\" + activity.Month + \",\" + activity.Name + \",\" + activity.Roles);\n }\n\n bw.close();\n\n } catch (IOException e) {\n\n e.printStackTrace();\n\n }\n\n }", "@java.lang.Override\n public boolean hasCsv() {\n return schemaCase_ == 6;\n }", "public final void rule__NbCol__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1612:1: ( ( () ) )\n // InternalCsv.g:1613:1: ( () )\n {\n // InternalCsv.g:1613:1: ( () )\n // InternalCsv.g:1614:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n // InternalCsv.g:1615:2: ()\n // InternalCsv.g:1615:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private void processCSVFile( BufferedReader csvFile ) throws IOException {\r\n\t\t\r\n\t\tboolean headerRowRead = false;\r\n\t\tString[] headerArray = null;\r\n\t\t\r\n\t\t//loop through all rows and create contacts\r\n\t\tString row = csvFile.readLine();\r\n\t\t\r\n\t\twhile (row != null) {\r\n\t\t\t\r\n\t\t\tif (row.length()==0 || row.startsWith(\"#\") || row.startsWith(\";\") ) {\t\t\r\n\t\t\t\t\r\n\t\t\t\t//empty or comment row: skip\r\n\t\t\t\t\r\n\t\t\t} else if (!headerRowRead) {\r\n\t\t\t\t\r\n\t\t\t\t//header row is the first non-blank, not-comment row in the CSV file\r\n\t\t\t\t//the required header row contains the attribute names\r\n\t\t\t\t\r\n\t\t\t\theaderRowRead = true;\r\n\t\t\t\t\r\n\t\t\t\t//read header\r\n\t\t\t\theaderArray = parseCSVLine( row, true); \t\t\r\n\t\t\t\tLogger.debug(\"header: \" + row);\r\n\t\t\t\t\r\n\t\t\t} else {\r\n\t\t\t\r\n\t\t\t\tHashMap<String,String> contactObject = ContactsImport.getRowValues(headerArray, row);\r\n\t\t\t\tcreateContact(contactObject);\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\trow = csvFile.readLine(); //read next line form csv file\r\n\t\t}\r\n\t\t\r\n\t\tLogger.debug(\"finished\");\r\n\r\n\t}", "public abstract void save(IntIntsCol col, DataOutputStream output) throws IOException;", "public final void mRULE_COMMA() throws RecognitionException {\r\n try {\r\n int _type = RULE_COMMA;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2465:12: ( ',' )\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2465:14: ','\r\n {\r\n match(','); \r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final void entryRuleActivity() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:118:1: ( ruleActivity EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:119:1: ruleActivity EOF\n {\n before(grammarAccess.getActivityRule()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_entryRuleActivity181);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getActivityRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleActivity188); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public static void writeNewCSV(Calendar cal) {\n\n try {\n\n BufferedWriter bw = null;\n\n String fileString = \"P5Calendar.csv\";\n String fileLine = \"\";\n\n FileWriter fw = new FileWriter(fileString, true);\n bw = new BufferedWriter(fw);\n\n ArrayList<Activity> activities = cal.getActivities();\n\n int lastElement = activities.size();\n Activity activity = activities.get(lastElement - 1);\n bw.write(activity.Year + \",\" + activity.Month + \",\" + activity.Name + \",\" + activity.Roles.name + \" \" + \"(\"\n + activity.Roles.subRole + \")\" + \"\\n\");\n\n bw.close();\n\n } catch (IOException e) {\n\n e.printStackTrace();\n\n }\n }", "public final void entryRuleAstExpressionExp() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1715:1: ( ruleAstExpressionExp EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:1716:1: ruleAstExpressionExp EOF\n {\n before(grammarAccess.getAstExpressionExpRule()); \n pushFollow(FOLLOW_ruleAstExpressionExp_in_entryRuleAstExpressionExp3603);\n ruleAstExpressionExp();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionExpRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstExpressionExp3610); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "void createCsv(String location);", "public static void writeCSV(List<Item> items) throws IOException {\n\n try (BufferedWriter writer = Files.newBufferedWriter(Paths.get(USER_ITEMS_FILE));\n\n CSVPrinter csvPrinter = new CSVPrinter(writer, CSVFormat.EXCEL.withHeader(\"itemNo\",\"Room\",\"Category\",\"Type\",\"make\",\"model\",\"serial\",\"receipt\",\"photo\",\"value\",\"comments\",\"lastupdate\",\"delete\",\"email_own\"));//4/30 JGP added email_own header\n ) {\n for (Item i: items) {\n if (!\"itemNo\".equals(i.getItemNo())) {\n csvPrinter.printRecord(i.getItemNo(), i.getRoom().getStatus(), i.getCategory().getCategory(), i.getType().getProductTypeString(), i.getMake(), i.getModel(), i.getSerial(), i.getReceipt(), i.getPhoto(), i.getValue(), i.getComments(), FORMATTER.format(new Date()).toString(), i.isDeleted().booleanValue(), i.email);//4/30 JGP added i.email string\n }\n }\n csvPrinter.flush();\n }\n\n /* EventBus eventBus = EventBusFactory.getEventBus();\n ParseEvent pevent = new ParseEvent(items);\n eventBus.register(pevent);\n eventBus.post(pevent);*/\n }", "public void saveCSV(Writer io, boolean addHeader, String fieldDelim)\n\t\t{\n\t\tSystem.out.println(\"field delim:\"+fieldDelim+\":\");\n\t\t\n\t\tPrintWriter pw=new PrintWriter(io);\n\t\t\n\t\tSet<String> col=getColumns();\n\t\t\n\t\t//Add header\n\t\tif(addHeader)\n\t\t\t{\n\t\t\tpw.print(\"frame\");\n\t\t\tpw.print(fieldDelim);\n\t\t\tpw.print(\"particle\");\n\t\t\tfor(String s:col)\n\t\t\t\t{\n\t\t\t\tpw.print(fieldDelim);\n\t\t\t\tpw.print(s);\n\t\t\t\t}\n\t\t\tpw.println();\n\t\t\t}\n\n\t\t//Write the data\n\t\tfor(EvDecimal frame:getFrames())\n\t\t\t{\n\t\t\tfor(Map.Entry<Integer, ParticleInfo> e:getFrame(frame).entrySet())\n\t\t\t\t{\n\t\t\t\tpw.print(frame);\n\t\t\t\tpw.print(fieldDelim);\n\t\t\t\tpw.print(e.getKey());\n\t\t\t\tMap<String,Object> props=e.getValue().map;\n\t\t\t\tfor(String columnName:col)\n\t\t\t\t\t{\n\t\t\t\t\tpw.print(fieldDelim);\n\t\t\t\t\tpw.print(props.get(columnName));\n\t\t\t\t\t}\n\t\t\t\tpw.println();\n\t\t\t\t}\n\t\t\t\n\t\t\t}\n\t\t\n\t\tpw.flush();\n\t\t}", "public ValidationInfo createCsv() {\n LocaleModule lm = LocaleManager.getInstance().getModule(LocaleModuleResource.Main);\n\n ValidationInfo vi = new ValidationInfo();\n if (_rows == null || _rows.size() == 0) {\n vi.setMessageWarning(lm.getString(\"general_export_nothing\"));\n return vi;\n }\n\n String fullFilePath = getFileName();\n\n StringBuilder sb = new StringBuilder();\n\n //create header\n String headerRow = _rows.get(0).createCsvRow(true);\n\n sb.append(headerRow + System.lineSeparator());\n\n try {\n //create rows\n for (Exportable e : _rows) {\n String rowString = e.createCsvRow(false);\n sb.append(rowString + System.lineSeparator());\n }\n\n //Output\n String strContent = sb.toString();\n Utils.writeFile(strContent, fullFilePath);\n\n vi.setMessageSuccess(String.format(lm.getString(\"general_export_success\"),\n _rows.size(), fullFilePath));\n } catch (Exception ex) {\n vi.setMessageError(lm.getString(\"general_export_error\"));\n }\n\n //open\n Utils.openFolder(fullFilePath);\n\n return vi;\n }" ]
[ "0.59826803", "0.5776559", "0.5648099", "0.5524759", "0.5388627", "0.51383454", "0.498873", "0.49544454", "0.48850295", "0.48704913", "0.484204", "0.4827088", "0.4777589", "0.47772992", "0.47761637", "0.477023", "0.47397774", "0.4690536", "0.46718076", "0.46636194", "0.46625543", "0.46239063", "0.46115267", "0.45907974", "0.45834914", "0.45816648", "0.45768052", "0.45588583", "0.45394734", "0.44797915", "0.4439284", "0.4415001", "0.44141263", "0.44106397", "0.44091955", "0.44068384", "0.43992543", "0.4379936", "0.43794557", "0.43714735", "0.43684685", "0.43605295", "0.43489656", "0.43310803", "0.43252066", "0.43217063", "0.4320426", "0.43178707", "0.43117675", "0.43040192", "0.42900327", "0.4274981", "0.42617503", "0.4260514", "0.42523012", "0.4235099", "0.42332798", "0.4225597", "0.4214747", "0.42046815", "0.41968915", "0.4180963", "0.4157033", "0.41485775", "0.41442406", "0.41252762", "0.41251054", "0.4122161", "0.41218203", "0.41199523", "0.41169077", "0.4114828", "0.41091996", "0.41055274", "0.41049242", "0.41031915", "0.40859705", "0.40859377", "0.40857768", "0.40799645", "0.40755364", "0.40747303", "0.40705425", "0.4070065", "0.40679637", "0.40621164", "0.40564996", "0.40534592", "0.40520746", "0.40513515", "0.40459314", "0.40347305", "0.4031609", "0.40226117", "0.40217617", "0.4017405", "0.40143088", "0.40105", "0.4006727", "0.40061718" ]
0.6943606
0
$ANTLR end "entryRuleSaveCSV" $ANTLR start "ruleSaveCSV" InternalCsv.g:263:1: ruleSaveCSV : ( ( rule__SaveCSV__Group__0 ) ) ;
public final void ruleSaveCSV() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:267:2: ( ( ( rule__SaveCSV__Group__0 ) ) ) // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) ) { // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) ) // InternalCsv.g:269:3: ( rule__SaveCSV__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getSaveCSVAccess().getGroup()); } // InternalCsv.g:270:3: ( rule__SaveCSV__Group__0 ) // InternalCsv.g:270:4: rule__SaveCSV__Group__0 { pushFollow(FOLLOW_2); rule__SaveCSV__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getSaveCSVAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__SaveCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1720:1: ( ( 'save' ) )\n // InternalCsv.g:1721:1: ( 'save' )\n {\n // InternalCsv.g:1721:1: ( 'save' )\n // InternalCsv.g:1722:2: 'save'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveKeyword_1()); \n }\n match(input,26,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleSaveCSV() throws RecognitionException {\n try {\n // InternalCsv.g:255:1: ( ruleSaveCSV EOF )\n // InternalCsv.g:256:1: ruleSaveCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1773:1: ( ( ( rule__SaveCSV__FileAssignment_3 )? ) )\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n {\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n // InternalCsv.g:1775:2: ( rule__SaveCSV__FileAssignment_3 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1776:2: ( rule__SaveCSV__FileAssignment_3 )?\n int alt13=2;\n int LA13_0 = input.LA(1);\n\n if ( (LA13_0==RULE_STRING) ) {\n alt13=1;\n }\n switch (alt13) {\n case 1 :\n // InternalCsv.g:1776:3: rule__SaveCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1747:1: ( ( ( rule__SaveCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1749:2: ( rule__SaveCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1750:2: ( rule__SaveCSV__OpenAssignment_2 )\n // InternalCsv.g:1750:3: rule__SaveCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public void saveCSVFile(String csvPath, String output) {\n this.csvPath = csvPath;\n BufferedWriter outputFile = null;\n\n try {\n outputFile = new BufferedWriter(new FileWriter(this.csvPath));\n if (this.header == null) {\n this.header = Rules.getDefaultHeaders();\n }\n outputFile.write(header);\n outputFile.write(output);\n outputFile.close();\n } catch (FileNotFoundException fnfe) {\n System.out.println(\"File not found\");\n } catch (IOException ioe) {\n System.out.println(\"Something went wrong\");\n }\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void exportGroupCsv(String fileToExport, String fileToSave) throws CommandException {\n try {\n JsonNode jsonFile = new ObjectMapper().readTree(new File(fileToExport));\n\n JsonNode jsonTree = jsonFile.get(\"groups\");\n CsvSchema.Builder csvSchemaBuilder = CsvSchema.builder();\n JsonNode firstObject = jsonTree.elements().next();\n firstObject.fieldNames().forEachRemaining(fieldName -> {\n csvSchemaBuilder.addColumn(fieldName);\n });\n CsvSchema csvSchema = csvSchemaBuilder.build().withHeader();\n\n CsvMapper csvMapper = new CsvMapper();\n csvMapper.writerFor(JsonNode.class)\n .with(csvSchema)\n .writeValue(new File(fileToSave), jsonTree);\n } catch (IOException ioe) {\n throw new CommandException(\n String.format(MESSAGE_INVALID_COMMAND_FORMAT));\n }\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3867:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3868:2: ( RULE_STRING )\n {\n // InternalCsv.g:3868:2: ( RULE_STRING )\n // InternalCsv.g:3869:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1465:1: ( rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2 )\n // InternalCsv.g:1466:2: rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__PrintCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13250:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13251:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13251:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13252:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_8_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_8_2__0__Impl26847); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_8_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleFinModelFile() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:74:2: ( ( ( rule__FinModelFile__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:75:1: ( ( rule__FinModelFile__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:75:1: ( ( rule__FinModelFile__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:76:1: ( rule__FinModelFile__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:77:1: ( rule__FinModelFile__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:77:2: rule__FinModelFile__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__0_in_ruleFinModelFile100);\r\n rule__FinModelFile__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "public final void rule__AstAction__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12936:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12938:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_6_1__0__Impl26229); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void save() {\r\n\t\ttry {\r\n\t\t\tFile csv = new File(\"src/transaction.csv\");\r\n\t\t\tBufferedWriter bw = new BufferedWriter(new FileWriter(csv, false));\r\n\t\t\tbw.write(\"type,account number,amount,year,month,date,cleared\");\r\n\t\t\tbw.newLine();\r\n\t\t\tfor (int i = 0; i < transList.size(); i++) {\r\n\t\t\t\tbw.write(transList.get(i).toFile());\r\n\t\t\t\tbw.newLine();\r\n\t\t\t}\r\n\t\t\tbw.close();\r\n\t\t} catch (FileNotFoundException e) {\r\n\t\t\te.printStackTrace();\r\n\t\t} catch (IOException e) {\r\n\t\t\te.printStackTrace();\r\n\t\t}\r\n\t}", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_7_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13093:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13094:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13094:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13095:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_7_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_7_2__0__Impl26538); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_7_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3848:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n // InternalCsv.g:3850:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3851:3: ( RULE_ID )\n // InternalCsv.g:3852:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12812:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12814:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_4_1__0__Impl25984); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__FinModelFile__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3406:1: ( ( ( rule__FinModelFile__Group_0__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3408:1: ( rule__FinModelFile__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:1: ( rule__FinModelFile__Group_0__0 )?\r\n int alt38=2;\r\n int LA38_0 = input.LA(1);\r\n\r\n if ( (LA38_0==71) ) {\r\n alt38=1;\r\n }\r\n switch (alt38) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:2: rule__FinModelFile__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0_in_rule__FinModelFile__Group__0__Impl7566);\r\n rule__FinModelFile__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public boolean saveData(String gameType, Board board, int time, String name1, String name2,\n String playerType1, String playerType2, int turn) throws IOException{\n System.out.println(\"Saving....\");\n nameFile(SAVE);\n m_FileName = PATH+ m_FileName +FILETYPE;\n m_Writer = new CSVWriter(new FileWriter(m_FileName));\n m_Data = new ArrayList<String[]>();\n m_LoadBoard = board.getBoard();\n\n for (int i = 0; i < BOARD_ROWS; i++) {\n for (int j = 0; j < BOARD_COLS; j++) {\n if (m_LoadBoard[j][i].getColour().equals(\"Red\")){\n m_Data.add(new String[] {gameType, String.valueOf(j), String.valueOf(i), m_LoadBoard[j][i].getColour(),\n name1, playerType1, String.valueOf(turn), String.valueOf(time)});\n\n } else if (m_LoadBoard[j][i].getColour().equals(\"Yellow\")){\n m_Data.add(new String[] {gameType, String.valueOf(j), String.valueOf(i), m_LoadBoard[j][i].getColour(),\n name2, playerType2, String.valueOf(turn), String.valueOf(time)});\n\n } else {\n m_Data.add(new String[] {gameType, String.valueOf(j), String.valueOf(i),\n m_LoadBoard[j][i].getColour(), \"\", \"\", String.valueOf(turn), String.valueOf(time)});\n }\n }\n }\n m_Writer.writeAll(m_Data);\n m_Writer.close();\n return true;\n }", "public Group saveGroup(Group group);", "public final void rule__AstFunction__Group_8_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8944:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8945:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8945:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8946:1: ','\n {\n before(grammarAccess.getAstFunctionAccess().getCommaKeyword_8_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstFunction__Group_8_2__0__Impl18366); \n after(grammarAccess.getAstFunctionAccess().getCommaKeyword_8_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3394:1: ( rule__FinModelFile__Group__0__Impl rule__FinModelFile__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3395:2: rule__FinModelFile__Group__0__Impl rule__FinModelFile__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__0__Impl_in_rule__FinModelFile__Group__07536);\r\n rule__FinModelFile__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__1_in_rule__FinModelFile__Group__07539);\r\n rule__FinModelFile__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3486:1: ( rule__FinModelFile__Group_0__0__Impl rule__FinModelFile__Group_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3487:2: rule__FinModelFile__Group_0__0__Impl rule__FinModelFile__Group_0__1\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0__Impl_in_rule__FinModelFile__Group_0__07722);\r\n rule__FinModelFile__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1_in_rule__FinModelFile__Group_0__07725);\r\n rule__FinModelFile__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "CSV createCSV();", "private void save(List<String[]> data, Integer numFichier, String nomFichier) throws IOException {\n FileWriter fileWriter = null;\n CSVWriter cSVWriter2 = null;\n //-------------------------------------------------------------\n // Construction du nom de fichier\n //-------------------------------------------------------------\n\n\n// String nomFichier = constructionNomFichier(flux);\n\n// // Mini rappel sur les ternaire en java : variable = (condition) ? valeur_si_vrai : valeur_si_faux; \n// String pays = (flux.getJournalLie() != null && flux.getJournalLie().getPays() != null && !flux.getJournalLie().getPays().isEmpty()) ? flux.getJournalLie().getPays() : \"XX\";\n// String ville = (flux.getJournalLie() != null && flux.getJournalLie().getCodeVille() != null && !flux.getJournalLie().getCodeVille().isEmpty()) ? flux.getJournalLie().getCodeVille() : \"XX\";\n// String langue = (flux.getJournalLie() != null && flux.getJournalLie().getLangue() != null && !flux.getJournalLie().getLangue().isEmpty()) ? flux.getJournalLie().getLangue() : \"XX\";\n// String codeJournal = (flux.getJournalLie() != null && flux.getJournalLie().getCodeJournal() != null && !flux.getJournalLie().getCodeJournal().isEmpty()) ? flux.getJournalLie().getCodeJournal() : \"XX\";\n// String codeTypeFlux = (flux.getTypeFlux() != null && flux.getTypeFlux().getCodeType() != null && !flux.getTypeFlux().getCodeType().isEmpty()) ? flux.getTypeFlux().getCodeType() : \"XXX\";\n//\n// nomFichier = langue + \"_\" + pays + \"_\" + codeJournal + \"_\" + codeTypeFlux;\n\n //--------------------------------------------------------------------------------\n // Enregistrement \n //--------------------------------------------------------------------------------\n try {\n fileWriter = new FileWriter(exportPath + nomFichier + \"__F__\" + numFichier.toString() + \".csv\");\n\n if (escapebySlash) {\n cSVWriter2 = new CSVWriter(fileWriter, '\\t', '\"', '\\\\');\n } else {\n cSVWriter2 = new CSVWriter(fileWriter, '\\t', '\"');\n }\n\n cSVWriter2.writeAll(data);\n\n\n } catch (Exception e) {\n logger.debug(\"Erreur lors de l'enregistrement\");\n } finally {\n if (cSVWriter2 != null) {\n try {\n cSVWriter2.close();\n } catch (Exception e) {\n }\n }\n\n if (fileWriter != null) {\n try {\n fileWriter.close();\n } catch (Exception e) {\n }\n }\n }\n\n data.clear(); // On purge le fichier data\n //---------------------------------------------------------------------------\n // Assemblage \n //---------------------------------------------------------------------------\n // Si ce n'est pas le premier fichier. Il faut réassembler\n// if (numFichier != 0) {\n// File f1 = new File(exportPath + nomFichier + \"__F__0.csv\");\n// File fCurrent = new File(exportPath + nomFichier + \"__F__\" + numFichier.toString() + \".csv\");\n// \n// String content = FileUtils.readFileToString(fCurrent);\n// FileUtils.write(f1, content, true);\n// \n// fCurrent.delete();\n// }\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void exportGroup ()\n {\n if (_chooser.showSaveDialog(ConfigEditor.this) == JFileChooser.APPROVE_OPTION) {\n group.save(_chooser.getSelectedFile());\n }\n _prefs.put(\"config_dir\", _chooser.getCurrentDirectory().toString());\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_2_3_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20886:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20887:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20887:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20888:1: ','\n {\n before(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_3_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstType__Group_0_1_2_3_1__0__Impl41884); \n after(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_3_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1342:1: ( ( ( rule__OpenCSV__CharsetAssignment_4 ) ) )\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n {\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n // InternalCsv.g:1344:2: ( rule__OpenCSV__CharsetAssignment_4 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n // InternalCsv.g:1345:2: ( rule__OpenCSV__CharsetAssignment_4 )\n // InternalCsv.g:1345:3: rule__OpenCSV__CharsetAssignment_4\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAssignment_4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_6_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10022:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10023:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10023:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10024:1: ','\n {\n before(grammarAccess.getAstProcedureAccess().getCommaKeyword_6_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstProcedure__Group_6_2__0__Impl20490); \n after(grammarAccess.getAstProcedureAccess().getCommaKeyword_6_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group_2_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22332:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22333:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22333:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22334:1: ','\n {\n before(grammarAccess.getAstAnnotationAccess().getCommaKeyword_2_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstAnnotation__Group_2_2__0__Impl44731); \n after(grammarAccess.getAstAnnotationAccess().getCommaKeyword_2_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void exportToCSV();", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void saveSelectedGroup(Elem group) {\n if (prefs == null) return;\n if (group == null) return;\n SharedPreferences.Editor editor = prefs.edit();\n editor.putInt(SettingsActivity.GROUP_ID_PREF, group.id);\n editor.putString(SettingsActivity.GROUP_NAME_PREF, group.name);\n if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) editor.apply();\n else editor.commit();\n }", "@Override\n\tpublic void exportToCSV() {\n\n\t}", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3474:1: ( ( ( ';' )? ) )\n // InternalCsv.g:3475:1: ( ( ';' )? )\n {\n // InternalCsv.g:3475:1: ( ( ';' )? )\n // InternalCsv.g:3476:2: ( ';' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n // InternalCsv.g:3477:2: ( ';' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==14) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // InternalCsv.g:3477:3: ';'\n {\n match(input,14,FOLLOW_2); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:67:2: ( ( ( rule__Model__Group__0 ) ) )\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n {\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n // InternalCsv.g:69:3: ( rule__Model__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getGroup()); \n }\n // InternalCsv.g:70:3: ( rule__Model__Group__0 )\n // InternalCsv.g:70:4: rule__Model__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private void saveToFile(Agent agent, String _login)\n {\n File file = new File(_login + \".csv\");\n FileWriter fw;\n BufferedWriter bw;\n try {\n fw = new FileWriter(file, false);\n bw = new BufferedWriter (fw);\n String csvData = agent.getCSVData();\n bw.write(csvData);\n bw.close();\n fw.close();\n }\n catch(IOException ioEx) {\n JOptionPane.showMessageDialog(null, ioEx.getMessage());\n }\n }", "public final void rule__OpenCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1288:1: ( ( ( rule__OpenCSV__NameAssignment_2 ) ) )\n // InternalCsv.g:1289:1: ( ( rule__OpenCSV__NameAssignment_2 ) )\n {\n // InternalCsv.g:1289:1: ( ( rule__OpenCSV__NameAssignment_2 ) )\n // InternalCsv.g:1290:2: ( rule__OpenCSV__NameAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getNameAssignment_2()); \n }\n // InternalCsv.g:1291:2: ( rule__OpenCSV__NameAssignment_2 )\n // InternalCsv.g:1291:3: rule__OpenCSV__NameAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__NameAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getNameAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14887:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14889:1: ','\n {\n before(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstOutputPattern__Group_3__0__Impl30078); \n after(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private ActionErrors storeCsvFile(HttpServletRequest request, FormFile csvFile) {\n ActionErrors errors = new ActionErrors();\n HttpSession session = request.getSession();\n String savePath = generateSavePath(session);\n File file = new File(savePath);\n InputStream inputStream = null;\n FileOutputStream outputStream = null;\n try {\n file.createNewFile();\n inputStream = csvFile.getInputStream();\n outputStream = new FileOutputStream(file, false);\n IOUtils.copy(inputStream, outputStream);\n removeStoredCsvFile(request);\n session.setAttribute(CSV_FILE_PATH_KEY, savePath);\n session.setAttribute(CSV_ORIGINAL_FILE_NAME_KEY, csvFile.getFileName());\n fileUploadPerformed = true;\n } catch (IOException e) {\n errors.add(\"csvFile\", new ActionMessage(\"error.import.no_file\"));\n return errors;\n } finally {\n \tIOUtils.closeQuietly(inputStream);\n \tIOUtils.closeQuietly(outputStream);\n }\n return errors;\n }", "private void openCsvDialog(){\n JFileChooser aFileChooser = new JFileChooser();\n aFileChooser.setFileFilter(new MyFileFilterCSV());\n if (lastUsedFileCSV != null){\n aFileChooser.setCurrentDirectory(lastUsedFileCSV.getParentFile());\n aFileChooser.setSelectedFile(lastUsedFileCSV);\n }else{\n File file = new File(aFileChooser.getCurrentDirectory(), dataset.getName()+\".csv\");\n aFileChooser.setSelectedFile(file);\n }\n int r = aFileChooser.showSaveDialog(this);\n if (r == JFileChooser.APPROVE_OPTION){\n setCursor(new Cursor(Cursor.WAIT_CURSOR));\n File file = aFileChooser.getSelectedFile();\n if(!MyUtilities.isCSVFile(file)){\n file = MyUtilities.getCSVFile(file);\n }\n lastUsedFileCSV = file;\n String sep = getCSVSeparator();\n PrintWriter writer = null;\n try{\n writer = new PrintWriter(new BufferedWriter (new OutputStreamWriter(new FileOutputStream(file), \"utf-8\")));\n // header\n String s = \"\";\n for(int j=0; j<dataset.getListDataHeader().length; j++){\n s += dataset.getListDataHeader()[j] == null? \"\" : dataset.getListDataHeader()[j].getValue();\n if(j <dataset.getListDataHeader().length -1)\n s+= sep;\n }\n writer.println(s);\n // data\n Data[][] data = dataset.getData();\n int nbR = dataset.getNbRows();\n int nbC = dataset.getNbCol();\n for(int i=0; i<nbR; i++){\n s = \"\";\n for(int j=0; j<nbC; j++){\n if(data[i][j] != null){\n if(data[i][j].isDoubleValue()){\n if(!Double.isNaN(data[i][j].getDoubleValue()))\n s += NumberFormat.getNumberInstance(getLocale()).format(data[i][j].getDoubleValue());\n }else{\n s += data[i][j].getValue();\n }\n }\n if(j <nbC -1)\n s+= sep;\n }\n writer.println(s);\n }\n //log\n\t\tdataProcessToolPanel.logExportCSV(dataset, file.getPath());\n }catch (IOException e){\n setCursor(new Cursor(Cursor.DEFAULT_CURSOR));\n displayError(new CopexReturn(getBundleString(\"MSG_ERROR_CSV\"), false), getBundleString(\"TITLE_DIALOG_ERROR\"));\n }\n finally{\n if (writer != null)\n try{\n writer.close();\n setCursor(new Cursor(Cursor.DEFAULT_CURSOR));\n }catch (Exception e){\n setCursor(new Cursor(Cursor.DEFAULT_CURSOR));\n displayError(new CopexReturn(getBundleString(\"MSG_ERROR_CSV\"), false), getBundleString(\"TITLE_DIALOG_ERROR\"));\n }\n }\n }\n }", "public final void rule__AstFunction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8787:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8788:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8788:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8789:1: ','\n {\n before(grammarAccess.getAstFunctionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstFunction__Group_4_1__0__Impl18057); \n after(grammarAccess.getAstFunctionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1503:1: ( ( ( rule__PrintCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1505:2: ( rule__PrintCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1506:2: ( rule__PrintCSV__OpenAssignment_2 )\n // InternalCsv.g:1506:3: rule__PrintCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void exportContact(String csvId) {\n String[] csv= MainActivity.appDb.getEditData(csvId); //get the data ready to export\n //String[] csv = Contact.split(\"~\", -1);\n\n Intent intent = new Intent(Intent.ACTION_INSERT); //create an intent to to place the contact data to the Phone contacts\n intent.setType(ContactsContract.Contacts.CONTENT_TYPE);\n intent.putExtra(ContactsContract.Intents.Insert.NAME, csv[0]); //place the data in the fields\n intent.putExtra(ContactsContract.Intents.Insert.PHONE, csv[1]);\n intent.putExtra(ContactsContract.Intents.Insert.EMAIL, csv[2]);\n intent.putExtra(ContactsContract.Intents.Insert.POSTAL, csv[3]);\n intent.putExtra(ContactsContract.Intents.Insert.COMPANY, csv[4]);\n intent.putExtra(ContactsContract.Intents.Insert.JOB_TITLE, csv[5]);\n ArrayList<ContentValues> data = new ArrayList<ContentValues>(); //use an arraylist containing content values specfically for the website\n\n ContentValues row1 = new ContentValues(); //establish new row\n row1.put(ContactsContract.Data.MIMETYPE, Website.CONTENT_ITEM_TYPE); //specify the type\n row1.put(Website.URL, csv[6]); //insert the website\n row1.put(Website.TYPE, Website.TYPE_WORK);\n\n data.add(row1); //add it to the data entry\n\n\n intent.putParcelableArrayListExtra(ContactsContract.Intents.Insert.DATA, data); //insert the data row in extras\n\n //intent.putExtra(ContactsContract.Intents.Insert.DATA, csv[6]);\n intent.putExtra(ContactsContract.Intents.Insert.NOTES, csv[7]);\n\n startActivity(intent); //start the activity\n }", "public final void rule__Conversion__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13544:1: ( ( ( ',' )? ) )\r\n // InternalGo.g:13545:1: ( ( ',' )? )\r\n {\r\n // InternalGo.g:13545:1: ( ( ',' )? )\r\n // InternalGo.g:13546:2: ( ',' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConversionAccess().getCommaKeyword_4()); \r\n }\r\n // InternalGo.g:13547:2: ( ',' )?\r\n int alt107=2;\r\n int LA107_0 = input.LA(1);\r\n\r\n if ( (LA107_0==43) ) {\r\n alt107=1;\r\n }\r\n switch (alt107) {\r\n case 1 :\r\n // InternalGo.g:13547:3: ','\r\n {\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConversionAccess().getCommaKeyword_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstStatementForeach__Group_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15804:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15805:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15805:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15806:1: ','\n {\n before(grammarAccess.getAstStatementForeachAccess().getCommaKeyword_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstStatementForeach__Group_2__0__Impl31885); \n after(grammarAccess.getAstStatementForeachAccess().getCommaKeyword_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void save() {\n CSVWriter csvWriter = new CSVWriter();\n csvWriter.writeToTalks(\"phase1/src/Resources/Talks.csv\", this.getTalkManager()); //Not implemented yet\n }", "public void saveFilterValues(String filterCriteria);", "public final void rule__AstType__Group_0_1_2_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20762:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20763:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20763:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20764:1: ','\n {\n before(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_1_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstType__Group_0_1_2_1_1__0__Impl41639); \n after(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_1_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19410:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19411:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19411:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19412:1: ','\n {\n before(grammarAccess.getAstExpressionListAccess().getCommaKeyword_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstExpressionList__Group_2__0__Impl38976); \n after(grammarAccess.getAstExpressionListAccess().getCommaKeyword_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private void saveCSV(ActionEvent actionEvent) {\n JFileChooser fileChooser = new JFileChooser();\n fileChooser.setCurrentDirectory(new File(System.getProperty(\"user.home\")));\n int result = fileChooser.showOpenDialog(this);\n if (result == JFileChooser.APPROVE_OPTION) {\n String selectedFile = fileChooser.getSelectedFile().getAbsolutePath();\n StatisticsFile statisticsFile = new StatisticsFile(selectedFile);\n try{\n statisticsFile.writeInCvs(my_map.getSettlements());\n }catch(IOException ioException){\n ioException.printStackTrace();\n }\n }\n }", "public void saveAsCsv() {\n\n try(BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(\"saves/data.csv\"))){\n for(Publication book : library){\n StringBuilder stringBuilder = new StringBuilder();\n\n stringBuilder.append(\"\\\"\").append(book.getClass().getSimpleName()).append(\"\\\"\"); // type\n stringBuilder.append(\",\"); // delimiter\n stringBuilder.append(\"\\\"\").append(book.getTitle()).append(\"\\\"\"); // title\n stringBuilder.append(\",\");\n stringBuilder.append(\"\\\"\").append(book.getAuthor().toString()).append(\"\\\"\"); // author\n stringBuilder.append(\",\");\n stringBuilder.append(\"\\\"\").append(book.getPages()).append(\"\\\"\"); // pages\n stringBuilder.append(\",\");\n stringBuilder.append(\"\\\"\").append(book.getIsbn()).append(\"\\\"\"); // isbn\n stringBuilder.append(\",\");\n stringBuilder.append(\"\\\"\").append(book.getReleaseYear()).append(\"\\\"\"); // year\n stringBuilder.append(\"\\n\");\n\n bufferedWriter.write(stringBuilder.toString()); // creates a line of one publication information and puts it to file\n }\n } catch (IOException e){\n System.out.println(\"IOException occurred: \" + e.getMessage());\n }\n }", "public final void rule__AstStatementForeach__Group_3_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15961:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15962:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15962:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15963:1: ','\n {\n before(grammarAccess.getAstStatementForeachAccess().getCommaKeyword_3_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstStatementForeach__Group_3_2__0__Impl32194); \n after(grammarAccess.getAstStatementForeachAccess().getCommaKeyword_3_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public void saveDataFromCsvFile(List<TimetableUpload> inputData) {\n Map<String, Timetable> timetables = new HashMap<>();\n Semester semester = semesterService.getLatestSemester();\n Long latestVersionInSemester = timetableService.getLatestTimetableVersionInSemester(semester.getId());\n\n //timetableUpload = eden red od csv fajlot\n for (TimetableUpload timetableUpload : inputData) {\n //odreduvanje na modul\n String studentGroup = timetableUpload.getModule();\n String identifier = timetableUpload.getProfessor() + \" \" + timetableUpload.getSubject() + \" \" + timetableUpload.getRoom() + \" \" + studentGroup + \" \" + timetableUpload.getDay();\n\n if (!timetables.containsKey(identifier)) {\n\n //vnesuvanje na profesori i asistenti\n Professor professor = professorService.getProfessorByName(timetableUpload.getProfessor());\n if(professor == null) {\n professorService.saveProfessor(timetableUpload.getProfessor());\n professor = professorService.getProfessorByName(timetableUpload.getProfessor());\n }\n\n Subject subject = subjectService.getSubjectByName(timetableUpload.getSubject());\n if (subject == null) {\n subjectService.saveSubject(timetableUpload.getSubject());\n subject = subjectService.getSubjectByName(timetableUpload.getSubject());\n }\n\n Timetable newTimetable = new Timetable(8 + Long.parseLong(timetableUpload.getHourFrom()),\n 9 + Long.parseLong(timetableUpload.getHourFrom()), Long.parseLong(timetableUpload.getDay()), timetableUpload.getRoom(),\n studentGroup, professor, subject, semester, latestVersionInSemester + 1);\n timetables.put(identifier, newTimetable);\n } else {\n Timetable existingTimetable = timetables.get(identifier);\n existingTimetable.setHourTo(existingTimetable.getHourTo() + 1);\n timetables.replace(identifier, existingTimetable);\n }\n timetableService.saveAll(timetables.values());\n }\n }", "public final void rule__Model__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) )\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n {\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )*\n loop11:\n do {\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n alt11=1;\n }\n\n\n switch (alt11) {\n \tcase 1 :\n \t // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__Model__LanguagesAssignment_6();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop11;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1477:1: ( ( 'print' ) )\n // InternalCsv.g:1478:1: ( 'print' )\n {\n // InternalCsv.g:1478:1: ( 'print' )\n // InternalCsv.g:1479:2: 'print'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintKeyword_1()); \n }\n match(input,23,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3423:1: ( rule__FinModelFile__Group__1__Impl rule__FinModelFile__Group__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3424:2: rule__FinModelFile__Group__1__Impl rule__FinModelFile__Group__2\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__1__Impl_in_rule__FinModelFile__Group__17597);\r\n rule__FinModelFile__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__2_in_rule__FinModelFile__Group__17600);\r\n rule__FinModelFile__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Stores__Group_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9305:1: ( ( ',' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9306:1: ( ',' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9306:1: ( ',' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9307:1: ','\n {\n before(grammarAccess.getStoresAccess().getCommaKeyword_2_0()); \n match(input,35,FOLLOW_35_in_rule__Stores__Group_2__0__Impl18234); \n after(grammarAccess.getStoresAccess().getCommaKeyword_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void save(ArrayList<String> inputsInOrder) throws IOException {\r\n\t\tboolean start = true;\r\n\r\n\t\tFileWriter filewrite = new FileWriter(csv);\r\n\t\tfor (String str : inputsInOrder) {\r\n\t\t\tif (start == true) {\r\n\t\t\t\tfilewrite.write(str);\r\n\t\t\t\tstart = false;\r\n\t\t\t} else {\r\n\t\t\t\tfilewrite.write(\",\");\r\n\t\t\t\tfilewrite.write(str);\r\n\t\t\t}\r\n\t\t}\r\n\t\tfilewrite.flush();\r\n\t\tfilewrite.close();\r\n\t}", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void writeCSV(Collection<? extends CSVable> src, File to) throws IOException {\r\n\t\tfinal String SYSTEM_LINE_END = System.getProperty(\"line.separator\");\r\n\t\t\r\n\t\tFileWriter fw = null;\r\n\t\tBufferedWriter bw = null;\r\n\t\t\r\n\t\ttry {\r\n\t\t\t// Create the file if it doesn't exist yet\r\n\t\t\tif ( ! to.exists() ) {\r\n\t\t\t\tto.createNewFile();\r\n\t\t\t}\r\n\r\n\t\t\tfw = new FileWriter(to.getAbsoluteFile(), false);\r\n\t\t\tbw = new BufferedWriter(fw);\r\n\r\n\t\t\tsynchronized (src) {\r\n\t\t\t\tfor ( CSVable obj : src ) {\r\n\t\t\t\t\tbw.write(obj.toCSVRow() + SYSTEM_LINE_END);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\tfinally {\r\n\t\t\ttry {\r\n\t\t\t\tif (bw != null) {\r\n\t\t\t\t\tbw.close();\r\n\t\t\t\t}\r\n\t\t\t\tif (fw != null) {\r\n\t\t\t\t\tfw.close();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tcatch (IOException e) {\r\n\t\t\t\tSystem.err.println(\"I'm having really bad luck today - I couldn't even close the CSV file!\");\r\n\t\t\t\te.printStackTrace();\r\n\t\t\t}\r\n\t\t}\r\n\t}", "public final void rule__FinModelFile__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3498:1: ( ( 'package' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3499:1: ( 'package' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3499:1: ( 'package' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3500:1: 'package'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getPackageKeyword_0_0()); \r\n }\r\n match(input,71,FOLLOW_71_in_rule__FinModelFile__Group_0__0__Impl7753); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getPackageKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1612:1: ( ( () ) )\n // InternalCsv.g:1613:1: ( () )\n {\n // InternalCsv.g:1613:1: ( () )\n // InternalCsv.g:1614:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n // InternalCsv.g:1615:2: ()\n // InternalCsv.g:1615:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getNbColAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic List<Data> save(MultipartFile file) throws IOException {\n\t\ttry (var fileReader = new BufferedReader(new InputStreamReader(file.getInputStream()));\n\t\t\t\tvar parser = new CSVParser(fileReader, CSVFormat.DEFAULT.withFirstRecordAsHeader().withTrim());) {\n\t\t\t\n\t\t\tList<Data> dataList = parser.getRecords().stream()\n\t\t\t\t.filter(this::isValidRecord) // Using only valid records\n\t\t\t\t.map(this::mapValidCSVRecordToData) // Mapping valid records to Data object\n\t\t\t\t.collect(Collectors.toList()); // Returning as list\n\t\t\t\n\t\t\t// Saving all valid records to database, assuming we are not returning error if there is no valid records\n\t\t\treturn dataRepository.saveAll(dataList);\n\t\t}\n\t}", "private void writeBatchToFile(ArrayList<SensorEntry> batch) {\n\n\t\tFile file = new File(currFolder + \"/\" + entriesRecorded + \".csv\");\n\n\t\ttry {\n\n\t\t\tFileOutputStream outputStream = new FileOutputStream(file);\n\n\t\t\tif (!file.exists()) {\n\t\t\t\tfile.createNewFile();\n\t\t\t\toutputStream.write(Constants.INS_DATA_HEADER.getBytes());\n\t\t\t}\n\n\t\t\tfor (SensorEntry e : batch)\n\t\t\t\toutputStream.write((e.toRawString() + \",\" + e.getTimeRecorded() + \"\\n\").getBytes());\n\n\t\t\toutputStream.close();\n\n\t\t\tsetsOfEntriesRecorded++;\n\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\n\t}" ]
[ "0.8087805", "0.7684739", "0.7622461", "0.73741347", "0.7239455", "0.7226754", "0.6495436", "0.64295685", "0.60556936", "0.58900076", "0.58272797", "0.57458234", "0.5679524", "0.5652647", "0.5453903", "0.54512405", "0.54204583", "0.54077744", "0.54019797", "0.5354391", "0.5286892", "0.5263382", "0.5216655", "0.5209601", "0.51682687", "0.50809246", "0.50611633", "0.503971", "0.5022725", "0.50083303", "0.49628708", "0.49333593", "0.4931774", "0.49301994", "0.49278748", "0.49133077", "0.49107283", "0.48989153", "0.48971665", "0.4878385", "0.4872422", "0.48666453", "0.48416072", "0.482346", "0.4795155", "0.47902822", "0.4788067", "0.47803253", "0.47774875", "0.47757882", "0.4773927", "0.4770143", "0.47462666", "0.47435614", "0.47375095", "0.47135338", "0.46907467", "0.46790344", "0.46664044", "0.46503893", "0.46492255", "0.46296075", "0.4627723", "0.46270826", "0.46153215", "0.459667", "0.45959482", "0.45869106", "0.45755053", "0.45600826", "0.45469508", "0.45437148", "0.45404392", "0.4532525", "0.45206538", "0.4505662", "0.4503482", "0.4502184", "0.45008084", "0.45006257", "0.44965267", "0.4495406", "0.44925714", "0.4491836", "0.4491231", "0.44898638", "0.44878358", "0.448742", "0.44797608", "0.44715038", "0.44642296", "0.44618097", "0.44556892", "0.44527543", "0.44449252", "0.44309843", "0.44287685", "0.4422659", "0.44181734", "0.44080275" ]
0.85622907
0
$ANTLR end "ruleSaveCSV" $ANTLR start "entryRuleJvmTypeReference" InternalCsv.g:279:1: entryRuleJvmTypeReference : ruleJvmTypeReference EOF ;
public final void entryRuleJvmTypeReference() throws RecognitionException { try { // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF ) // InternalCsv.g:281:1: ruleJvmTypeReference EOF { if ( state.backtracking==0 ) { before(grammarAccess.getJvmTypeReferenceRule()); } pushFollow(FOLLOW_1); ruleJvmTypeReference(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmTypeReferenceRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1849:1: ( ruleJvmTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1850:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3880);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3887); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1988:1: ( ruleJvmTypeReference EOF )\r\n // InternalDroneScript.g:1989:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1564:1: ( ruleJvmTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1565:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3273);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3280); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2573:2: (iv_ruleJvmTypeReference= ruleJvmTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2574:2: iv_ruleJvmTypeReference= ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference6009);\n iv_ruleJvmTypeReference=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference6019); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:355:1: ( ruleJvmParameterizedTypeReference EOF )\n // InternalCsv.g:356:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmArgumentTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2705:2: (iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2706:2: iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference6342);\n iv_ruleJvmArgumentTypeReference=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmArgumentTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference6352); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4115:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4117:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2063:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // InternalDroneScript.g:2064:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleType = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2094:2: (iv_ruleType= ruleType EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2095:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FOLLOW_ruleType_in_entryRuleType4992);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleType5002); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject entryRuleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmWildcardTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2745:2: (iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2746:2: iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference6461);\n iv_ruleJvmWildcardTypeReference=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmWildcardTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference6471); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1933:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1934:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference4060);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference4067); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleType() throws RecognitionException {\n try {\n // InternalBrowser.g:129:1: ( ruleType EOF )\n // InternalBrowser.g:130:1: ruleType EOF\n {\n before(grammarAccess.getTypeRule()); \n pushFollow(FOLLOW_1);\n ruleType();\n\n state._fsp--;\n\n after(grammarAccess.getTypeRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAstType() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2145:1: ( ruleAstType EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2146:1: ruleAstType EOF\n {\n before(grammarAccess.getAstTypeRule()); \n pushFollow(FOLLOW_ruleAstType_in_entryRuleAstType4514);\n ruleAstType();\n\n state._fsp--;\n\n after(grammarAccess.getAstTypeRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstType4521); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleTypeDef() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleTypeDef = null;\n\n\n try {\n // InternalNgt.g:1373:48: (iv_ruleTypeDef= ruleTypeDef EOF )\n // InternalNgt.g:1374:2: iv_ruleTypeDef= ruleTypeDef EOF\n {\n newCompositeNode(grammarAccess.getTypeDefRule()); \n pushFollow(FOLLOW_1);\n iv_ruleTypeDef=ruleTypeDef();\n\n state._fsp--;\n\n current =iv_ruleTypeDef; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19473:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19475:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleType() throws RecognitionException {\n try {\n // InternalMyDsl.g:79:1: ( ruleType EOF )\n // InternalMyDsl.g:80:1: ruleType EOF\n {\n before(grammarAccess.getTypeRule()); \n pushFollow(FOLLOW_1);\n ruleType();\n\n state._fsp--;\n\n after(grammarAccess.getTypeRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19458:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19460:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1620:1: ( ruleJvmParameterizedTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1621:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference3393);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference3400); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleTypeImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleTypeImport = null;\n\n\n try {\n // InternalNgt.g:1332:51: (iv_ruleTypeImport= ruleTypeImport EOF )\n // InternalNgt.g:1333:2: iv_ruleTypeImport= ruleTypeImport EOF\n {\n newCompositeNode(grammarAccess.getTypeImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleTypeImport=ruleTypeImport();\n\n state._fsp--;\n\n current =iv_ruleTypeImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3912:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3913:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3913:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3914:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleImportedType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImportedType = null;\n\n\n try {\n // InternalMappingDsl.g:3258:53: (iv_ruleImportedType= ruleImportedType EOF )\n // InternalMappingDsl.g:3259:2: iv_ruleImportedType= ruleImportedType EOF\n {\n newCompositeNode(grammarAccess.getImportedTypeRule()); \n pushFollow(FOLLOW_1);\n iv_ruleImportedType=ruleImportedType();\n\n state._fsp--;\n\n current =iv_ruleImportedType; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19151:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19153:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_138714);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleTypeDef() throws RecognitionException {\r\n try {\r\n // InternalGo.g:1605:1: ( ruleTypeDef EOF )\r\n // InternalGo.g:1606:1: ruleTypeDef EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeDefRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleTypeDef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeDefRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17857:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17859:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12559:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12561:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_125201);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13221:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13223:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_126561);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmParameterizedTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2620:2: (iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2621:2: iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference6155);\n iv_ruleJvmParameterizedTypeReference=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmParameterizedTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference6165); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJointTypeReference() throws RecognitionException {\n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:817:1: ( ruleJointTypeReference EOF )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:818:1: ruleJointTypeReference EOF\n {\n before(grammarAccess.getJointTypeReferenceRule()); \n pushFollow(FOLLOW_ruleJointTypeReference_in_entryRuleJointTypeReference1681);\n ruleJointTypeReference();\n\n state._fsp--;\n\n after(grammarAccess.getJointTypeReferenceRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleJointTypeReference1688); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2000:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2002:3: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2003:3: ( rule__JvmTypeReference__Alternatives )\r\n // InternalDroneScript.g:2003:4: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13206:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13208:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_126530);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13085:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13087:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_126284);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12574:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12576:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_125232);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleType() throws RecognitionException {\n EObject current = null;\n\n AntlrDatatypeRuleToken lv_primitiveType_1_0 = null;\n\n EObject lv_jvmType_2_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2105:28: ( ( () ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2106:1: ( () ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2106:1: ( () ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2106:2: () ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2106:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2107:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getTypeAccess().getTypeAction_0(),\n current);\n \n }\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2112:2: ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) )\n int alt26=2;\n int LA26_0 = input.LA(1);\n\n if ( ((LA26_0>=60 && LA26_0<=67)) ) {\n alt26=1;\n }\n else if ( (LA26_0==RULE_ID) ) {\n alt26=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 26, 0, input);\n\n throw nvae;\n }\n switch (alt26) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2112:3: ( (lv_primitiveType_1_0= rulePrimitiveType ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2112:3: ( (lv_primitiveType_1_0= rulePrimitiveType ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2113:1: (lv_primitiveType_1_0= rulePrimitiveType )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2113:1: (lv_primitiveType_1_0= rulePrimitiveType )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2114:3: lv_primitiveType_1_0= rulePrimitiveType\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getTypeAccess().getPrimitiveTypePrimitiveTypeParserRuleCall_1_0_0()); \n \t \n }\n pushFollow(FOLLOW_rulePrimitiveType_in_ruleType5058);\n lv_primitiveType_1_0=rulePrimitiveType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getTypeRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"primitiveType\",\n \t\ttrue, \n \t\t\"PrimitiveType\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2131:6: ( (lv_jvmType_2_0= ruleJvmTypeReference ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2131:6: ( (lv_jvmType_2_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2132:1: (lv_jvmType_2_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2132:1: (lv_jvmType_2_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2133:3: lv_jvmType_2_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getTypeAccess().getJvmTypeJvmTypeReferenceParserRuleCall_1_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleType5085);\n lv_jvmType_2_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getTypeRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"jvmType\",\n \t\tlv_jvmType_2_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17804:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17806:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_135953);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XCasePart__TypeGuardAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18323:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:18324:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:18324:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:18325:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXCasePartAccess().getTypeGuardJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXCasePartAccess().getTypeGuardJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleType() throws RecognitionException {\r\n try {\r\n // InternalGo.g:355:1: ( ruleType EOF )\r\n // InternalGo.g:356:1: ruleType EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleType();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18736:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18738:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19428:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19430:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3897:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3899:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleEvaluationType() throws RecognitionException {\n try {\n // InternalMLRegression.g:279:1: ( ruleEvaluationType EOF )\n // InternalMLRegression.g:280:1: ruleEvaluationType EOF\n {\n before(grammarAccess.getEvaluationTypeRule()); \n pushFollow(FOLLOW_1);\n ruleEvaluationType();\n\n state._fsp--;\n\n after(grammarAccess.getEvaluationTypeRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19443:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19445:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleCalculateType() throws RecognitionException {\n try {\n // InternalMLRegression.g:504:1: ( ruleCalculateType EOF )\n // InternalMLRegression.g:505:1: ruleCalculateType EOF\n {\n before(grammarAccess.getCalculateTypeRule()); \n pushFollow(FOLLOW_1);\n ruleCalculateType();\n\n state._fsp--;\n\n after(grammarAccess.getCalculateTypeRule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13070:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13072:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_126253);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "IJvmTypeReferenceProvider getTypeProvider();", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17872:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17874:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleType = null;\n\n\n try {\n // InternalSafetyParser.g:5941:45: (iv_ruleType= ruleType EOF )\n // InternalSafetyParser.g:5942:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XRelationalExpression__TypeAssignment_1_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17547:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:17548:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:17548:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:17549:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17819:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17821:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_135984);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleTypeName() throws RecognitionException {\r\n try {\r\n // InternalGo.g:380:1: ( ruleTypeName EOF )\r\n // InternalGo.g:381:1: ruleTypeName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeNameRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleTypeName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18751:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18753:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleType() throws RecognitionException {\n EObject current = null;\n int entryRuleType_StartIndex = input.index();\n EObject iv_ruleType = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 27) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:1701:2: (iv_ruleType= ruleType EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:1702:2: iv_ruleType= ruleType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getTypeRule()); \n }\n pushFollow(FOLLOW_ruleType_in_entryRuleType3109);\n iv_ruleType=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleType; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleType3119); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 27, entryRuleType_StartIndex); }\n }\n return current;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18715:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18717:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_137817);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__TypeAssignment_1_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17524:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17525:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17525:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17526:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XRelationalExpression__TypeAssignment_1_0_135383);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18564:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18566:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_137509);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18549:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18551:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_137478);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1576:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1578:1: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:1: ( rule__JvmTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:2: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3306);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRulePrimitiveType() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_rulePrimitiveType = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2899:2: (iv_rulePrimitiveType= rulePrimitiveType EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2900:2: iv_rulePrimitiveType= rulePrimitiveType EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getPrimitiveTypeRule()); \n }\n pushFollow(FOLLOW_rulePrimitiveType_in_entryRulePrimitiveType6813);\n iv_rulePrimitiveType=rulePrimitiveType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_rulePrimitiveType.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRulePrimitiveType6824); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3946:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3948:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19136:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19138:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_138683);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19121:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19123:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_138652);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3995:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3997:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18700:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18702:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_137786);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18898:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18900:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleLiteralType() throws RecognitionException {\r\n try {\r\n // InternalGo.g:2755:1: ( ruleLiteralType EOF )\r\n // InternalGo.g:2756:1: ruleLiteralType EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleLiteralType();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3961:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3963:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XCasePart__TypeGuardAssignment_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12871:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12872:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12872:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12873:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXCasePartAccess().getTypeGuardJvmTypeReferenceParserRuleCall_0_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XCasePart__TypeGuardAssignment_025842);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXCasePartAccess().getTypeGuardJvmTypeReferenceParserRuleCall_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1861:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1863:1: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:1: ( rule__JvmTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:2: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3913);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13582:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13584:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_127303);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13488:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13489:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13489:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13490:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ReturnTypeAssignment_227109);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13597:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13599:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_127334);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XCasePart__TypeGuardAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18222:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18223:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18223:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18224:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXCasePartAccess().getTypeGuardJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XCasePart__TypeGuardAssignment_036806);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXCasePartAccess().getTypeGuardJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleprimTypes() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleprimTypes = null;\n\n\n try {\n // InternalSafetyParser.g:6185:49: (iv_ruleprimTypes= ruleprimTypes EOF )\n // InternalSafetyParser.g:6186:2: iv_ruleprimTypes= ruleprimTypes EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getPrimTypesRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleprimTypes=ruleprimTypes();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleprimTypes.getText(); \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19255:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19257:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleElementType() throws RecognitionException {\r\n try {\r\n // InternalGo.g:530:1: ( ruleElementType EOF )\r\n // InternalGo.g:531:1: ruleElementType EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementTypeRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleElementType();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementTypeRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4010:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:4012:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3882:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3884:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1973:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1975:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:2: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference4153);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleAstTypeTuple() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2173:1: ( ruleAstTypeTuple EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2174:1: ruleAstTypeTuple EOF\n {\n before(grammarAccess.getAstTypeTupleRule()); \n pushFollow(FOLLOW_ruleAstTypeTuple_in_entryRuleAstTypeTuple4574);\n ruleAstTypeTuple();\n\n state._fsp--;\n\n after(grammarAccess.getAstTypeTupleRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstTypeTuple4581); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }" ]
[ "0.70627373", "0.6658572", "0.65484273", "0.6545206", "0.6348035", "0.62762934", "0.61935675", "0.61848015", "0.6105125", "0.5991561", "0.5917366", "0.5567609", "0.54639816", "0.54633623", "0.53214777", "0.5265543", "0.52571017", "0.5237749", "0.51676893", "0.5154189", "0.5066848", "0.50480133", "0.50434285", "0.4987748", "0.49839517", "0.4981084", "0.49612334", "0.49043095", "0.4880551", "0.48743975", "0.48674658", "0.48419556", "0.48395422", "0.48173156", "0.48126683", "0.4793776", "0.47830546", "0.47717732", "0.47507685", "0.47300127", "0.47277206", "0.4696052", "0.46844476", "0.46829802", "0.46489438", "0.46359855", "0.46262038", "0.46251982", "0.4621698", "0.46134946", "0.4609595", "0.46075508", "0.45986232", "0.45940655", "0.45939523", "0.45928413", "0.45883986", "0.45845842", "0.45812416", "0.45678368", "0.4552447", "0.4550232", "0.45481738", "0.45454386", "0.45435104", "0.4539345", "0.45342717", "0.4530594", "0.4529541", "0.45177683", "0.45130238", "0.44897333", "0.44848743", "0.44769114", "0.44684082", "0.44659343", "0.44591072", "0.44559574", "0.44535074", "0.4451104", "0.4448863", "0.44482613", "0.44309857", "0.44192263", "0.44126698", "0.44098932", "0.44089782", "0.4403761", "0.4395866", "0.43936524", "0.43835506", "0.43814874", "0.4378918", "0.4378008", "0.43700457", "0.43682516", "0.43634993", "0.43617356", "0.43588042", "0.4356631" ]
0.753478
0
$ANTLR end "entryRuleJvmTypeReference" $ANTLR start "ruleJvmTypeReference" InternalCsv.g:288:1: ruleJvmTypeReference : ( ( rule__JvmTypeReference__Alternatives ) ) ;
public final void ruleJvmTypeReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) ) // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) ) { // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) ) // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); } // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives ) // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives { pushFollow(FOLLOW_2); rule__JvmTypeReference__Alternatives(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2000:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2002:3: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2003:3: ( rule__JvmTypeReference__Alternatives )\r\n // InternalDroneScript.g:2003:4: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1576:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1578:1: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:1: ( rule__JvmTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:2: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3306);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1861:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1863:1: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:1: ( rule__JvmTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:2: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3913);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1988:1: ( ruleJvmTypeReference EOF )\r\n // InternalDroneScript.g:1989:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1973:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1975:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:2: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference4153);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1564:1: ( ruleJvmTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1565:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3273);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3280); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1849:1: ( ruleJvmTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1850:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3880);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3887); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2400:1: ( ( ruleJvmParameterizedTypeReference ) | ( ruleXFunctionTypeRef ) )\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==RULE_ID) ) {\n alt22=1;\n }\n else if ( (LA22_0==44||LA22_0==63) ) {\n alt22=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 22, 0, input);\n\n throw nvae;\n }\n switch (alt22) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2402:1: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Alternatives5182);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2408:1: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives5199);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4115:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4117:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2573:2: (iv_ruleJvmTypeReference= ruleJvmTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2574:2: iv_ruleJvmTypeReference= ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference6009);\n iv_ruleJvmTypeReference=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference6019); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19473:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19475:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19458:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19460:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmArgumentTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2705:2: (iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2706:2: iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference6342);\n iv_ruleJvmArgumentTypeReference=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmArgumentTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference6352); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19151:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19153:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_138714);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19443:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19445:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19428:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19430:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3088:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt33=2;\r\n int LA33_0 = input.LA(1);\r\n\r\n if ( (LA33_0==RULE_ID) ) {\r\n alt33=1;\r\n }\r\n else if ( (LA33_0==26||LA33_0==106) ) {\r\n alt33=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 33, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt33) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3090:1: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:1: ( rule__JvmTypeReference__Group_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:2: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0__0_in_rule__JvmTypeReference__Alternatives6706);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3096:1: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives6724);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13597:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13599:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_127334);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13582:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13584:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_127303);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19136:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19138:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_138683);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:355:1: ( ruleJvmParameterizedTypeReference EOF )\n // InternalCsv.g:356:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3444:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt40=2;\r\n int LA40_0 = input.LA(1);\r\n\r\n if ( (LA40_0==RULE_ID) ) {\r\n alt40=1;\r\n }\r\n else if ( (LA40_0==31||LA40_0==76) ) {\r\n alt40=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 40, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt40) {\r\n case 1 :\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // InternalDroneScript.g:3446:3: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:3447:3: ( rule__JvmTypeReference__Group_0__0 )\r\n // InternalDroneScript.g:3447:4: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n {\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n // InternalDroneScript.g:3452:3: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__TypeAssignment_1_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17547:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:17548:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:17548:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:17549:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19121:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19123:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_138652);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_2=null;\n Token otherlv_3=null;\n EObject this_JvmParameterizedTypeReference_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2584:28: ( (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2586:5: this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_ruleJvmTypeReference6066);\n this_JvmParameterizedTypeReference_0=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmParameterizedTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:1: ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n loop34:\n do {\n int alt34=2;\n int LA34_0 = input.LA(1);\n\n if ( (LA34_0==46) ) {\n int LA34_2 = input.LA(2);\n\n if ( (LA34_2==47) ) {\n int LA34_3 = input.LA(3);\n\n if ( (synpred11_InternalJavaJRExpression()) ) {\n alt34=1;\n }\n\n\n }\n\n\n }\n\n\n switch (alt34) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:2: ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:5: ( () otherlv_2= '[' otherlv_3= ']' )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: () otherlv_2= '[' otherlv_3= ']'\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: ()\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2598:5: \n \t {\n \t if ( state.backtracking==0 ) {\n\n \t current = forceCreateModelElementAndSet(\n \t grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_1_0_0(),\n \t current);\n \t \n \t }\n\n \t }\n\n \t otherlv_2=(Token)match(input,46,FOLLOW_46_in_ruleJvmTypeReference6104); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_2, grammarAccess.getJvmTypeReferenceAccess().getLeftSquareBracketKeyword_1_0_1());\n \t \n \t }\n \t otherlv_3=(Token)match(input,47,FOLLOW_47_in_ruleJvmTypeReference6116); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmTypeReferenceAccess().getRightSquareBracketKeyword_1_0_2());\n \t \n \t }\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop34;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2063:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // InternalDroneScript.g:2064:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13221:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13223:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_126561);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13085:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13087:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_126284);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13206:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13208:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_126530);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13537:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13539:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_127210);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13522:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13524:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_127179);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16317:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // InternalDroneScript.g:16319:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:16320:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt125=2;\r\n int LA125_0 = input.LA(1);\r\n\r\n if ( (LA125_0==45||LA125_0==49) ) {\r\n alt125=1;\r\n }\r\n switch (alt125) {\r\n case 1 :\r\n // InternalDroneScript.g:16320:3: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13070:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13072:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_126253);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12559:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12561:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_125201);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12574:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12576:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_125232);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2880:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // InternalCsv.g:2882:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // InternalCsv.g:2883:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==35||LA23_0==37) ) {\n alt23=1;\n }\n switch (alt23) {\n case 1 :\n // InternalCsv.g:2883:3: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17857:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17859:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17872:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17874:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18751:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18753:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18736:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18738:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11725:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11727:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==31||LA73_0==65) ) {\n alt73=1;\n }\n switch (alt73) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:2: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl23519);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16574:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16576:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt106=2;\r\n int LA106_0 = input.LA(1);\r\n\r\n if ( (LA106_0==39||LA106_0==126) ) {\r\n alt106=1;\r\n }\r\n switch (alt106) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:2: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl33455);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__TypeAssignment_1_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17524:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17525:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17525:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17526:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XRelationalExpression__TypeAssignment_1_0_135383);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13473:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13475:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_2_127078);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13488:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13489:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13489:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13490:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ReturnTypeAssignment_227109);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19240:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19242:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "IJvmTypeReferenceProvider getTypeProvider();", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15238:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n // InternalDroneScript.g:15240:2: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1933:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1934:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference4060);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference4067); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1620:1: ( ruleJvmParameterizedTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1621:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference3393);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference3400); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18898:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18900:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19289:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19291:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19255:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19257:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18549:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18551:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_137478);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleType() throws RecognitionException {\n EObject current = null;\n\n AntlrDatatypeRuleToken lv_primitiveType_1_0 = null;\n\n EObject lv_jvmType_2_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2105:28: ( ( () ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2106:1: ( () ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2106:1: ( () ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2106:2: () ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2106:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2107:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getTypeAccess().getTypeAction_0(),\n current);\n \n }\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2112:2: ( ( (lv_primitiveType_1_0= rulePrimitiveType ) ) | ( (lv_jvmType_2_0= ruleJvmTypeReference ) ) )\n int alt26=2;\n int LA26_0 = input.LA(1);\n\n if ( ((LA26_0>=60 && LA26_0<=67)) ) {\n alt26=1;\n }\n else if ( (LA26_0==RULE_ID) ) {\n alt26=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 26, 0, input);\n\n throw nvae;\n }\n switch (alt26) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2112:3: ( (lv_primitiveType_1_0= rulePrimitiveType ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2112:3: ( (lv_primitiveType_1_0= rulePrimitiveType ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2113:1: (lv_primitiveType_1_0= rulePrimitiveType )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2113:1: (lv_primitiveType_1_0= rulePrimitiveType )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2114:3: lv_primitiveType_1_0= rulePrimitiveType\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getTypeAccess().getPrimitiveTypePrimitiveTypeParserRuleCall_1_0_0()); \n \t \n }\n pushFollow(FOLLOW_rulePrimitiveType_in_ruleType5058);\n lv_primitiveType_1_0=rulePrimitiveType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getTypeRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"primitiveType\",\n \t\ttrue, \n \t\t\"PrimitiveType\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2131:6: ( (lv_jvmType_2_0= ruleJvmTypeReference ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2131:6: ( (lv_jvmType_2_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2132:1: (lv_jvmType_2_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2132:1: (lv_jvmType_2_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2133:3: lv_jvmType_2_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getTypeAccess().getJvmTypeJvmTypeReferenceParserRuleCall_1_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleType5085);\n lv_jvmType_2_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getTypeRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"jvmType\",\n \t\tlv_jvmType_2_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18715:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18717:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_137817);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18564:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18566:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_137509);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13458:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13460:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_127047);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17819:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17821:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_135984);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19304:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19306:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3897:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3899:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19225:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19227:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17804:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17806:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_135953);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3912:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3913:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3913:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3914:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19353:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19355:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18883:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18885:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1801:1: ( ( ruleJvmParameterizedTypeReference ) )\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n {\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n // InternalCsv.g:1803:2: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19076:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19078:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_138559);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmFormalParameter__ParameterTypeAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18676:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:18677:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:18677:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:18678:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19061:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19063:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_138528);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18700:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18702:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_137786);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19012:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19013:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19013:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19014:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_138427);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19338:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19340:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3946:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3948:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XCastedExpression__TypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12464:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12465:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12465:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12466:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXCastedExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XCastedExpression__TypeAssignment_1_125012);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXCastedExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3961:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3963:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19027:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19028:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19028:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19029:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ReturnTypeAssignment_238458);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmParameterizedTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2620:2: (iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2621:2: iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference6155);\n iv_ruleJvmParameterizedTypeReference=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmParameterizedTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference6165); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }" ]
[ "0.79137176", "0.77786815", "0.7753405", "0.7686359", "0.7484989", "0.7480208", "0.7445645", "0.74130124", "0.736749", "0.7359928", "0.7348781", "0.733317", "0.717151", "0.7171043", "0.7128278", "0.7050708", "0.6996586", "0.6907845", "0.686846", "0.68086857", "0.67589325", "0.67480356", "0.6675647", "0.6648221", "0.6591433", "0.6497676", "0.64427596", "0.6383256", "0.6374238", "0.6312635", "0.6266702", "0.6223517", "0.62075895", "0.60778415", "0.6071038", "0.60447854", "0.59722376", "0.59273374", "0.5924537", "0.58984596", "0.5893764", "0.5866468", "0.5857042", "0.58358335", "0.57939893", "0.5757114", "0.57427764", "0.57179666", "0.5696115", "0.5622842", "0.5619066", "0.5616528", "0.560698", "0.5597733", "0.55955476", "0.5589207", "0.5588126", "0.5585032", "0.5583767", "0.5574571", "0.55640244", "0.55626357", "0.55482274", "0.55474627", "0.5533206", "0.55323404", "0.5491841", "0.5484016", "0.54791015", "0.54576874", "0.544259", "0.54363763", "0.54362637", "0.5432953", "0.5424523", "0.5382022", "0.5376095", "0.5366017", "0.53648037", "0.53579247", "0.53461415", "0.53437585", "0.5338075", "0.53376657", "0.5331142", "0.5327225", "0.5324149", "0.53189325", "0.528617", "0.52847123", "0.5283775", "0.5275589", "0.527474", "0.52460116", "0.5244217", "0.5235458", "0.52332443", "0.5200765", "0.5165805", "0.51430243" ]
0.8252675
0
$ANTLR end "ruleJvmTypeReference" $ANTLR start "entryRuleArrayBrackets" InternalCsv.g:304:1: entryRuleArrayBrackets : ruleArrayBrackets EOF ;
public final void entryRuleArrayBrackets() throws RecognitionException { try { // InternalCsv.g:305:1: ( ruleArrayBrackets EOF ) // InternalCsv.g:306:1: ruleArrayBrackets EOF { if ( state.backtracking==0 ) { before(grammarAccess.getArrayBracketsRule()); } pushFollow(FOLLOW_1); ruleArrayBrackets(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getArrayBracketsRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__JvmTypeReference__Group_0_1_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15345:1: ( ( ruleArrayBrackets ) )\r\n // InternalDroneScript.g:15346:1: ( ruleArrayBrackets )\r\n {\r\n // InternalDroneScript.g:15346:1: ( ruleArrayBrackets )\r\n // InternalDroneScript.g:15347:2: ruleArrayBrackets\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1908:1: ( ( ruleArrayBrackets ) )\n // InternalCsv.g:1909:1: ( ruleArrayBrackets )\n {\n // InternalCsv.g:1909:1: ( ruleArrayBrackets )\n // InternalCsv.g:1910:2: ruleArrayBrackets\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleArrayBrackets();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15850:1: ( ( ruleArrayBrackets ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15851:1: ( ruleArrayBrackets )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15851:1: ( ruleArrayBrackets )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15852:1: ruleArrayBrackets\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_ruleArrayBrackets_in_rule__JvmTypeReference__Group_0_1_0__1__Impl32031);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleArrayBrackets() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2013:1: ( ruleArrayBrackets EOF )\r\n // InternalDroneScript.g:2014:1: ruleArrayBrackets EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "ArrayTypeRule createArrayTypeRule();", "public final void entryRuleArrayType() throws RecognitionException {\r\n try {\r\n // InternalGo.g:480:1: ( ruleArrayType EOF )\r\n // InternalGo.g:481:1: ruleArrayType EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleArrayType();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleArrayBrackets() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1877:1: ( ruleArrayBrackets EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1878:1: ruleArrayBrackets EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsRule()); \r\n }\r\n pushFollow(FOLLOW_ruleArrayBrackets_in_entryRuleArrayBrackets3940);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayBrackets3947); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public void array() throws SyntaxException{\n if(cursor.getType().equals(TokenType.RIGHT_BRACKET))\n return;\n else\n {\n elements();\n match(TokenType.RIGHT_BRACKET);\n }\n }", "public final void rule__XTypeLiteral__ArrayDimensionsAssignment_4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19060:1: ( ( ruleArrayBrackets ) )\r\n // InternalDroneScript.g:19061:2: ( ruleArrayBrackets )\r\n {\r\n // InternalDroneScript.g:19061:2: ( ruleArrayBrackets )\r\n // InternalDroneScript.g:19062:3: ruleArrayBrackets\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getArrayDimensionsArrayBracketsParserRuleCall_4_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getArrayDimensionsArrayBracketsParserRuleCall_4_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XTypeLiteral__ArrayDimensionsAssignment_4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18862:1: ( ( ruleArrayBrackets ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18863:1: ( ruleArrayBrackets )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18863:1: ( ruleArrayBrackets )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18864:1: ruleArrayBrackets\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getArrayDimensionsArrayBracketsParserRuleCall_4_0()); \r\n }\r\n pushFollow(FOLLOW_ruleArrayBrackets_in_rule__XTypeLiteral__ArrayDimensionsAssignment_438117);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getArrayDimensionsArrayBracketsParserRuleCall_4_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleArrayLiteralExpr() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArrayLiteralExpr = null;\n\n\n try {\n // InternalSafetyParser.g:9624:57: (iv_ruleArrayLiteralExpr= ruleArrayLiteralExpr EOF )\n // InternalSafetyParser.g:9625:2: iv_ruleArrayLiteralExpr= ruleArrayLiteralExpr EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getArrayLiteralExprRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleArrayLiteralExpr=ruleArrayLiteralExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleArrayLiteralExpr; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final JavaliParser.arrayType_return arrayType() throws RecognitionException {\n\t\tJavaliParser.arrayType_return retval = new JavaliParser.arrayType_return();\n\t\tretval.start = input.LT(1);\n\n\t\tObject root_0 = null;\n\n\t\tToken id=null;\n\t\tToken char_literal118=null;\n\t\tToken char_literal119=null;\n\t\tToken char_literal120=null;\n\t\tToken char_literal121=null;\n\t\tParserRuleReturnScope pt =null;\n\n\t\tObject id_tree=null;\n\t\tObject char_literal118_tree=null;\n\t\tObject char_literal119_tree=null;\n\t\tObject char_literal120_tree=null;\n\t\tObject char_literal121_tree=null;\n\t\tRewriteRuleTokenStream stream_Identifier=new RewriteRuleTokenStream(adaptor,\"token Identifier\");\n\t\tRewriteRuleTokenStream stream_84=new RewriteRuleTokenStream(adaptor,\"token 84\");\n\t\tRewriteRuleTokenStream stream_85=new RewriteRuleTokenStream(adaptor,\"token 85\");\n\t\tRewriteRuleSubtreeStream stream_primitiveType=new RewriteRuleSubtreeStream(adaptor,\"rule primitiveType\");\n\n\t\ttry {\n\t\t\t// /home/luca/svn-repos/cd_students/2015ss/master/CD2_A1/src/cd/parser/Javali.g:570:2: (id= Identifier '[' ']' -> ^( ArrayType[$id, \\\"ArrayType\\\"] Identifier ) |pt= primitiveType '[' ']' -> ^( ArrayType[$pt.start, \\\"ArrayType\\\"] primitiveType ) )\n\t\t\tint alt41=2;\n\t\t\tint LA41_0 = input.LA(1);\n\t\t\tif ( (LA41_0==Identifier) ) {\n\t\t\t\talt41=1;\n\t\t\t}\n\t\t\telse if ( (LA41_0==86||LA41_0==90||LA41_0==92) ) {\n\t\t\t\talt41=2;\n\t\t\t}\n\n\t\t\telse {\n\t\t\t\tNoViableAltException nvae =\n\t\t\t\t\tnew NoViableAltException(\"\", 41, 0, input);\n\t\t\t\tthrow nvae;\n\t\t\t}\n\n\t\t\tswitch (alt41) {\n\t\t\t\tcase 1 :\n\t\t\t\t\t// /home/luca/svn-repos/cd_students/2015ss/master/CD2_A1/src/cd/parser/Javali.g:570:4: id= Identifier '[' ']'\n\t\t\t\t\t{\n\t\t\t\t\tid=(Token)match(input,Identifier,FOLLOW_Identifier_in_arrayType2689); \n\t\t\t\t\tstream_Identifier.add(id);\n\n\t\t\t\t\tchar_literal118=(Token)match(input,84,FOLLOW_84_in_arrayType2691); \n\t\t\t\t\tstream_84.add(char_literal118);\n\n\t\t\t\t\tchar_literal119=(Token)match(input,85,FOLLOW_85_in_arrayType2693); \n\t\t\t\t\tstream_85.add(char_literal119);\n\n\t\t\t\t\t// AST REWRITE\n\t\t\t\t\t// elements: Identifier\n\t\t\t\t\t// token labels: \n\t\t\t\t\t// rule labels: retval\n\t\t\t\t\t// token list labels: \n\t\t\t\t\t// rule list labels: \n\t\t\t\t\t// wildcard labels: \n\t\t\t\t\tretval.tree = root_0;\n\t\t\t\t\tRewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.getTree():null);\n\n\t\t\t\t\troot_0 = (Object)adaptor.nil();\n\t\t\t\t\t// 571:3: -> ^( ArrayType[$id, \\\"ArrayType\\\"] Identifier )\n\t\t\t\t\t{\n\t\t\t\t\t\t// /home/luca/svn-repos/cd_students/2015ss/master/CD2_A1/src/cd/parser/Javali.g:571:6: ^( ArrayType[$id, \\\"ArrayType\\\"] Identifier )\n\t\t\t\t\t\t{\n\t\t\t\t\t\tObject root_1 = (Object)adaptor.nil();\n\t\t\t\t\t\troot_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(ArrayType, id, \"ArrayType\"), root_1);\n\t\t\t\t\t\tadaptor.addChild(root_1, stream_Identifier.nextNode());\n\t\t\t\t\t\tadaptor.addChild(root_0, root_1);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\n\t\t\t\t\tretval.tree = root_0;\n\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 2 :\n\t\t\t\t\t// /home/luca/svn-repos/cd_students/2015ss/master/CD2_A1/src/cd/parser/Javali.g:572:4: pt= primitiveType '[' ']'\n\t\t\t\t\t{\n\t\t\t\t\tpushFollow(FOLLOW_primitiveType_in_arrayType2713);\n\t\t\t\t\tpt=primitiveType();\n\t\t\t\t\tstate._fsp--;\n\n\t\t\t\t\tstream_primitiveType.add(pt.getTree());\n\t\t\t\t\tchar_literal120=(Token)match(input,84,FOLLOW_84_in_arrayType2715); \n\t\t\t\t\tstream_84.add(char_literal120);\n\n\t\t\t\t\tchar_literal121=(Token)match(input,85,FOLLOW_85_in_arrayType2717); \n\t\t\t\t\tstream_85.add(char_literal121);\n\n\t\t\t\t\t// AST REWRITE\n\t\t\t\t\t// elements: primitiveType\n\t\t\t\t\t// token labels: \n\t\t\t\t\t// rule labels: retval\n\t\t\t\t\t// token list labels: \n\t\t\t\t\t// rule list labels: \n\t\t\t\t\t// wildcard labels: \n\t\t\t\t\tretval.tree = root_0;\n\t\t\t\t\tRewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.getTree():null);\n\n\t\t\t\t\troot_0 = (Object)adaptor.nil();\n\t\t\t\t\t// 573:3: -> ^( ArrayType[$pt.start, \\\"ArrayType\\\"] primitiveType )\n\t\t\t\t\t{\n\t\t\t\t\t\t// /home/luca/svn-repos/cd_students/2015ss/master/CD2_A1/src/cd/parser/Javali.g:573:6: ^( ArrayType[$pt.start, \\\"ArrayType\\\"] primitiveType )\n\t\t\t\t\t\t{\n\t\t\t\t\t\tObject root_1 = (Object)adaptor.nil();\n\t\t\t\t\t\troot_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(ArrayType, (pt!=null?(pt.start):null), \"ArrayType\"), root_1);\n\t\t\t\t\t\tadaptor.addChild(root_1, stream_primitiveType.nextTree());\n\t\t\t\t\t\tadaptor.addChild(root_0, root_1);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\n\t\t\t\t\tretval.tree = root_0;\n\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\n\t\t\t}\n\t\t\tretval.stop = input.LT(-1);\n\n\t\t\tretval.tree = (Object)adaptor.rulePostProcessing(root_0);\n\t\t\tadaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\n\n\t\t}\n\n\t\tcatch (RecognitionException re) {\n\t\t\treportError(re);\n\t\t\tthrow re;\n\t\t}\n\n\t\tfinally {\n\t\t\t// do for sure before leaving\n\t\t}\n\t\treturn retval;\n\t}", "@Override\n\tpublic void VisitArrayLiteralNode(BunArrayNode Node) {\n\n\t}", "private ParseTree parseArrayLiteral() {\n // ArrayLiteral :\n // [ Elisionopt ]\n // [ ElementList ]\n // [ ElementList , Elisionopt ]\n //\n // ElementList :\n // Elisionopt AssignmentOrSpreadExpression\n // ElementList , Elisionopt AssignmentOrSpreadExpression\n //\n // Elision :\n // ,\n // Elision ,\n\n SourcePosition start = getTreeStartLocation();\n ImmutableList.Builder<ParseTree> elements = ImmutableList.builder();\n\n eat(TokenType.OPEN_SQUARE);\n Token trailingCommaToken = null;\n while (peek(TokenType.COMMA) || peek(TokenType.ELLIPSIS) || peekAssignmentExpression()) {\n trailingCommaToken = null;\n if (peek(TokenType.COMMA)) {\n SourcePosition commaStart = getTreeStartLocation();\n trailingCommaToken = eat(TokenType.COMMA);\n // Consider the empty element to start & end immediately before the comma token.\n elements.add(new NullTree(new SourceRange(commaStart, commaStart)));\n\n } else {\n if (peek(TokenType.ELLIPSIS)) {\n recordFeatureUsed(Feature.SPREAD_EXPRESSIONS);\n elements.add(parseIterSpread());\n } else {\n elements.add(parseAssignmentExpression());\n }\n if (!peek(TokenType.CLOSE_SQUARE)) {\n trailingCommaToken = eat(TokenType.COMMA);\n }\n }\n }\n eat(TokenType.CLOSE_SQUARE);\n\n maybeReportTrailingComma(trailingCommaToken);\n\n return new ArrayLiteralExpressionTree(\n getTreeLocation(start), elements.build(), trailingCommaToken != null);\n }", "public final CQLParser.arrayDefinition_return arrayDefinition() throws RecognitionException {\n CQLParser.arrayDefinition_return retval = new CQLParser.arrayDefinition_return();\n retval.start = input.LT(1);\n\n Object root_0 = null;\n\n Token char_literal140=null;\n Token char_literal141=null;\n Token char_literal142=null;\n List list_ra=null;\n CQLParser.atom_return a = null;\n\n RuleReturnScope ra = null;\n Object char_literal140_tree=null;\n Object char_literal141_tree=null;\n Object char_literal142_tree=null;\n RewriteRuleTokenStream stream_117=new RewriteRuleTokenStream(adaptor,\"token 117\");\n RewriteRuleTokenStream stream_115=new RewriteRuleTokenStream(adaptor,\"token 115\");\n RewriteRuleTokenStream stream_118=new RewriteRuleTokenStream(adaptor,\"token 118\");\n RewriteRuleSubtreeStream stream_atom=new RewriteRuleSubtreeStream(adaptor,\"rule atom\");\n try {\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:2: ( '[' (a= atom )? ( ',' ra+= atom )* ']' -> ^( ARRAY ( $a)? ( $ra)* ) )\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:4: '[' (a= atom )? ( ',' ra+= atom )* ']'\n {\n char_literal140=(Token)match(input,117,FOLLOW_117_in_arrayDefinition2327); \n stream_117.add(char_literal140);\n\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:9: (a= atom )?\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==ID||LA37_0==INTEGER||LA37_0==QUOTED_STRING||(LA37_0>=REAL && LA37_0<=NULL)||LA37_0==111||LA37_0==114) ) {\n alt37=1;\n }\n switch (alt37) {\n case 1 :\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:9: a= atom\n {\n pushFollow(FOLLOW_atom_in_arrayDefinition2331);\n a=atom();\n\n state._fsp--;\n\n stream_atom.add(a.getTree());\n\n }\n break;\n\n }\n\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:16: ( ',' ra+= atom )*\n loop38:\n do {\n int alt38=2;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==115) ) {\n alt38=1;\n }\n\n\n switch (alt38) {\n \tcase 1 :\n \t // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:17: ',' ra+= atom\n \t {\n \t char_literal141=(Token)match(input,115,FOLLOW_115_in_arrayDefinition2335); \n \t stream_115.add(char_literal141);\n\n \t pushFollow(FOLLOW_atom_in_arrayDefinition2339);\n \t ra=atom();\n\n \t state._fsp--;\n\n \t stream_atom.add(ra.getTree());\n \t if (list_ra==null) list_ra=new ArrayList();\n \t list_ra.add(ra.getTree());\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop38;\n }\n } while (true);\n\n char_literal142=(Token)match(input,118,FOLLOW_118_in_arrayDefinition2343); \n stream_118.add(char_literal142);\n\n\n\n // AST REWRITE\n // elements: a, ra\n // token labels: \n // rule labels: retval, a\n // token list labels: \n // rule list labels: ra\n // wildcard labels: \n retval.tree = root_0;\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\n RewriteRuleSubtreeStream stream_a=new RewriteRuleSubtreeStream(adaptor,\"rule a\",a!=null?a.tree:null);\n RewriteRuleSubtreeStream stream_ra=new RewriteRuleSubtreeStream(adaptor,\"token ra\",list_ra);\n root_0 = (Object)adaptor.nil();\n // 481:36: -> ^( ARRAY ( $a)? ( $ra)* )\n {\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:39: ^( ARRAY ( $a)? ( $ra)* )\n {\n Object root_1 = (Object)adaptor.nil();\n root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(ARRAY, \"ARRAY\"), root_1);\n\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:47: ( $a)?\n if ( stream_a.hasNext() ) {\n adaptor.addChild(root_1, stream_a.nextTree());\n\n }\n stream_a.reset();\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:51: ( $ra)*\n while ( stream_ra.hasNext() ) {\n adaptor.addChild(root_1, stream_ra.nextTree());\n\n }\n stream_ra.reset();\n\n adaptor.addChild(root_0, root_1);\n }\n\n }\n\n retval.tree = root_0;\n }\n\n retval.stop = input.LT(-1);\n\n retval.tree = (Object)adaptor.rulePostProcessing(root_0);\n adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\n\n }\n \t\n \tcatch(RecognitionException re)\n \t{\t\n \t\treportError(re);\n \t\tthrow re;\n \t}\n finally {\n }\n return retval;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final ArrayNode array() throws RecognitionException {\n ArrayNode array = null;\n\n ValueNode literal9 = null;\n\n ObjectNode object10 = null;\n\n\n ArrayList<JSONNode> elements = new ArrayList<JSONNode>();\n try {\n // C:\\\\Users\\\\Lyle\\\\BitTorrent Sync\\\\workspace\\\\SIDSL\\\\src\\\\JSONHandler\\\\JSONTreeConstruct.g:43:3: ( ^( ARRAY ( literal )+ ) | ^( ARRAY ( object )+ ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==ARRAY) ) {\n int LA8_1 = input.LA(2);\n\n if ( (LA8_1==DOWN) ) {\n int LA8_2 = input.LA(3);\n\n if ( (LA8_2==STRING||(LA8_2>=NUMBER && LA8_2<=NULL)) ) {\n alt8=1;\n }\n else if ( (LA8_2==OBJECT) ) {\n alt8=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 2, input);\n\n throw nvae;\n }\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 1, input);\n\n throw nvae;\n }\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // C:\\\\Users\\\\Lyle\\\\BitTorrent Sync\\\\workspace\\\\SIDSL\\\\src\\\\JSONHandler\\\\JSONTreeConstruct.g:43:5: ^( ARRAY ( literal )+ )\n {\n match(input,ARRAY,FOLLOW_ARRAY_in_array209); \n\n match(input, Token.DOWN, null); \n // C:\\\\Users\\\\Lyle\\\\BitTorrent Sync\\\\workspace\\\\SIDSL\\\\src\\\\JSONHandler\\\\JSONTreeConstruct.g:43:13: ( literal )+\n int cnt6=0;\n loop6:\n do {\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==STRING||(LA6_0>=NUMBER && LA6_0<=NULL)) ) {\n alt6=1;\n }\n\n\n switch (alt6) {\n \tcase 1 :\n \t // C:\\\\Users\\\\Lyle\\\\BitTorrent Sync\\\\workspace\\\\SIDSL\\\\src\\\\JSONHandler\\\\JSONTreeConstruct.g:43:14: literal\n \t {\n \t pushFollow(FOLLOW_literal_in_array212);\n \t literal9=literal();\n\n \t state._fsp--;\n\n \t elements.add(literal9);\n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt6 >= 1 ) break loop6;\n EarlyExitException eee =\n new EarlyExitException(6, input);\n throw eee;\n }\n cnt6++;\n } while (true);\n\n\n match(input, Token.UP, null); \n\n }\n break;\n case 2 :\n // C:\\\\Users\\\\Lyle\\\\BitTorrent Sync\\\\workspace\\\\SIDSL\\\\src\\\\JSONHandler\\\\JSONTreeConstruct.g:44:5: ^( ARRAY ( object )+ )\n {\n match(input,ARRAY,FOLLOW_ARRAY_in_array224); \n\n match(input, Token.DOWN, null); \n // C:\\\\Users\\\\Lyle\\\\BitTorrent Sync\\\\workspace\\\\SIDSL\\\\src\\\\JSONHandler\\\\JSONTreeConstruct.g:44:13: ( object )+\n int cnt7=0;\n loop7:\n do {\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==OBJECT) ) {\n alt7=1;\n }\n\n\n switch (alt7) {\n \tcase 1 :\n \t // C:\\\\Users\\\\Lyle\\\\BitTorrent Sync\\\\workspace\\\\SIDSL\\\\src\\\\JSONHandler\\\\JSONTreeConstruct.g:44:14: object\n \t {\n \t pushFollow(FOLLOW_object_in_array227);\n \t object10=object();\n\n \t state._fsp--;\n\n \t elements.add(object10);\n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt7 >= 1 ) break loop7;\n EarlyExitException eee =\n new EarlyExitException(7, input);\n throw eee;\n }\n cnt7++;\n } while (true);\n\n\n match(input, Token.UP, null); \n\n }\n break;\n\n }\n array = new ArrayNode(\"ARRAY\", elements);\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return array;\n }", "public final void rule__LiteralType__ArraytypeAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:18560:1: ( ( ruleArrayType ) )\r\n // InternalGo.g:18561:2: ( ruleArrayType )\r\n {\r\n // InternalGo.g:18561:2: ( ruleArrayType )\r\n // InternalGo.g:18562:3: ruleArrayType\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getArraytypeArrayTypeParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleArrayType();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getArraytypeArrayTypeParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\r\n\tpublic void visit(ArrayExpression arrayExpression) {\n\r\n\t}", "@Test\n @IncludeIn(POSTGRESQL)\n public void array2() {\n Expression<int[]> expr = Expressions.template(int[].class, \"'{1,2,3}'::int[]\");\n int[] result = firstResult(expr);\n Assert.assertEquals(3, result.length);\n Assert.assertEquals(1, result[0]);\n Assert.assertEquals(2, result[1]);\n Assert.assertEquals(3, result[2]);\n }", "private ParseTree parseArrayPattern(PatternKind kind) {\n SourcePosition start = getTreeStartLocation();\n ImmutableList.Builder<ParseTree> elements = ImmutableList.builder();\n eat(TokenType.OPEN_SQUARE);\n while (peek(TokenType.COMMA) || peekArrayPatternElement()) {\n if (peek(TokenType.COMMA)) {\n SourcePosition nullStart = getTreeStartLocation();\n eat(TokenType.COMMA);\n elements.add(new NullTree(getTreeLocation(nullStart)));\n } else {\n elements.add(parsePatternAssignmentTarget(kind));\n\n if (peek(TokenType.COMMA)) {\n // Consume the comma separator\n eat(TokenType.COMMA);\n } else {\n // Otherwise we must be done\n break;\n }\n }\n }\n if (peek(TokenType.ELLIPSIS)) {\n recordFeatureUsed(Feature.ARRAY_PATTERN_REST);\n elements.add(parseIterRest(kind));\n }\n if (eat(TokenType.CLOSE_SQUARE) == null) {\n // If we get no closing bracket then return invalid tree to avoid compiler tripping\n // downstream. It's needed only for IDE mode where compiler continues processing even if\n // source has syntactic errors.\n return new MissingPrimaryExpressionTree(getTreeLocation(getTreeStartLocation()));\n }\n return new ArrayPatternTree(getTreeLocation(start), elements.build());\n }", "@Test\n @IncludeIn(POSTGRESQL)\n public void array() {\n Expression<Integer[]> expr = Expressions.template(Integer[].class, \"'{1,2,3}'::int[]\");\n Integer[] result = firstResult(expr);\n Assert.assertEquals(3, result.length);\n Assert.assertEquals(1, result[0].intValue());\n Assert.assertEquals(2, result[1].intValue());\n Assert.assertEquals(3, result[2].intValue());\n }", "public final EObject ruleArrayLiteralExpr() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_2=null;\n Token otherlv_3=null;\n Token otherlv_5=null;\n Token otherlv_7=null;\n Token otherlv_9=null;\n EObject lv_elems_1_0 = null;\n\n EObject lv_elems_4_0 = null;\n\n EObject lv_elems_6_0 = null;\n\n EObject lv_elems_8_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalSafetyParser.g:9637:2: ( ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) ) | ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket ) ) )\n // InternalSafetyParser.g:9638:2: ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) ) | ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket ) )\n {\n // InternalSafetyParser.g:9638:2: ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) ) | ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket ) )\n int alt120=2;\n int LA120_0 = input.LA(1);\n\n if ( (LA120_0==LeftSquareBracketVerticalLine) ) {\n int LA120_1 = input.LA(2);\n\n if ( (synpred36_InternalSafetyParser()) ) {\n alt120=1;\n }\n else if ( (synpred37_InternalSafetyParser()) ) {\n alt120=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 120, 1, input);\n\n throw nvae;\n }\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 120, 0, input);\n\n throw nvae;\n }\n switch (alt120) {\n case 1 :\n // InternalSafetyParser.g:9639:3: ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) )\n {\n // InternalSafetyParser.g:9639:3: ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) )\n // InternalSafetyParser.g:9640:4: ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket )\n {\n // InternalSafetyParser.g:9650:4: (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket )\n // InternalSafetyParser.g:9651:5: otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket\n {\n otherlv_0=(Token)match(input,LeftSquareBracketVerticalLine,FollowSets000.FOLLOW_21); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(otherlv_0, grammarAccess.getArrayLiteralExprAccess().getLeftSquareBracketVerticalLineKeyword_0_0_0());\n \t\t\t\t\n }\n // InternalSafetyParser.g:9655:5: ( (lv_elems_1_0= ruleExpr ) )\n // InternalSafetyParser.g:9656:6: (lv_elems_1_0= ruleExpr )\n {\n // InternalSafetyParser.g:9656:6: (lv_elems_1_0= ruleExpr )\n // InternalSafetyParser.g:9657:7: lv_elems_1_0= ruleExpr\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\t\tnewCompositeNode(grammarAccess.getArrayLiteralExprAccess().getElemsExprParserRuleCall_0_0_1_0());\n \t\t\t\t\t\t\n }\n pushFollow(FollowSets000.FOLLOW_100);\n lv_elems_1_0=ruleExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArrayLiteralExprRule());\n \t\t\t\t\t\t\t}\n \t\t\t\t\t\t\tadd(\n \t\t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\t\"elems\",\n \t\t\t\t\t\t\t\tlv_elems_1_0,\n \t\t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t\t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\t\n }\n\n }\n\n\n }\n\n otherlv_2=(Token)match(input,VerticalLineRightSquareBracket,FollowSets000.FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(otherlv_2, grammarAccess.getArrayLiteralExprAccess().getVerticalLineRightSquareBracketKeyword_0_0_2());\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // InternalSafetyParser.g:9681:3: ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket )\n {\n // InternalSafetyParser.g:9681:3: ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket )\n // InternalSafetyParser.g:9682:4: ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket\n {\n // InternalSafetyParser.g:9682:4: ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) )\n // InternalSafetyParser.g:9683:5: ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma )\n {\n // InternalSafetyParser.g:9693:5: (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma )\n // InternalSafetyParser.g:9694:6: otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma\n {\n otherlv_3=(Token)match(input,LeftSquareBracketVerticalLine,FollowSets000.FOLLOW_21); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewLeafNode(otherlv_3, grammarAccess.getArrayLiteralExprAccess().getLeftSquareBracketVerticalLineKeyword_1_0_0_0());\n \t\t\t\t\t\n }\n // InternalSafetyParser.g:9698:6: ( (lv_elems_4_0= ruleExpr ) )\n // InternalSafetyParser.g:9699:7: (lv_elems_4_0= ruleExpr )\n {\n // InternalSafetyParser.g:9699:7: (lv_elems_4_0= ruleExpr )\n // InternalSafetyParser.g:9700:8: lv_elems_4_0= ruleExpr\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\t\t\tnewCompositeNode(grammarAccess.getArrayLiteralExprAccess().getElemsExprParserRuleCall_1_0_0_1_0());\n \t\t\t\t\t\t\t\n }\n pushFollow(FollowSets000.FOLLOW_30);\n lv_elems_4_0=ruleExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArrayLiteralExprRule());\n \t\t\t\t\t\t\t\t}\n \t\t\t\t\t\t\t\tadd(\n \t\t\t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\t\t\"elems\",\n \t\t\t\t\t\t\t\t\tlv_elems_4_0,\n \t\t\t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t\t\t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\t\t\n }\n\n }\n\n\n }\n\n otherlv_5=(Token)match(input,Comma,FollowSets000.FOLLOW_21); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewLeafNode(otherlv_5, grammarAccess.getArrayLiteralExprAccess().getCommaKeyword_1_0_0_2());\n \t\t\t\t\t\n }\n\n }\n\n\n }\n\n // InternalSafetyParser.g:9723:4: ( (lv_elems_6_0= ruleExpr ) )\n // InternalSafetyParser.g:9724:5: (lv_elems_6_0= ruleExpr )\n {\n // InternalSafetyParser.g:9724:5: (lv_elems_6_0= ruleExpr )\n // InternalSafetyParser.g:9725:6: lv_elems_6_0= ruleExpr\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewCompositeNode(grammarAccess.getArrayLiteralExprAccess().getElemsExprParserRuleCall_1_1_0());\n \t\t\t\t\t\n }\n pushFollow(FollowSets000.FOLLOW_101);\n lv_elems_6_0=ruleExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArrayLiteralExprRule());\n \t\t\t\t\t\t}\n \t\t\t\t\t\tadd(\n \t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\"elems\",\n \t\t\t\t\t\t\tlv_elems_6_0,\n \t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\n }\n\n }\n\n\n }\n\n // InternalSafetyParser.g:9742:4: (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )*\n loop119:\n do {\n int alt119=2;\n int LA119_0 = input.LA(1);\n\n if ( (LA119_0==Comma) ) {\n alt119=1;\n }\n\n\n switch (alt119) {\n \tcase 1 :\n \t // InternalSafetyParser.g:9743:5: otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) )\n \t {\n \t otherlv_7=(Token)match(input,Comma,FollowSets000.FOLLOW_21); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\tnewLeafNode(otherlv_7, grammarAccess.getArrayLiteralExprAccess().getCommaKeyword_1_2_0());\n \t \t\t\t\t\n \t }\n \t // InternalSafetyParser.g:9747:5: ( (lv_elems_8_0= ruleExpr ) )\n \t // InternalSafetyParser.g:9748:6: (lv_elems_8_0= ruleExpr )\n \t {\n \t // InternalSafetyParser.g:9748:6: (lv_elems_8_0= ruleExpr )\n \t // InternalSafetyParser.g:9749:7: lv_elems_8_0= ruleExpr\n \t {\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\t\tnewCompositeNode(grammarAccess.getArrayLiteralExprAccess().getElemsExprParserRuleCall_1_2_1_0());\n \t \t\t\t\t\t\t\n \t }\n \t pushFollow(FollowSets000.FOLLOW_101);\n \t lv_elems_8_0=ruleExpr();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\t\tif (current==null) {\n \t \t\t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArrayLiteralExprRule());\n \t \t\t\t\t\t\t\t}\n \t \t\t\t\t\t\t\tadd(\n \t \t\t\t\t\t\t\t\tcurrent,\n \t \t\t\t\t\t\t\t\t\"elems\",\n \t \t\t\t\t\t\t\t\tlv_elems_8_0,\n \t \t\t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t \t\t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t \t\t\t\t\t\t\n \t }\n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop119;\n }\n } while (true);\n\n otherlv_9=(Token)match(input,VerticalLineRightSquareBracket,FollowSets000.FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_9, grammarAccess.getArrayLiteralExprAccess().getVerticalLineRightSquareBracketKeyword_1_3());\n \t\t\t\n }\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleElementType() throws RecognitionException {\r\n try {\r\n // InternalGo.g:530:1: ( ruleElementType EOF )\r\n // InternalGo.g:531:1: ruleElementType EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementTypeRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleElementType();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementTypeRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public String visit(ArrayType n, String argu) {\n return \"ArrayType\"; \n }", "@Override\n public void visit(ArrayDeclaration node) {\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1882:1: ( ( () ) )\n // InternalCsv.g:1883:1: ( () )\n {\n // InternalCsv.g:1883:1: ( () )\n // InternalCsv.g:1884:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \n }\n // InternalCsv.g:1885:2: ()\n // InternalCsv.g:1885:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleArrayConstructionOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArrayConstructionOperator = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5606:2: (iv_ruleArrayConstructionOperator= ruleArrayConstructionOperator EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5607:2: iv_ruleArrayConstructionOperator= ruleArrayConstructionOperator EOF\n {\n currentNode = createCompositeNode(grammarAccess.getArrayConstructionOperatorRule(), currentNode); \n pushFollow(FOLLOW_ruleArrayConstructionOperator_in_entryRuleArrayConstructionOperator9758);\n iv_ruleArrayConstructionOperator=ruleArrayConstructionOperator();\n _fsp--;\n\n current =iv_ruleArrayConstructionOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayConstructionOperator9768); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public Snippet visit(ValueArrayType n, Snippet argu) {\n\t\t Snippet _ret=new Snippet(\"\",\"\",null,false);\n\t\t\tSnippet f0 = n.nonArrayType.accept(this, argu);\n\t _ret.expType = new X10ValueArray(1, f0.expType);\n\t n.nodeToken.accept(this, argu);\n\t n.nodeToken1.accept(this, argu);\n\t n.nodeToken2.accept(this, argu);\n\t Snippet f4 = n.rankEquation.accept(this, argu);\n\t n.nodeToken3.accept(this, argu);\n\t _ret.returnTemp = _ret.expType.typeName+\" /*value*/ [\"+f4.returnTemp+\"]\";\n\t return _ret;\n\t }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleArrayType() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:492:2: ( ( ( rule__ArrayType__Group__0 ) ) )\r\n // InternalGo.g:493:2: ( ( rule__ArrayType__Group__0 ) )\r\n {\r\n // InternalGo.g:493:2: ( ( rule__ArrayType__Group__0 ) )\r\n // InternalGo.g:494:3: ( rule__ArrayType__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeAccess().getGroup()); \r\n }\r\n // InternalGo.g:495:3: ( rule__ArrayType__Group__0 )\r\n // InternalGo.g:495:4: rule__ArrayType__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayType__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmWildcardTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2745:2: (iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2746:2: iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference6461);\n iv_ruleJvmWildcardTypeReference=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmWildcardTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference6471); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleArrayBrackets() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:317:2: ( ( ( rule__ArrayBrackets__Group__0 ) ) )\n // InternalCsv.g:318:2: ( ( rule__ArrayBrackets__Group__0 ) )\n {\n // InternalCsv.g:318:2: ( ( rule__ArrayBrackets__Group__0 ) )\n // InternalCsv.g:319:3: ( rule__ArrayBrackets__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getArrayBracketsAccess().getGroup()); \n }\n // InternalCsv.g:320:3: ( rule__ArrayBrackets__Group__0 )\n // InternalCsv.g:320:4: rule__ArrayBrackets__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__ArrayBrackets__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getArrayBracketsAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__ArrayType__ElemtypeAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15920:1: ( ( ruleElementType ) )\r\n // InternalGo.g:15921:2: ( ruleElementType )\r\n {\r\n // InternalGo.g:15921:2: ( ruleElementType )\r\n // InternalGo.g:15922:3: ruleElementType\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeAccess().getElemtypeElementTypeParserRuleCall_3_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleElementType();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeAccess().getElemtypeElementTypeParserRuleCall_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15319:1: ( ( () ) )\r\n // InternalDroneScript.g:15320:1: ( () )\r\n {\r\n // InternalDroneScript.g:15320:1: ( () )\r\n // InternalDroneScript.g:15321:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \r\n }\r\n // InternalDroneScript.g:15322:2: ()\r\n // InternalDroneScript.g:15322:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRULE_ARG_ACTION() throws RecognitionException {\n try {\n // InternalUniMapperGenerator.g:5141:26: ( '[' (~ ( ( '[' | ']' ) ) )* ']' )\n // InternalUniMapperGenerator.g:5141:28: '[' (~ ( ( '[' | ']' ) ) )* ']'\n {\n match('['); \n // InternalUniMapperGenerator.g:5141:32: (~ ( ( '[' | ']' ) ) )*\n loop12:\n do {\n int alt12=2;\n int LA12_0 = input.LA(1);\n\n if ( ((LA12_0>='\\u0000' && LA12_0<='Z')||LA12_0=='\\\\'||(LA12_0>='^' && LA12_0<='\\uFFFF')) ) {\n alt12=1;\n }\n\n\n switch (alt12) {\n \tcase 1 :\n \t // InternalUniMapperGenerator.g:5141:32: ~ ( ( '[' | ']' ) )\n \t {\n \t if ( (input.LA(1)>='\\u0000' && input.LA(1)<='Z')||input.LA(1)=='\\\\'||(input.LA(1)>='^' && input.LA(1)<='\\uFFFF') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop12;\n }\n } while (true);\n\n match(']'); \n\n }\n\n }\n finally {\n }\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__ArrayBrackets__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1962:1: ( ( ']' ) )\n // InternalCsv.g:1963:1: ( ']' )\n {\n // InternalCsv.g:1963:1: ( ']' )\n // InternalCsv.g:1964:2: ']'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \n }\n match(input,28,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRULE_RBRACKET() throws RecognitionException {\r\n try {\r\n int _type = RULE_RBRACKET;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2475:15: ( ']' )\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2475:17: ']'\r\n {\r\n match(']'); \r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final EObject entryRuleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmArgumentTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2705:2: (iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2706:2: iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference6342);\n iv_ruleJvmArgumentTypeReference=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmArgumentTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference6352); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void mT__243() throws RecognitionException {\n try {\n int _type = T__243;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:241:8: ( 'array' )\n // InternalMyDsl.g:241:10: 'array'\n {\n match(\"array\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final EObject entryRuleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2573:2: (iv_ruleJvmTypeReference= ruleJvmTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2574:2: iv_ruleJvmTypeReference= ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference6009);\n iv_ruleJvmTypeReference=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference6019); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1988:1: ( ruleJvmTypeReference EOF )\r\n // InternalDroneScript.g:1989:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15820:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15821:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15821:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15822:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15823:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15825:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleArrayCreator() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n Token otherlv_3=null;\n Token otherlv_5=null;\n Token otherlv_6=null;\n Token otherlv_7=null;\n EObject lv_type_2_0 = null;\n\n EObject lv_size_4_0 = null;\n\n EObject lv_initialization_8_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2169:28: ( ( () otherlv_1= 'new' ( (lv_type_2_0= ruleType ) ) ( (otherlv_3= '[' ( (lv_size_4_0= ruleIntLiteral ) ) otherlv_5= ']' )+ | ( (otherlv_6= '[' otherlv_7= ']' )+ ( (lv_initialization_8_0= ruleArrayInitializer ) ) ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2170:1: ( () otherlv_1= 'new' ( (lv_type_2_0= ruleType ) ) ( (otherlv_3= '[' ( (lv_size_4_0= ruleIntLiteral ) ) otherlv_5= ']' )+ | ( (otherlv_6= '[' otherlv_7= ']' )+ ( (lv_initialization_8_0= ruleArrayInitializer ) ) ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2170:1: ( () otherlv_1= 'new' ( (lv_type_2_0= ruleType ) ) ( (otherlv_3= '[' ( (lv_size_4_0= ruleIntLiteral ) ) otherlv_5= ']' )+ | ( (otherlv_6= '[' otherlv_7= ']' )+ ( (lv_initialization_8_0= ruleArrayInitializer ) ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2170:2: () otherlv_1= 'new' ( (lv_type_2_0= ruleType ) ) ( (otherlv_3= '[' ( (lv_size_4_0= ruleIntLiteral ) ) otherlv_5= ']' )+ | ( (otherlv_6= '[' otherlv_7= ']' )+ ( (lv_initialization_8_0= ruleArrayInitializer ) ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2170:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2171:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getArrayCreatorAccess().getArrayCreatorAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,45,FOLLOW_45_in_ruleArrayCreator5178); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getArrayCreatorAccess().getNewKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2180:1: ( (lv_type_2_0= ruleType ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2181:1: (lv_type_2_0= ruleType )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2181:1: (lv_type_2_0= ruleType )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2182:3: lv_type_2_0= ruleType\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getArrayCreatorAccess().getTypeTypeParserRuleCall_2_0()); \n \t \n }\n pushFollow(FOLLOW_ruleType_in_ruleArrayCreator5199);\n lv_type_2_0=ruleType();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getArrayCreatorRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"type\",\n \t\tlv_type_2_0, \n \t\t\"Type\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2198:2: ( (otherlv_3= '[' ( (lv_size_4_0= ruleIntLiteral ) ) otherlv_5= ']' )+ | ( (otherlv_6= '[' otherlv_7= ']' )+ ( (lv_initialization_8_0= ruleArrayInitializer ) ) ) )\n int alt29=2;\n int LA29_0 = input.LA(1);\n\n if ( (LA29_0==46) ) {\n int LA29_1 = input.LA(2);\n\n if ( (LA29_1==47) ) {\n alt29=2;\n }\n else if ( (LA29_1==RULE_INT) ) {\n alt29=1;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 29, 1, input);\n\n throw nvae;\n }\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 29, 0, input);\n\n throw nvae;\n }\n switch (alt29) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2198:3: (otherlv_3= '[' ( (lv_size_4_0= ruleIntLiteral ) ) otherlv_5= ']' )+\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2198:3: (otherlv_3= '[' ( (lv_size_4_0= ruleIntLiteral ) ) otherlv_5= ']' )+\n int cnt27=0;\n loop27:\n do {\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==46) ) {\n alt27=1;\n }\n\n\n switch (alt27) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2198:5: otherlv_3= '[' ( (lv_size_4_0= ruleIntLiteral ) ) otherlv_5= ']'\n \t {\n \t otherlv_3=(Token)match(input,46,FOLLOW_46_in_ruleArrayCreator5213); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getArrayCreatorAccess().getLeftSquareBracketKeyword_3_0_0());\n \t \n \t }\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2202:1: ( (lv_size_4_0= ruleIntLiteral ) )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2203:1: (lv_size_4_0= ruleIntLiteral )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2203:1: (lv_size_4_0= ruleIntLiteral )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2204:3: lv_size_4_0= ruleIntLiteral\n \t {\n \t if ( state.backtracking==0 ) {\n \t \n \t \t newCompositeNode(grammarAccess.getArrayCreatorAccess().getSizeIntLiteralParserRuleCall_3_0_1_0()); \n \t \t \n \t }\n \t pushFollow(FOLLOW_ruleIntLiteral_in_ruleArrayCreator5234);\n \t lv_size_4_0=ruleIntLiteral();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t if (current==null) {\n \t \t current = createModelElementForParent(grammarAccess.getArrayCreatorRule());\n \t \t }\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"size\",\n \t \t\tlv_size_4_0, \n \t \t\t\"IntLiteral\");\n \t \t afterParserOrEnumRuleCall();\n \t \t \n \t }\n\n \t }\n\n\n \t }\n\n \t otherlv_5=(Token)match(input,47,FOLLOW_47_in_ruleArrayCreator5246); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_5, grammarAccess.getArrayCreatorAccess().getRightSquareBracketKeyword_3_0_2());\n \t \n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt27 >= 1 ) break loop27;\n \t if (state.backtracking>0) {state.failed=true; return current;}\n EarlyExitException eee =\n new EarlyExitException(27, input);\n throw eee;\n }\n cnt27++;\n } while (true);\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2225:6: ( (otherlv_6= '[' otherlv_7= ']' )+ ( (lv_initialization_8_0= ruleArrayInitializer ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2225:6: ( (otherlv_6= '[' otherlv_7= ']' )+ ( (lv_initialization_8_0= ruleArrayInitializer ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2225:7: (otherlv_6= '[' otherlv_7= ']' )+ ( (lv_initialization_8_0= ruleArrayInitializer ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2225:7: (otherlv_6= '[' otherlv_7= ']' )+\n int cnt28=0;\n loop28:\n do {\n int alt28=2;\n int LA28_0 = input.LA(1);\n\n if ( (LA28_0==46) ) {\n alt28=1;\n }\n\n\n switch (alt28) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2225:9: otherlv_6= '[' otherlv_7= ']'\n \t {\n \t otherlv_6=(Token)match(input,46,FOLLOW_46_in_ruleArrayCreator5268); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_6, grammarAccess.getArrayCreatorAccess().getLeftSquareBracketKeyword_3_1_0_0());\n \t \n \t }\n \t otherlv_7=(Token)match(input,47,FOLLOW_47_in_ruleArrayCreator5280); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_7, grammarAccess.getArrayCreatorAccess().getRightSquareBracketKeyword_3_1_0_1());\n \t \n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t if ( cnt28 >= 1 ) break loop28;\n \t if (state.backtracking>0) {state.failed=true; return current;}\n EarlyExitException eee =\n new EarlyExitException(28, input);\n throw eee;\n }\n cnt28++;\n } while (true);\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2233:3: ( (lv_initialization_8_0= ruleArrayInitializer ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2234:1: (lv_initialization_8_0= ruleArrayInitializer )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2234:1: (lv_initialization_8_0= ruleArrayInitializer )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2235:3: lv_initialization_8_0= ruleArrayInitializer\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getArrayCreatorAccess().getInitializationArrayInitializerParserRuleCall_3_1_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleArrayInitializer_in_ruleArrayCreator5303);\n lv_initialization_8_0=ruleArrayInitializer();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getArrayCreatorRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"initialization\",\n \t\tlv_initialization_8_0, \n \t\t\"ArrayInitializer\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject ruleArrayConcatenationOperator() throws RecognitionException {\n EObject current = null;\n\n EObject lv_rows_1_0 = null;\n\n EObject lv_rows_3_0 = null;\n\n\n EObject temp=null; setCurrentLookahead(); resetLookahead(); \n \n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5834:6: ( ( '[' ( (lv_rows_1_0= ruleExpressionList ) ) ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )* ']' ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5835:1: ( '[' ( (lv_rows_1_0= ruleExpressionList ) ) ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )* ']' )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5835:1: ( '[' ( (lv_rows_1_0= ruleExpressionList ) ) ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )* ']' )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5835:3: '[' ( (lv_rows_1_0= ruleExpressionList ) ) ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )* ']'\n {\n match(input,33,FOLLOW_33_in_ruleArrayConcatenationOperator10148); \n\n createLeafNode(grammarAccess.getArrayConcatenationOperatorAccess().getLeftSquareBracketKeyword_0(), null); \n \n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5839:1: ( (lv_rows_1_0= ruleExpressionList ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5840:1: (lv_rows_1_0= ruleExpressionList )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5840:1: (lv_rows_1_0= ruleExpressionList )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5841:3: lv_rows_1_0= ruleExpressionList\n {\n \n \t currentNode=createCompositeNode(grammarAccess.getArrayConcatenationOperatorAccess().getRowsExpressionListParserRuleCall_1_0(), currentNode); \n \t \n pushFollow(FOLLOW_ruleExpressionList_in_ruleArrayConcatenationOperator10169);\n lv_rows_1_0=ruleExpressionList();\n _fsp--;\n\n\n \t if (current==null) {\n \t current = factory.create(grammarAccess.getArrayConcatenationOperatorRule().getType().getClassifier());\n \t associateNodeWithAstElement(currentNode.getParent(), current);\n \t }\n \t try {\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"rows\",\n \t \t\tlv_rows_1_0, \n \t \t\t\"ExpressionList\", \n \t \t\tcurrentNode);\n \t } catch (ValueConverterException vce) {\n \t\t\t\thandleValueConverterException(vce);\n \t }\n \t currentNode = currentNode.getParent();\n \t \n\n }\n\n\n }\n\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5863:2: ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )*\n loop85:\n do {\n int alt85=2;\n int LA85_0 = input.LA(1);\n\n if ( (LA85_0==18) ) {\n alt85=1;\n }\n\n\n switch (alt85) {\n \tcase 1 :\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5863:4: ';' ( (lv_rows_3_0= ruleExpressionList ) )\n \t {\n \t match(input,18,FOLLOW_18_in_ruleArrayConcatenationOperator10180); \n\n \t createLeafNode(grammarAccess.getArrayConcatenationOperatorAccess().getSemicolonKeyword_2_0(), null); \n \t \n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5867:1: ( (lv_rows_3_0= ruleExpressionList ) )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5868:1: (lv_rows_3_0= ruleExpressionList )\n \t {\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5868:1: (lv_rows_3_0= ruleExpressionList )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5869:3: lv_rows_3_0= ruleExpressionList\n \t {\n \t \n \t \t currentNode=createCompositeNode(grammarAccess.getArrayConcatenationOperatorAccess().getRowsExpressionListParserRuleCall_2_1_0(), currentNode); \n \t \t \n \t pushFollow(FOLLOW_ruleExpressionList_in_ruleArrayConcatenationOperator10201);\n \t lv_rows_3_0=ruleExpressionList();\n \t _fsp--;\n\n\n \t \t if (current==null) {\n \t \t current = factory.create(grammarAccess.getArrayConcatenationOperatorRule().getType().getClassifier());\n \t \t associateNodeWithAstElement(currentNode.getParent(), current);\n \t \t }\n \t \t try {\n \t \t \t\tadd(\n \t \t \t\t\tcurrent, \n \t \t \t\t\t\"rows\",\n \t \t \t\tlv_rows_3_0, \n \t \t \t\t\"ExpressionList\", \n \t \t \t\tcurrentNode);\n \t \t } catch (ValueConverterException vce) {\n \t \t\t\t\thandleValueConverterException(vce);\n \t \t }\n \t \t currentNode = currentNode.getParent();\n \t \t \n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop85;\n }\n } while (true);\n\n match(input,34,FOLLOW_34_in_ruleArrayConcatenationOperator10213); \n\n createLeafNode(grammarAccess.getArrayConcatenationOperatorAccess().getRightSquareBracketKeyword_3(), null); \n \n\n }\n\n\n }\n\n resetLookahead(); \n \tlastConsumedNode = currentNode;\n \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1849:1: ( ruleJvmTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1850:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3880);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3887); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleArrayInitializer() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArrayInitializer = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2260:2: (iv_ruleArrayInitializer= ruleArrayInitializer EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2261:2: iv_ruleArrayInitializer= ruleArrayInitializer EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getArrayInitializerRule()); \n }\n pushFollow(FOLLOW_ruleArrayInitializer_in_entryRuleArrayInitializer5341);\n iv_ruleArrayInitializer=ruleArrayInitializer();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleArrayInitializer; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayInitializer5351); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleArrayBrackets() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2025:2: ( ( ( rule__ArrayBrackets__Group__0 ) ) )\r\n // InternalDroneScript.g:2026:2: ( ( rule__ArrayBrackets__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2026:2: ( ( rule__ArrayBrackets__Group__0 ) )\r\n // InternalDroneScript.g:2027:3: ( rule__ArrayBrackets__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2028:3: ( rule__ArrayBrackets__Group__0 )\r\n // InternalDroneScript.g:2028:4: rule__ArrayBrackets__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayBrackets__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public Snippet visit(NewValueArray n, Snippet argu) {\n\t Snippet _ret= new Snippet(\"\",\"\",null,false);\n\t n.nodeToken.accept(this, argu);\n\t Snippet elementType = n.nonArrayType.accept(this, argu);\n\t n.nodeToken1.accept(this, argu);\n\t n.nodeToken2.accept(this, argu);\n\t String identifier = n.identifier.accept(this, argu).returnTemp;\n\t n.arrayInitializer.accept(this, argu);\n\t \n\t n.nodeToken3.accept(this, argu);\n\t \n\t String arrayInit = \"new \" + \" \" + elementType.expType.getTypeName() + \"\" + \"/*value*/\" + \"[\" + identifier + \"]\";\n\t if(inTypeAnnotatedExpression ){ \n\t _ret = new Snippet(\"\", \n\t\t\t\t\"new\" + \" \" + elementType.expType.getTypeName() + \"\" + \"/*value*/\" + \"[\" + identifier + \"]);\\n/*arrayInitBlock*/\\n\" + arrayInitializerBlock, \n\t\t\t\tnew X10ValueArray(1, elementType.expType), false);\n\t }else{\n\t \t_ret = new Snippet(\"\", \n\t\t\t\t\t\"new\" + \" \" + elementType.expType.getTypeName() + \"\" + \"/*value*/\" + \"[\" + identifier + \"];\\n/*arrayInitBlock*/\\n\" + arrayInitializerBlock, \n\t\t\t\t\tnew X10ValueArray(1, elementType.expType), false);\n\t }\n\t \n\t arrayInit = \"\";\n\t arrayInitializerBlock = \"\";\n\t arrayInitializer = false;\n\t inTypeAnnotatedExpression = false;\n\t return _ret;\n\t }", "public final EObject entryRuleArrayConcatenationOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArrayConcatenationOperator = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5821:2: (iv_ruleArrayConcatenationOperator= ruleArrayConcatenationOperator EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5822:2: iv_ruleArrayConcatenationOperator= ruleArrayConcatenationOperator EOF\n {\n currentNode = createCompositeNode(grammarAccess.getArrayConcatenationOperatorRule(), currentNode); \n pushFollow(FOLLOW_ruleArrayConcatenationOperator_in_entryRuleArrayConcatenationOperator10103);\n iv_ruleArrayConcatenationOperator=ruleArrayConcatenationOperator();\n _fsp--;\n\n current =iv_ruleArrayConcatenationOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayConcatenationOperator10113); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__ArrayBrackets__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15913:1: ( ( ']' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15914:1: ( ']' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15914:1: ( ']' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15915:1: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n match(input,103,FOLLOW_103_in_rule__ArrayBrackets__Group__1__Impl32154); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n public Object accept(ESTreeBaseVisitor visitor) {\n return visitor.visitArrayExpression(this);\n }", "public Snippet visit(UpdatableArrayType n, Snippet argu) {\n\t\t Snippet _ret= new Snippet(\"\",\"\",null, false);\n\t\t\tSnippet f0 = n.nonArrayType.accept(this, argu);\n\t\t\t_ret.expType = new X10ReferenceArray(1,f0.expType);\n\t n.nodeToken.accept(this, argu);\n\t n.nodeToken1.accept(this, argu);\n\t n.rankEquation.accept(this, argu);\n\t n.nodeToken2.accept(this, argu);\n\t _ret.returnTemp = _ret.expType.typeName+\"[]\";\n\t\t\tallMyTypes.put(f0.expType.typeName, _ret.expType.typeName);\n\t return _ret;\n\t }", "@Override\n public Content visitArray(ArrayType type, LinkInfo linkInfo) {\n currentDepth++;\n linkInfo.type = type.getComponentType();\n visit(linkInfo.type, linkInfo);\n currentDepth--;\n if (utils.isAnnotated(type)) {\n linkInfo.type = type;\n link.add(\" \");\n link.add(getTypeAnnotationLinks(linkInfo));\n }\n // use vararg if required\n if (linkInfo.isVarArg && currentDepth == 0) {\n link.add(\"...\");\n } else {\n link.add(\"[]\");\n }\n return link;\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void mT34() throws RecognitionException {\n try {\n int _type = T34;\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:32:5: ( ']' )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:32:7: ']'\n {\n match(']'); \n\n }\n\n this.type = _type;\n }\n finally {\n }\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject ruleNamedTypeSpecifier() throws RecognitionException {\n EObject current = null;\n\n EObject lv_typeReference_0_0 = null;\n\n EObject lv_dimensions_2_0 = null;\n\n EObject lv_dimensions_4_0 = null;\n\n\n EObject temp=null; setCurrentLookahead(); resetLookahead(); \n \n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2315:6: ( ( ( (lv_typeReference_0_0= ruleQualifiedName ) ) ( '[' ( (lv_dimensions_2_0= ruleArrayDimensionSpecification ) ) ( ',' ( (lv_dimensions_4_0= ruleArrayDimensionSpecification ) ) )* ']' )? ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2316:1: ( ( (lv_typeReference_0_0= ruleQualifiedName ) ) ( '[' ( (lv_dimensions_2_0= ruleArrayDimensionSpecification ) ) ( ',' ( (lv_dimensions_4_0= ruleArrayDimensionSpecification ) ) )* ']' )? )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2316:1: ( ( (lv_typeReference_0_0= ruleQualifiedName ) ) ( '[' ( (lv_dimensions_2_0= ruleArrayDimensionSpecification ) ) ( ',' ( (lv_dimensions_4_0= ruleArrayDimensionSpecification ) ) )* ']' )? )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2316:2: ( (lv_typeReference_0_0= ruleQualifiedName ) ) ( '[' ( (lv_dimensions_2_0= ruleArrayDimensionSpecification ) ) ( ',' ( (lv_dimensions_4_0= ruleArrayDimensionSpecification ) ) )* ']' )?\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2316:2: ( (lv_typeReference_0_0= ruleQualifiedName ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2317:1: (lv_typeReference_0_0= ruleQualifiedName )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2317:1: (lv_typeReference_0_0= ruleQualifiedName )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2318:3: lv_typeReference_0_0= ruleQualifiedName\n {\n \n \t currentNode=createCompositeNode(grammarAccess.getNamedTypeSpecifierAccess().getTypeReferenceQualifiedNameParserRuleCall_0_0(), currentNode); \n \t \n pushFollow(FOLLOW_ruleQualifiedName_in_ruleNamedTypeSpecifier4040);\n lv_typeReference_0_0=ruleQualifiedName();\n _fsp--;\n\n\n \t if (current==null) {\n \t current = factory.create(grammarAccess.getNamedTypeSpecifierRule().getType().getClassifier());\n \t associateNodeWithAstElement(currentNode.getParent(), current);\n \t }\n \t try {\n \t \t\tset(\n \t \t\t\tcurrent, \n \t \t\t\t\"typeReference\",\n \t \t\tlv_typeReference_0_0, \n \t \t\t\"QualifiedName\", \n \t \t\tcurrentNode);\n \t } catch (ValueConverterException vce) {\n \t\t\t\thandleValueConverterException(vce);\n \t }\n \t currentNode = currentNode.getParent();\n \t \n\n }\n\n\n }\n\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2340:2: ( '[' ( (lv_dimensions_2_0= ruleArrayDimensionSpecification ) ) ( ',' ( (lv_dimensions_4_0= ruleArrayDimensionSpecification ) ) )* ']' )?\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==33) ) {\n alt37=1;\n }\n switch (alt37) {\n case 1 :\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2340:4: '[' ( (lv_dimensions_2_0= ruleArrayDimensionSpecification ) ) ( ',' ( (lv_dimensions_4_0= ruleArrayDimensionSpecification ) ) )* ']'\n {\n match(input,33,FOLLOW_33_in_ruleNamedTypeSpecifier4051); \n\n createLeafNode(grammarAccess.getNamedTypeSpecifierAccess().getLeftSquareBracketKeyword_1_0(), null); \n \n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2344:1: ( (lv_dimensions_2_0= ruleArrayDimensionSpecification ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2345:1: (lv_dimensions_2_0= ruleArrayDimensionSpecification )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2345:1: (lv_dimensions_2_0= ruleArrayDimensionSpecification )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2346:3: lv_dimensions_2_0= ruleArrayDimensionSpecification\n {\n \n \t currentNode=createCompositeNode(grammarAccess.getNamedTypeSpecifierAccess().getDimensionsArrayDimensionSpecificationParserRuleCall_1_1_0(), currentNode); \n \t \n pushFollow(FOLLOW_ruleArrayDimensionSpecification_in_ruleNamedTypeSpecifier4072);\n lv_dimensions_2_0=ruleArrayDimensionSpecification();\n _fsp--;\n\n\n \t if (current==null) {\n \t current = factory.create(grammarAccess.getNamedTypeSpecifierRule().getType().getClassifier());\n \t associateNodeWithAstElement(currentNode.getParent(), current);\n \t }\n \t try {\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"dimensions\",\n \t \t\tlv_dimensions_2_0, \n \t \t\t\"ArrayDimensionSpecification\", \n \t \t\tcurrentNode);\n \t } catch (ValueConverterException vce) {\n \t\t\t\thandleValueConverterException(vce);\n \t }\n \t currentNode = currentNode.getParent();\n \t \n\n }\n\n\n }\n\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2368:2: ( ',' ( (lv_dimensions_4_0= ruleArrayDimensionSpecification ) ) )*\n loop36:\n do {\n int alt36=2;\n int LA36_0 = input.LA(1);\n\n if ( (LA36_0==14) ) {\n alt36=1;\n }\n\n\n switch (alt36) {\n \tcase 1 :\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2368:4: ',' ( (lv_dimensions_4_0= ruleArrayDimensionSpecification ) )\n \t {\n \t match(input,14,FOLLOW_14_in_ruleNamedTypeSpecifier4083); \n\n \t createLeafNode(grammarAccess.getNamedTypeSpecifierAccess().getCommaKeyword_1_2_0(), null); \n \t \n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2372:1: ( (lv_dimensions_4_0= ruleArrayDimensionSpecification ) )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2373:1: (lv_dimensions_4_0= ruleArrayDimensionSpecification )\n \t {\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2373:1: (lv_dimensions_4_0= ruleArrayDimensionSpecification )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:2374:3: lv_dimensions_4_0= ruleArrayDimensionSpecification\n \t {\n \t \n \t \t currentNode=createCompositeNode(grammarAccess.getNamedTypeSpecifierAccess().getDimensionsArrayDimensionSpecificationParserRuleCall_1_2_1_0(), currentNode); \n \t \t \n \t pushFollow(FOLLOW_ruleArrayDimensionSpecification_in_ruleNamedTypeSpecifier4104);\n \t lv_dimensions_4_0=ruleArrayDimensionSpecification();\n \t _fsp--;\n\n\n \t \t if (current==null) {\n \t \t current = factory.create(grammarAccess.getNamedTypeSpecifierRule().getType().getClassifier());\n \t \t associateNodeWithAstElement(currentNode.getParent(), current);\n \t \t }\n \t \t try {\n \t \t \t\tadd(\n \t \t \t\t\tcurrent, \n \t \t \t\t\t\"dimensions\",\n \t \t \t\tlv_dimensions_4_0, \n \t \t \t\t\"ArrayDimensionSpecification\", \n \t \t \t\tcurrentNode);\n \t \t } catch (ValueConverterException vce) {\n \t \t\t\t\thandleValueConverterException(vce);\n \t \t }\n \t \t currentNode = currentNode.getParent();\n \t \t \n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop36;\n }\n } while (true);\n\n match(input,34,FOLLOW_34_in_ruleNamedTypeSpecifier4116); \n\n createLeafNode(grammarAccess.getNamedTypeSpecifierAccess().getRightSquareBracketKeyword_1_3(), null); \n \n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n resetLookahead(); \n \tlastConsumedNode = currentNode;\n \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "void visitArray(Object array, Type componentType);", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleArrayElementAccess() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArrayElementAccess = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5043:2: (iv_ruleArrayElementAccess= ruleArrayElementAccess EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5044:2: iv_ruleArrayElementAccess= ruleArrayElementAccess EOF\n {\n currentNode = createCompositeNode(grammarAccess.getArrayElementAccessRule(), currentNode); \n pushFollow(FOLLOW_ruleArrayElementAccess_in_entryRuleArrayElementAccess8833);\n iv_ruleArrayElementAccess=ruleArrayElementAccess();\n _fsp--;\n\n current =iv_ruleArrayElementAccess; \n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayElementAccess8843); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "@Override\n public R visitArrayType(ArrayTypeNode n, P p) {\n return visitNode(n, p);\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public RubyArray(Ruby ruby) {\n \t\tthis(ruby, new ArrayList());\n \t}", "public final void rule__ArrayType__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5390:1: ( ( ']' ) )\r\n // InternalGo.g:5391:1: ( ']' )\r\n {\r\n // InternalGo.g:5391:1: ( ']' )\r\n // InternalGo.g:5392:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeAccess().getRightSquareBracketKeyword_2()); \r\n }\r\n match(input,55,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeAccess().getRightSquareBracketKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private LinkedList<Element> parseArray() {\r\n \r\n LinkedList<Element> array=new LinkedList<>();//create linked list\r\n \r\n char chr=next();//consume first character\r\n assert chr=='[';//assert first character is an open square bracket\r\n while (chr!=']') {//until closing bracket\r\n \r\n switch (peek()) {//switch on next character\r\n case ' ':\r\n case '\\t':\r\n case '\\n':\r\n case '\\r': chr=next(); //discard whitespace\r\n break;\r\n case '\"': array.add(new ScalarElement(Element.STRING,parseString()));//parse string \r\n break;\r\n case '-':\r\n case '0':\r\n case '1':\r\n case '2':\r\n case '3':\r\n case '4':\r\n case '5':\r\n case '6':\r\n case '7':\r\n case '8':\r\n case '9': array.add(new ScalarElement(Element.NUMBER,parseNumber()));//parse number\r\n break;\r\n case 'f':\r\n case 't': array.add(new ScalarElement(Element.BOOLEAN,parseBoolean()));//parse boolean token\r\n break;\r\n case 'n': array.add(new ScalarElement(Element.NULL,parseNull()));//parse null token\r\n break;\r\n\r\n case '{': array.add(new ObjectElement(parseObject()));//parse object\r\n break;\r\n case '[': array.add(new ArrayElement(parseArray()));//parse array\r\n break;\r\n case ',': chr=next(); //consume the comma character\r\n break;\r\n case ']': chr=next(); //consume the close bracket character\r\n break;\r\n default : throw new RuntimeException(\"Invalid syntax : \"+context());//holy syntax batman...\r\n\r\n }//switch on next character \r\n \r\n }//until closing bracket \r\n \r\n return array;//looking good Huston\r\n \r\n }", "public final EObject ruleArraySubExpr() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_2=null;\n Token otherlv_4=null;\n EObject this_TagExpr_0 = null;\n\n EObject lv_index_3_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalSafetyParser.g:8593:2: ( (this_TagExpr_0= ruleTagExpr ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )* ) )\n // InternalSafetyParser.g:8594:2: (this_TagExpr_0= ruleTagExpr ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )* )\n {\n // InternalSafetyParser.g:8594:2: (this_TagExpr_0= ruleTagExpr ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )* )\n // InternalSafetyParser.g:8595:3: this_TagExpr_0= ruleTagExpr ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )*\n {\n if ( state.backtracking==0 ) {\n\n \t\t\tnewCompositeNode(grammarAccess.getArraySubExprAccess().getTagExprParserRuleCall_0());\n \t\t\n }\n pushFollow(FollowSets000.FOLLOW_74);\n this_TagExpr_0=ruleTagExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent = this_TagExpr_0;\n \t\t\tafterParserOrEnumRuleCall();\n \t\t\n }\n // InternalSafetyParser.g:8603:3: ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )*\n loop112:\n do {\n int alt112=2;\n int LA112_0 = input.LA(1);\n\n if ( (LA112_0==LeftSquareBracket) && (synpred30_InternalSafetyParser())) {\n alt112=1;\n }\n\n\n switch (alt112) {\n \tcase 1 :\n \t // InternalSafetyParser.g:8604:4: ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket )\n \t {\n \t // InternalSafetyParser.g:8616:4: ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket )\n \t // InternalSafetyParser.g:8617:5: () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket\n \t {\n \t // InternalSafetyParser.g:8617:5: ()\n \t // InternalSafetyParser.g:8618:6: \n \t {\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\tcurrent = forceCreateModelElementAndSet(\n \t \t\t\t\t\t\t\tgrammarAccess.getArraySubExprAccess().getArraySubExprExprAction_1_0_0(),\n \t \t\t\t\t\t\t\tcurrent);\n \t \t\t\t\t\t\n \t }\n\n \t }\n\n \t otherlv_2=(Token)match(input,LeftSquareBracket,FollowSets000.FOLLOW_21); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\tnewLeafNode(otherlv_2, grammarAccess.getArraySubExprAccess().getLeftSquareBracketKeyword_1_0_1());\n \t \t\t\t\t\n \t }\n \t // InternalSafetyParser.g:8628:5: ( (lv_index_3_0= ruleExpr ) )\n \t // InternalSafetyParser.g:8629:6: (lv_index_3_0= ruleExpr )\n \t {\n \t // InternalSafetyParser.g:8629:6: (lv_index_3_0= ruleExpr )\n \t // InternalSafetyParser.g:8630:7: lv_index_3_0= ruleExpr\n \t {\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\t\tnewCompositeNode(grammarAccess.getArraySubExprAccess().getIndexExprParserRuleCall_1_0_2_0());\n \t \t\t\t\t\t\t\n \t }\n \t pushFollow(FollowSets000.FOLLOW_32);\n \t lv_index_3_0=ruleExpr();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\t\tif (current==null) {\n \t \t\t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArraySubExprRule());\n \t \t\t\t\t\t\t\t}\n \t \t\t\t\t\t\t\tset(\n \t \t\t\t\t\t\t\t\tcurrent,\n \t \t\t\t\t\t\t\t\t\"index\",\n \t \t\t\t\t\t\t\t\tlv_index_3_0,\n \t \t\t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t \t\t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t \t\t\t\t\t\t\n \t }\n\n \t }\n\n\n \t }\n\n \t otherlv_4=(Token)match(input,RightSquareBracket,FollowSets000.FOLLOW_74); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\tnewLeafNode(otherlv_4, grammarAccess.getArraySubExprAccess().getRightSquareBracketKeyword_1_0_3());\n \t \t\t\t\t\n \t }\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop112;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void synpred11_InternalJavaJRExpression_fragment() throws RecognitionException { \n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:2: ( ( () '[' ']' ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:3: ( () '[' ']' )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:3: ( () '[' ']' )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:4: () '[' ']'\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:4: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2595:1: \n {\n }\n\n match(input,46,FOLLOW_46_in_synpred11_InternalJavaJRExpression6081); if (state.failed) return ;\n match(input,47,FOLLOW_47_in_synpred11_InternalJavaJRExpression6085); if (state.failed) return ;\n\n }\n\n\n }\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleArraySubExpr() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArraySubExpr = null;\n\n\n try {\n // InternalSafetyParser.g:8580:53: (iv_ruleArraySubExpr= ruleArraySubExpr EOF )\n // InternalSafetyParser.g:8581:2: iv_ruleArraySubExpr= ruleArraySubExpr EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getArraySubExprRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleArraySubExpr=ruleArraySubExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleArraySubExpr; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public static void main(String[] args) {\n\t\tString []syntaxClasses= {\"SDLC\",\"Manual Testing\", \"Java\", \"GIT\"};\r\n\t\t// today we have java class\r\n\t\tSystem.out.println(\"Today we have \"+syntaxClasses[2]+\" class\");\r\n\t\t\r\n\t\t\r\n\t\tdouble [] numbers= {10.45, 12.89, 5.99};\r\n\t\tSystem.out.println(numbers[0]+\" \"+numbers[1]);\r\n\t\t\r\n\t\t// int [] num; compiler will give an error\r\n\t\t// num ={} \r\n\t\t\r\n\t\t\r\n\t\t\r\n\r\n\t}", "public void testCreateArray() {\n System.out.println(\"createArray\");// NOI18N\n \n TypeID type = new TypeID(TypeID.Kind.PRIMITIVE, \"javacode\");// NOI18N\n PrimitiveDescriptor arrayDescriptor = new PrimitiveDescriptor() {\n public Object deserialize(String serialized) {\n return \"array\"; //NOI18N\n }\n public boolean isValidInstance(Object object) {\n return true;\n }\n public String serialize(Object value) {\n return \"array\"; // NOI18N\n }\n };\n \n PropertyValue arrayPropertyValue = PropertyValue.createValue( arrayDescriptor, type, DesignComponentTest.PROPERTY3_VALUE_STRING);// NOI18N\n List<PropertyValue> array = new ArrayList();\n array.add(arrayPropertyValue);\n \n PropertyValue result = PropertyValue.createArray(type, array);\n \n assertEquals(PropertyValue.Kind.ARRAY, result.getKind());\n type = type.getArrayType();\n assertEquals(type,result.getType());\n assertNotNull(result.getArray());\n }", "public final void ruleArrayBrackets() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1889:2: ( ( ( rule__ArrayBrackets__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1890:1: ( ( rule__ArrayBrackets__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1890:1: ( ( rule__ArrayBrackets__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1891:1: ( rule__ArrayBrackets__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1892:1: ( rule__ArrayBrackets__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1892:2: rule__ArrayBrackets__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__ArrayBrackets__Group__0_in_ruleArrayBrackets3973);\r\n rule__ArrayBrackets__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n public ArrayDeclScript createScript(Map<Integer,String> lineArrayMatcherMap) throws Exception{\n\n if(lineArrayMatcherMap == null){\n return null;\n }\n \n String arrayTypeLeft = lineArrayMatcherMap.get(1);\n String arrayVariableStr = lineArrayMatcherMap.get(2);\n String leftSideArrayBracket = lineArrayMatcherMap.get(3);\n String execStartingStr = lineArrayMatcherMap.get(4);\n String newKeyWordStr = lineArrayMatcherMap.get(5);\n String arrayTypeRight = lineArrayMatcherMap.get(6);\n String rightSideArrayBracket = lineArrayMatcherMap.get(7);\n String execParameters = lineArrayMatcherMap.get(8);\n \n boolean rhsArrayUsed = false;\n boolean execUsed = false;\n boolean newArrayInitialization = false;\n if(execStartingStr.isEmpty() && execParameters.isEmpty() ){\n if(!newKeyWordStr.isEmpty()&&!arrayTypeLeft.equals(arrayTypeRight)){\n throw new Error(\"invalid array declaration\");\n }\n if(!leftSideArrayBracket.isEmpty() && !rightSideArrayBracket.isEmpty() && !newKeyWordStr.equals(newKeyWord)){\n throw new Error(\"requires \\\"new\\\" keyword while creating a hawk array\");\n }\n execUsed = false;\n if(rightSideArrayBracket.isEmpty() && newKeyWordStr.isEmpty()){\n rhsArrayUsed = true;\n newArrayInitialization = false;\n }else{\n rhsArrayUsed = false;\n newArrayInitialization = true;\n }\n \n }else if(!execStartingStr.isEmpty() && !execParameters.isEmpty() ){\n if(!(newKeyWordStr.isEmpty() && rightSideArrayBracket.isEmpty())){\n throw new Exception(\"invalid array declaration\");\n }\n if(!execParameters.endsWith(\"`\")){\n throw new Exception(\"invalid array declaration\");\n }\n execUsed = true;\n rhsArrayUsed =false;\n newArrayInitialization = false;\n }else{\n throw new Exception(\"invalid array declaration\");\n }\n ArrayDeclScript arrayDeclScript = new ArrayDeclScript();\n ArrayTypeEnum arrayType = ArrayTypeEnum.valueOf(VarTypeEnum.parse(arrayTypeLeft));\n arrayDeclScript.setArrayType(arrayType);\n if(arrayDeclScript.isStructType()){\n \n StructureDefnScript structureDefnScript = AppContainer.getInstance().getBean( StructureDefinitionScriptCache.class)\n .getStructureDefnMap()\n .get(arrayTypeLeft);\n if(structureDefnScript == null){\n throw new Error(\"Could not find struct {\"+arrayTypeLeft+\"}\");\n }\n\n \n }\n boolean isVarType = arrayDeclScript.getArrayType().isVarArray(); \n Variable arrayVariable = new Variable\n (\n isVarType?VarTypeEnum.VAR:VarTypeEnum.STRUCT,\n isVarType?null:arrayTypeLeft,\n arrayVariableStr,\n isVarType?ArrayTypeEnum.VAR:ArrayTypeEnum.STRUCT\n );\n arrayDeclScript.setArrayVariable(arrayVariable);\n if(rhsArrayUsed || execUsed){\n \n if(rhsArrayUsed){\n arrayDeclScript.setArrayDeclTypeEnum(ArrayDeclTypeEnum.OLDARRAY);\n ArrayDeclScript rhsArrayDeclScript = new ArrayDeclScript();\n rhsArrayDeclScript.setArrayType(arrayDeclScript.getArrayType());\n Variable rhsArrayVariable = new Variable\n (\n isVarType?VarTypeEnum.VAR:VarTypeEnum.STRUCT,\n isVarType?null:arrayVariableStr,\n arrayTypeRight,\n isVarType?ArrayTypeEnum.VAR:ArrayTypeEnum.STRUCT\n );\n rhsArrayDeclScript.setArrayVariable(rhsArrayVariable);\n arrayDeclScript.setRhsArrayDeclScript(rhsArrayDeclScript);\n }\n if(execUsed){\n arrayDeclScript.setArrayDeclTypeEnum(ArrayDeclTypeEnum.EXEC);\n String execExpStr = execStartingStr +\" \"+ arrayTypeRight +\" \" + execParameters;\n arrayDeclScript.setExecScriptExpression(execExpStr);\n }\n }else{\n arrayDeclScript.setArrayDeclTypeEnum(ArrayDeclTypeEnum.NEWARRAY);\n }\n return arrayDeclScript;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1564:1: ( ruleJvmTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1565:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3273);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3280); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void arrayCreatorRest() throws RecognitionException {\n int arrayCreatorRest_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"arrayCreatorRest\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(871, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 129) ) { return ; }\n // Java.g:872:5: ( '[' ( ']' ( '[' ']' )* arrayInitializer | expression ']' ( '[' expression ']' )* ( '[' ']' )* ) )\n dbg.enterAlt(1);\n\n // Java.g:872:9: '[' ( ']' ( '[' ']' )* arrayInitializer | expression ']' ( '[' expression ']' )* ( '[' ']' )* )\n {\n dbg.location(872,9);\n match(input,48,FOLLOW_48_in_arrayCreatorRest5439); if (state.failed) return ;\n dbg.location(873,9);\n // Java.g:873:9: ( ']' ( '[' ']' )* arrayInitializer | expression ']' ( '[' expression ']' )* ( '[' ']' )* )\n int alt164=2;\n try { dbg.enterSubRule(164);\n try { dbg.enterDecision(164);\n\n int LA164_0 = input.LA(1);\n\n if ( (LA164_0==49) ) {\n alt164=1;\n }\n else if ( (LA164_0==Identifier||(LA164_0>=FloatingPointLiteral && LA164_0<=DecimalLiteral)||LA164_0==47||(LA164_0>=56 && LA164_0<=63)||(LA164_0>=65 && LA164_0<=66)||(LA164_0>=69 && LA164_0<=72)||(LA164_0>=105 && LA164_0<=106)||(LA164_0>=109 && LA164_0<=113)) ) {\n alt164=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 164, 0, input);\n\n dbg.recognitionException(nvae);\n throw nvae;\n }\n } finally {dbg.exitDecision(164);}\n\n switch (alt164) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:873:13: ']' ( '[' ']' )* arrayInitializer\n {\n dbg.location(873,13);\n match(input,49,FOLLOW_49_in_arrayCreatorRest5453); if (state.failed) return ;\n dbg.location(873,17);\n // Java.g:873:17: ( '[' ']' )*\n try { dbg.enterSubRule(161);\n\n loop161:\n do {\n int alt161=2;\n try { dbg.enterDecision(161);\n\n int LA161_0 = input.LA(1);\n\n if ( (LA161_0==48) ) {\n alt161=1;\n }\n\n\n } finally {dbg.exitDecision(161);}\n\n switch (alt161) {\n \tcase 1 :\n \t dbg.enterAlt(1);\n\n \t // Java.g:873:18: '[' ']'\n \t {\n \t dbg.location(873,18);\n \t match(input,48,FOLLOW_48_in_arrayCreatorRest5456); if (state.failed) return ;\n \t dbg.location(873,22);\n \t match(input,49,FOLLOW_49_in_arrayCreatorRest5458); if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop161;\n }\n } while (true);\n } finally {dbg.exitSubRule(161);}\n\n dbg.location(873,28);\n pushFollow(FOLLOW_arrayInitializer_in_arrayCreatorRest5462);\n arrayInitializer();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n case 2 :\n dbg.enterAlt(2);\n\n // Java.g:874:13: expression ']' ( '[' expression ']' )* ( '[' ']' )*\n {\n dbg.location(874,13);\n pushFollow(FOLLOW_expression_in_arrayCreatorRest5476);\n expression();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(874,24);\n match(input,49,FOLLOW_49_in_arrayCreatorRest5478); if (state.failed) return ;\n dbg.location(874,28);\n // Java.g:874:28: ( '[' expression ']' )*\n try { dbg.enterSubRule(162);\n\n loop162:\n do {\n int alt162=2;\n try { dbg.enterDecision(162);\n\n try {\n isCyclicDecision = true;\n alt162 = dfa162.predict(input);\n }\n catch (NoViableAltException nvae) {\n dbg.recognitionException(nvae);\n throw nvae;\n }\n } finally {dbg.exitDecision(162);}\n\n switch (alt162) {\n \tcase 1 :\n \t dbg.enterAlt(1);\n\n \t // Java.g:874:29: '[' expression ']'\n \t {\n \t dbg.location(874,29);\n \t match(input,48,FOLLOW_48_in_arrayCreatorRest5481); if (state.failed) return ;\n \t dbg.location(874,33);\n \t pushFollow(FOLLOW_expression_in_arrayCreatorRest5483);\n \t expression();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n \t dbg.location(874,44);\n \t match(input,49,FOLLOW_49_in_arrayCreatorRest5485); if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop162;\n }\n } while (true);\n } finally {dbg.exitSubRule(162);}\n\n dbg.location(874,50);\n // Java.g:874:50: ( '[' ']' )*\n try { dbg.enterSubRule(163);\n\n loop163:\n do {\n int alt163=2;\n try { dbg.enterDecision(163);\n\n int LA163_0 = input.LA(1);\n\n if ( (LA163_0==48) ) {\n int LA163_2 = input.LA(2);\n\n if ( (LA163_2==49) ) {\n alt163=1;\n }\n\n\n }\n\n\n } finally {dbg.exitDecision(163);}\n\n switch (alt163) {\n \tcase 1 :\n \t dbg.enterAlt(1);\n\n \t // Java.g:874:51: '[' ']'\n \t {\n \t dbg.location(874,51);\n \t match(input,48,FOLLOW_48_in_arrayCreatorRest5490); if (state.failed) return ;\n \t dbg.location(874,55);\n \t match(input,49,FOLLOW_49_in_arrayCreatorRest5492); if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop163;\n }\n } while (true);\n } finally {dbg.exitSubRule(163);}\n\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(164);}\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 129, arrayCreatorRest_StartIndex); }\n }\n dbg.location(876, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"arrayCreatorRest\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void entryRuleArrayLength() throws RecognitionException {\r\n try {\r\n // InternalGo.g:505:1: ( ruleArrayLength EOF )\r\n // InternalGo.g:506:1: ruleArrayLength EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayLengthRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleArrayLength();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayLengthRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "@Override\n public String visit(ArrayType n, Object arg) {\n return null;\n }", "public final void mT__44() throws RecognitionException {\n try {\n int _type = T__44;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:42:7: ( ']' )\n // InternalMyDsl.g:42:9: ']'\n {\n match(']'); \n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public static void assignCompoundTokens(ArrayList<String>scan){\n\nfor(int i=0;i<scan.size();i++){\n if( isUnaryPostOperator( scan.get(i) ) ){\n \n if(isNumber(scan.get(i-1))||isVariableString(scan.get(i-1))){ \n int index=i-1;\n int j=i;\n while(isUnaryPostOperator(scan.get(j))){\n ++j;\n }\n scan.add(j, \")\");\n scan.add(index,\"(\");\ni=j+1;\n }//end if\n\n else if(isClosingBracket(scan.get(i-1))){\n int index=MBracket.getComplementIndex(false, i-1, scan);\n int j=i;\n while(isUnaryPostOperator(scan.get(j))){\n ++j;\n }\n scan.add(j, \")\");\n scan.add(index,\"(\");\n i=j+1;\n }\n \n \n \n }\n \n \n \n}\n\n\n\n}", "public final void mT__34() throws RecognitionException {\r\n try {\r\n int _type = T__34;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // InternalSpringConfigDsl.g:35:7: ( '[' )\r\n // InternalSpringConfigDsl.g:35:9: '['\r\n {\r\n match('['); \r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final JavaliParser.referenceType_return referenceType() throws RecognitionException {\n\t\tJavaliParser.referenceType_return retval = new JavaliParser.referenceType_return();\n\t\tretval.start = input.LT(1);\n\n\t\tObject root_0 = null;\n\n\t\tToken Identifier116=null;\n\t\tParserRuleReturnScope arrayType117 =null;\n\n\t\tObject Identifier116_tree=null;\n\n\t\ttry {\n\t\t\t// /home/luca/svn-repos/cd_students/2015ss/master/CD2_A1/src/cd/parser/Javali.g:556:2: ( Identifier | arrayType )\n\t\t\tint alt39=2;\n\t\t\tint LA39_0 = input.LA(1);\n\t\t\tif ( (LA39_0==Identifier) ) {\n\t\t\t\tint LA39_1 = input.LA(2);\n\t\t\t\tif ( (LA39_1==84) ) {\n\t\t\t\t\talt39=2;\n\t\t\t\t}\n\t\t\t\telse if ( (LA39_1==Identifier||LA39_1==70) ) {\n\t\t\t\t\talt39=1;\n\t\t\t\t}\n\n\t\t\t\telse {\n\t\t\t\t\tint nvaeMark = input.mark();\n\t\t\t\t\ttry {\n\t\t\t\t\t\tinput.consume();\n\t\t\t\t\t\tNoViableAltException nvae =\n\t\t\t\t\t\t\tnew NoViableAltException(\"\", 39, 1, input);\n\t\t\t\t\t\tthrow nvae;\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tinput.rewind(nvaeMark);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t\telse if ( (LA39_0==86||LA39_0==90||LA39_0==92) ) {\n\t\t\t\talt39=2;\n\t\t\t}\n\n\t\t\telse {\n\t\t\t\tNoViableAltException nvae =\n\t\t\t\t\tnew NoViableAltException(\"\", 39, 0, input);\n\t\t\t\tthrow nvae;\n\t\t\t}\n\n\t\t\tswitch (alt39) {\n\t\t\t\tcase 1 :\n\t\t\t\t\t// /home/luca/svn-repos/cd_students/2015ss/master/CD2_A1/src/cd/parser/Javali.g:556:4: Identifier\n\t\t\t\t\t{\n\t\t\t\t\troot_0 = (Object)adaptor.nil();\n\n\n\t\t\t\t\tIdentifier116=(Token)match(input,Identifier,FOLLOW_Identifier_in_referenceType2618); \n\t\t\t\t\tIdentifier116_tree = (Object)adaptor.create(Identifier116);\n\t\t\t\t\tadaptor.addChild(root_0, Identifier116_tree);\n\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 2 :\n\t\t\t\t\t// /home/luca/svn-repos/cd_students/2015ss/master/CD2_A1/src/cd/parser/Javali.g:557:4: arrayType\n\t\t\t\t\t{\n\t\t\t\t\troot_0 = (Object)adaptor.nil();\n\n\n\t\t\t\t\tpushFollow(FOLLOW_arrayType_in_referenceType2623);\n\t\t\t\t\tarrayType117=arrayType();\n\t\t\t\t\tstate._fsp--;\n\n\t\t\t\t\tadaptor.addChild(root_0, arrayType117.getTree());\n\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\n\t\t\t}\n\t\t\tretval.stop = input.LT(-1);\n\n\t\t\tretval.tree = (Object)adaptor.rulePostProcessing(root_0);\n\t\t\tadaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\n\n\t\t}\n\n\t\tcatch (RecognitionException re) {\n\t\t\treportError(re);\n\t\t\tthrow re;\n\t\t}\n\n\t\tfinally {\n\t\t\t// do for sure before leaving\n\t\t}\n\t\treturn retval;\n\t}", "@Test\n public void testGenericArrayType() throws Exception {\n ArrayList<Type> typeList = Lists.newArrayList();\n typeList.add(String[].class);\n typeList.addAll(getBothParameters(ArrayToListArray.class));\n typeList.add(getFirstTypeParameter(NoOpSink.class));\n PipelineRegisterer.validateTypes(typeList);\n }", "public void writeStartArray()\n/* */ throws IOException\n/* */ {\n/* 217 */ _verifyValueWrite(\"start an array\");\n/* 218 */ this._writeContext = this._writeContext.createChildArrayContext();\n/* 219 */ if (this._cfgPrettyPrinter != null) {\n/* 220 */ this._cfgPrettyPrinter.writeStartArray(this);\n/* */ } else {\n/* 222 */ if (this._outputTail >= this._outputEnd) {\n/* 223 */ _flushBuffer();\n/* */ }\n/* 225 */ this._outputBuffer[(this._outputTail++)] = '[';\n/* */ }\n/* */ }", "public final void rule__ArrayBrackets__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15399:1: ( ( ']' ) )\r\n // InternalDroneScript.g:15400:1: ( ']' )\r\n {\r\n // InternalDroneScript.g:15400:1: ( ']' )\r\n // InternalDroneScript.g:15401:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n match(input,74,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public boolean isArrayType()\n/* */ {\n/* 138 */ return true;\n/* */ }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleArrayCreator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArrayCreator = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2158:2: (iv_ruleArrayCreator= ruleArrayCreator EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2159:2: iv_ruleArrayCreator= ruleArrayCreator EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getArrayCreatorRule()); \n }\n pushFollow(FOLLOW_ruleArrayCreator_in_entryRuleArrayCreator5122);\n iv_ruleArrayCreator=ruleArrayCreator();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleArrayCreator; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayCreator5132); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "@jdk.Exported\npublic interface ArrayType extends ReferenceType {\n\n /**\n * Creates a new instance of this array class in the target VM.\n * The array is created with the given length and each component\n * is initialized to is standard default value.\n *\n * @param length the number of components in the new array\n * @return the newly created {@link ArrayReference} mirroring\n * the new object in the target VM.\n *\n * @throws VMCannotBeModifiedException if the VirtualMachine is read-only - see {@link VirtualMachine#canBeModified()}.\n */\n ArrayReference newInstance(int length);\n\n /**\n * Gets the JNI signature of the components of this\n * array class. The signature\n * describes the declared type of the components. If the components\n * are objects, their actual type in a particular run-time context\n * may be a subclass of the declared class.\n *\n * @return a string containing the JNI signature of array components.\n */\n String componentSignature();\n\n /**\n * Returns a text representation of the component\n * type of this array.\n *\n * @return a text representation of the component type.\n */\n String componentTypeName();\n\n /**\n * Returns the component type of this array,\n * as specified in the array declaration.\n * <P>\n * Note: The component type of a array will always be\n * created or loaded before the array - see\n * <cite>The Java&trade; Virtual Machine Specification</cite>,\n * section 5.3.3 - Creating Array Classes.\n * However, although the component type will be loaded it may\n * not yet be prepared, in which case the type will be returned\n * but attempts to perform some operations on the returned type\n * (e.g. {@link ReferenceType#fields() fields()}) will throw\n * a {@link ClassNotPreparedException}.\n * Use {@link ReferenceType#isPrepared()} to determine if\n * a reference type is prepared.\n *\n * @see Type\n * @see Field#type() Field.type() - for usage examples\n * @return the {@link Type} of this array's components.\n */\n Type componentType() throws ClassNotLoadedException;\n}", "public static List ruleArrayToList(String [][] array)\t{\n\t\treturn appendToSyntax(array, new ArrayList(array.length));\n\t}", "public Tipo visitDeclArray(DECAFParser.DeclArrayContext ctx){\r\n\t\tString nameType=ctx.varType().getText();\r\n\t\t\r\n\t\tif(nameType.startsWith(\"s\")){\r\n\t\t\tnameType=nameType.replace(\"struct\", \"\");\r\n\t\t\tnameType=nameType.replace(\" \", \"\");\r\n\t\t}\r\n\t\ttry {\r\n\t\t\tif(Integer.parseInt(ctx.NUM().getText())<1){\r\n\t\t\t\ttablaSimbolos.addError(\"Array Length must be higher then 0 (Line: \"+ctx.start.getLine()+\")\");\r\n\t\t\t\treturn tablaSimbolos.incorrect();\r\n\t\t\t}\r\n\t\t\tif(tipoActual==null){\r\n\t\t\t\taddComment(\"varname: \"+ctx.ID().getText()+\"-position: \"+position);\r\n\t\t\t\tTipo found=tablaSimbolos.searchTipo(nameType);\r\n\t\t\t\tif(found==null){\r\n\t\t\t\t\ttablaSimbolos.addError(\"Type: \"+nameType+\" non existent (Line: \"+ctx.start.getLine()+\")\");\r\n\t\t\t\t\treturn tablaSimbolos.incorrect();\r\n\t\t\t\t}\r\n\t\t\t\tif(tablaSimbolos.entry(new VarDec(ctx.ID().getText(),found,Integer.parseInt(ctx.NUM().getText()),position)).getNombre().equals(\"error\")){\r\n\t\t\t\t\treturn tablaSimbolos.incorrect();\r\n\t\t\t\t}\r\n\t\t\t\t//actualizar posicion\r\n\t\t\t\tposition+=found.getByteSize()*Integer.parseInt(ctx.NUM().getText());\r\n\t\t\t\treturn tablaSimbolos.correct();\r\n\t\t\t}\r\n\t\t\telse{\r\n\t\t\t\t\r\n\t\t\t\tTipo found=tablaSimbolos.searchTipo(nameType);\r\n\t\t\t\tif(found==null){\r\n\t\t\t\t\ttablaSimbolos.addError(\"Type: \"+nameType+\" non existent (Line: \"+ctx.start.getLine()+\")\");\r\n\t\t\t\t\treturn tablaSimbolos.incorrect();\r\n\t\t\t\t}\r\n\t\t\t\tif(tipoActual.addAtrib(new VarDec(ctx.ID().getText(),found,Integer.parseInt(ctx.NUM().getText()),position))){\r\n\t\t\t\t\t//actualizar posicion\r\n\t\t\t\t\t//position+=found.getByteSize()*Integer.parseInt(ctx.NUM().getText());\r\n\t\t\t\t\treturn tablaSimbolos.correct();\r\n\t\t\t\t}\r\n\t\t\t\ttablaSimbolos.addError(\"Atribute \"+ctx.ID().getText()+\" alredy exits (Line: \"+ctx.start.getLine()+\")\");\r\n\t\t\t\treturn tablaSimbolos.incorrect();\r\n\t\t\t}\r\n\t\t} catch (Exception e) {\t\r\n\t\t\ttablaSimbolos.addError(e.getMessage());\r\n\t\t\treturn tablaSimbolos.correct();\r\n\t\t}\r\n\t}" ]
[ "0.65191716", "0.6489517", "0.62258434", "0.5998831", "0.5966058", "0.5848262", "0.57774204", "0.5564798", "0.5546501", "0.53018826", "0.51997787", "0.5153718", "0.51311374", "0.51274747", "0.5124366", "0.5105079", "0.50264007", "0.5020981", "0.50068814", "0.5004819", "0.49888858", "0.49754456", "0.49736547", "0.49328902", "0.4910393", "0.4887866", "0.4860423", "0.48226863", "0.48081192", "0.4771275", "0.4767124", "0.47166952", "0.47114986", "0.4689594", "0.46868318", "0.4683716", "0.46799025", "0.4679295", "0.46584427", "0.465836", "0.46439674", "0.4633565", "0.46313173", "0.46163064", "0.45823663", "0.4551658", "0.45471764", "0.45455527", "0.4531674", "0.45311248", "0.4530811", "0.45147103", "0.45080978", "0.45052254", "0.45000502", "0.44895905", "0.4482685", "0.44701967", "0.44518292", "0.4445414", "0.44421938", "0.44413066", "0.44401503", "0.44393432", "0.44207668", "0.440915", "0.44051456", "0.43998688", "0.43854898", "0.43767405", "0.43747994", "0.43729085", "0.43727657", "0.43659908", "0.43645734", "0.4364526", "0.43613586", "0.4360771", "0.43571007", "0.43566117", "0.4355954", "0.43552774", "0.43549436", "0.43445945", "0.43349957", "0.43337724", "0.43226343", "0.4321863", "0.4318107", "0.4316278", "0.43156624", "0.43100435", "0.4308551", "0.43071407", "0.42949122", "0.4294165", "0.4291207", "0.4281584", "0.42802665", "0.42793992" ]
0.64635056
2
$ANTLR end "entryRuleArrayBrackets" $ANTLR start "ruleArrayBrackets" InternalCsv.g:313:1: ruleArrayBrackets : ( ( rule__ArrayBrackets__Group__0 ) ) ;
public final void ruleArrayBrackets() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:317:2: ( ( ( rule__ArrayBrackets__Group__0 ) ) ) // InternalCsv.g:318:2: ( ( rule__ArrayBrackets__Group__0 ) ) { // InternalCsv.g:318:2: ( ( rule__ArrayBrackets__Group__0 ) ) // InternalCsv.g:319:3: ( rule__ArrayBrackets__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getArrayBracketsAccess().getGroup()); } // InternalCsv.g:320:3: ( rule__ArrayBrackets__Group__0 ) // InternalCsv.g:320:4: rule__ArrayBrackets__Group__0 { pushFollow(FOLLOW_2); rule__ArrayBrackets__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getArrayBracketsAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleArrayBrackets() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2025:2: ( ( ( rule__ArrayBrackets__Group__0 ) ) )\r\n // InternalDroneScript.g:2026:2: ( ( rule__ArrayBrackets__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2026:2: ( ( rule__ArrayBrackets__Group__0 ) )\r\n // InternalDroneScript.g:2027:3: ( rule__ArrayBrackets__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2028:3: ( rule__ArrayBrackets__Group__0 )\r\n // InternalDroneScript.g:2028:4: rule__ArrayBrackets__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayBrackets__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleArrayBrackets() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1889:2: ( ( ( rule__ArrayBrackets__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1890:1: ( ( rule__ArrayBrackets__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1890:1: ( ( rule__ArrayBrackets__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1891:1: ( rule__ArrayBrackets__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1892:1: ( rule__ArrayBrackets__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1892:2: rule__ArrayBrackets__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__ArrayBrackets__Group__0_in_ruleArrayBrackets3973);\r\n rule__ArrayBrackets__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ArrayBrackets__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1962:1: ( ( ']' ) )\n // InternalCsv.g:1963:1: ( ']' )\n {\n // InternalCsv.g:1963:1: ( ']' )\n // InternalCsv.g:1964:2: ']'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \n }\n match(input,28,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ArrayBrackets__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1936:1: ( ( '[' ) )\n // InternalCsv.g:1937:1: ( '[' )\n {\n // InternalCsv.g:1937:1: ( '[' )\n // InternalCsv.g:1938:2: '['\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getArrayBracketsAccess().getLeftSquareBracketKeyword_0()); \n }\n match(input,27,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getArrayBracketsAccess().getLeftSquareBracketKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ArrayBrackets__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15913:1: ( ( ']' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15914:1: ( ']' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15914:1: ( ']' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15915:1: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n match(input,103,FOLLOW_103_in_rule__ArrayBrackets__Group__1__Impl32154); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ArrayBrackets__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15399:1: ( ( ']' ) )\r\n // InternalDroneScript.g:15400:1: ( ']' )\r\n {\r\n // InternalDroneScript.g:15400:1: ( ']' )\r\n // InternalDroneScript.g:15401:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n match(input,74,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ArrayBrackets__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1924:1: ( rule__ArrayBrackets__Group__0__Impl rule__ArrayBrackets__Group__1 )\n // InternalCsv.g:1925:2: rule__ArrayBrackets__Group__0__Impl rule__ArrayBrackets__Group__1\n {\n pushFollow(FOLLOW_25);\n rule__ArrayBrackets__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__ArrayBrackets__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ArrayBrackets__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15373:1: ( ( '[' ) )\r\n // InternalDroneScript.g:15374:1: ( '[' )\r\n {\r\n // InternalDroneScript.g:15374:1: ( '[' )\r\n // InternalDroneScript.g:15375:2: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n match(input,73,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleArrayBrackets() throws RecognitionException {\n try {\n // InternalCsv.g:305:1: ( ruleArrayBrackets EOF )\n // InternalCsv.g:306:1: ruleArrayBrackets EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getArrayBracketsRule()); \n }\n pushFollow(FOLLOW_1);\n ruleArrayBrackets();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getArrayBracketsRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__ArrayBrackets__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15883:1: ( ( '[' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15884:1: ( '[' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15884:1: ( '[' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15885:1: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n match(input,104,FOLLOW_104_in_rule__ArrayBrackets__Group__0__Impl32095); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ArrayBrackets__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15871:1: ( rule__ArrayBrackets__Group__0__Impl rule__ArrayBrackets__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15872:2: rule__ArrayBrackets__Group__0__Impl rule__ArrayBrackets__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__ArrayBrackets__Group__0__Impl_in_rule__ArrayBrackets__Group__032064);\r\n rule__ArrayBrackets__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__ArrayBrackets__Group__1_in_rule__ArrayBrackets__Group__032067);\r\n rule__ArrayBrackets__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1908:1: ( ( ruleArrayBrackets ) )\n // InternalCsv.g:1909:1: ( ruleArrayBrackets )\n {\n // InternalCsv.g:1909:1: ( ruleArrayBrackets )\n // InternalCsv.g:1910:2: ruleArrayBrackets\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleArrayBrackets();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleArrayBrackets() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2013:1: ( ruleArrayBrackets EOF )\r\n // InternalDroneScript.g:2014:1: ruleArrayBrackets EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__ArrayBrackets__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15361:1: ( rule__ArrayBrackets__Group__0__Impl rule__ArrayBrackets__Group__1 )\r\n // InternalDroneScript.g:15362:2: rule__ArrayBrackets__Group__0__Impl rule__ArrayBrackets__Group__1\r\n {\r\n pushFollow(FOLLOW_69);\r\n rule__ArrayBrackets__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayBrackets__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15345:1: ( ( ruleArrayBrackets ) )\r\n // InternalDroneScript.g:15346:1: ( ruleArrayBrackets )\r\n {\r\n // InternalDroneScript.g:15346:1: ( ruleArrayBrackets )\r\n // InternalDroneScript.g:15347:2: ruleArrayBrackets\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15850:1: ( ( ruleArrayBrackets ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15851:1: ( ruleArrayBrackets )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15851:1: ( ruleArrayBrackets )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15852:1: ruleArrayBrackets\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_ruleArrayBrackets_in_rule__JvmTypeReference__Group_0_1_0__1__Impl32031);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getArrayBracketsParserRuleCall_0_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleArrayBrackets() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1877:1: ( ruleArrayBrackets EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1878:1: ruleArrayBrackets EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsRule()); \r\n }\r\n pushFollow(FOLLOW_ruleArrayBrackets_in_entryRuleArrayBrackets3940);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayBrackets3947); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__ArrayType__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5390:1: ( ( ']' ) )\r\n // InternalGo.g:5391:1: ( ']' )\r\n {\r\n // InternalGo.g:5391:1: ( ']' )\r\n // InternalGo.g:5392:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeAccess().getRightSquareBracketKeyword_2()); \r\n }\r\n match(input,55,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeAccess().getRightSquareBracketKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleArrayType() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:492:2: ( ( ( rule__ArrayType__Group__0 ) ) )\r\n // InternalGo.g:493:2: ( ( rule__ArrayType__Group__0 ) )\r\n {\r\n // InternalGo.g:493:2: ( ( rule__ArrayType__Group__0 ) )\r\n // InternalGo.g:494:3: ( rule__ArrayType__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeAccess().getGroup()); \r\n }\r\n // InternalGo.g:495:3: ( rule__ArrayType__Group__0 )\r\n // InternalGo.g:495:4: rule__ArrayType__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayType__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ArrayType__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5336:1: ( ( '[' ) )\r\n // InternalGo.g:5337:1: ( '[' )\r\n {\r\n // InternalGo.g:5337:1: ( '[' )\r\n // InternalGo.g:5338:2: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n match(input,54,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XTypeLiteral__ArrayDimensionsAssignment_4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19060:1: ( ( ruleArrayBrackets ) )\r\n // InternalDroneScript.g:19061:2: ( ruleArrayBrackets )\r\n {\r\n // InternalDroneScript.g:19061:2: ( ruleArrayBrackets )\r\n // InternalDroneScript.g:19062:3: ruleArrayBrackets\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getArrayDimensionsArrayBracketsParserRuleCall_4_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getArrayDimensionsArrayBracketsParserRuleCall_4_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ArrayBrackets__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15902:1: ( rule__ArrayBrackets__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15903:2: rule__ArrayBrackets__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__ArrayBrackets__Group__1__Impl_in_rule__ArrayBrackets__Group__132126);\r\n rule__ArrayBrackets__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ArrayBrackets__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1951:1: ( rule__ArrayBrackets__Group__1__Impl )\n // InternalCsv.g:1952:2: rule__ArrayBrackets__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__ArrayBrackets__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ArrayBrackets__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15388:1: ( rule__ArrayBrackets__Group__1__Impl )\r\n // InternalDroneScript.g:15389:2: rule__ArrayBrackets__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayBrackets__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XTypeLiteral__ArrayDimensionsAssignment_4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18862:1: ( ( ruleArrayBrackets ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18863:1: ( ruleArrayBrackets )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18863:1: ( ruleArrayBrackets )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18864:1: ruleArrayBrackets\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getArrayDimensionsArrayBracketsParserRuleCall_4_0()); \r\n }\r\n pushFollow(FOLLOW_ruleArrayBrackets_in_rule__XTypeLiteral__ArrayDimensionsAssignment_438117);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getArrayDimensionsArrayBracketsParserRuleCall_4_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void array() throws SyntaxException{\n if(cursor.getType().equals(TokenType.RIGHT_BRACKET))\n return;\n else\n {\n elements();\n match(TokenType.RIGHT_BRACKET);\n }\n }", "private ParseTree parseArrayPattern(PatternKind kind) {\n SourcePosition start = getTreeStartLocation();\n ImmutableList.Builder<ParseTree> elements = ImmutableList.builder();\n eat(TokenType.OPEN_SQUARE);\n while (peek(TokenType.COMMA) || peekArrayPatternElement()) {\n if (peek(TokenType.COMMA)) {\n SourcePosition nullStart = getTreeStartLocation();\n eat(TokenType.COMMA);\n elements.add(new NullTree(getTreeLocation(nullStart)));\n } else {\n elements.add(parsePatternAssignmentTarget(kind));\n\n if (peek(TokenType.COMMA)) {\n // Consume the comma separator\n eat(TokenType.COMMA);\n } else {\n // Otherwise we must be done\n break;\n }\n }\n }\n if (peek(TokenType.ELLIPSIS)) {\n recordFeatureUsed(Feature.ARRAY_PATTERN_REST);\n elements.add(parseIterRest(kind));\n }\n if (eat(TokenType.CLOSE_SQUARE) == null) {\n // If we get no closing bracket then return invalid tree to avoid compiler tripping\n // downstream. It's needed only for IDE mode where compiler continues processing even if\n // source has syntactic errors.\n return new MissingPrimaryExpressionTree(getTreeLocation(getTreeStartLocation()));\n }\n return new ArrayPatternTree(getTreeLocation(start), elements.build());\n }", "public final void rule__AstInputPattern__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14375:1: ( ( ']' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14376:1: ( ']' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14376:1: ( ']' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14377:1: ']'\n {\n before(grammarAccess.getAstInputPatternAccess().getRightSquareBracketKeyword_4()); \n match(input,82,FOLLOW_82_in_rule__AstInputPattern__Group__4__Impl29078); \n after(grammarAccess.getAstInputPatternAccess().getRightSquareBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19369:1: ( ( ']' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19370:1: ( ']' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19370:1: ( ']' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19371:1: ']'\n {\n before(grammarAccess.getAstExpressionListAccess().getRightSquareBracketKeyword_4()); \n match(input,82,FOLLOW_82_in_rule__AstExpressionList__Group__4__Impl38904); \n after(grammarAccess.getAstExpressionListAccess().getRightSquareBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ArrayType__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5363:1: ( ( ruleArrayLength ) )\r\n // InternalGo.g:5364:1: ( ruleArrayLength )\r\n {\r\n // InternalGo.g:5364:1: ( ruleArrayLength )\r\n // InternalGo.g:5365:2: ruleArrayLength\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeAccess().getArrayLengthParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleArrayLength();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeAccess().getArrayLengthParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Tab__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1649:1: ( ( ']' ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1650:1: ( ']' )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1650:1: ( ']' )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1651:1: ']'\n {\n before(grammarAccess.getTabAccess().getRightSquareBracketKeyword_3()); \n match(input,25,FOLLOW_25_in_rule__Tab__Group__3__Impl3277); \n after(grammarAccess.getTabAccess().getRightSquareBracketKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRULE_RBRACKET() throws RecognitionException {\r\n try {\r\n int _type = RULE_RBRACKET;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2475:15: ( ']' )\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2475:17: ']'\r\n {\r\n match(']'); \r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final void rule__AstVariableDeclaration__Group_3__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:21762:1: ( ( ']' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:21763:1: ( ']' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:21763:1: ( ']' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:21764:1: ']'\n {\n before(grammarAccess.getAstVariableDeclarationAccess().getRightSquareBracketKeyword_3_2()); \n match(input,82,FOLLOW_82_in_rule__AstVariableDeclaration__Group_3__2__Impl43612); \n after(grammarAccess.getAstVariableDeclarationAccess().getRightSquareBracketKeyword_3_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "ArrayTypeRule createArrayTypeRule();", "public final void rule__ArrayType__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5324:1: ( rule__ArrayType__Group__0__Impl rule__ArrayType__Group__1 )\r\n // InternalGo.g:5325:2: rule__ArrayType__Group__0__Impl rule__ArrayType__Group__1\r\n {\r\n pushFollow(FOLLOW_20);\r\n rule__ArrayType__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayType__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstExpressionList__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19252:1: ( ( '[' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19253:1: ( '[' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19253:1: ( '[' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19254:1: '['\n {\n before(grammarAccess.getAstExpressionListAccess().getLeftSquareBracketKeyword_0()); \n match(input,81,FOLLOW_81_in_rule__AstExpressionList__Group__0__Impl38663); \n after(grammarAccess.getAstExpressionListAccess().getLeftSquareBracketKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_2__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20660:1: ( ( ']' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20661:1: ( ']' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20661:1: ( ']' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20662:1: ']'\n {\n before(grammarAccess.getAstTypeAccess().getRightSquareBracketKeyword_0_1_2_4()); \n match(input,82,FOLLOW_82_in_rule__AstType__Group_0_1_2__4__Impl41445); \n after(grammarAccess.getAstTypeAccess().getRightSquareBracketKeyword_0_1_2_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ArrayType__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5378:1: ( rule__ArrayType__Group__2__Impl rule__ArrayType__Group__3 )\r\n // InternalGo.g:5379:2: rule__ArrayType__Group__2__Impl rule__ArrayType__Group__3\r\n {\r\n pushFollow(FOLLOW_17);\r\n rule__ArrayType__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayType__Group__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private ParseTree parseArrayLiteral() {\n // ArrayLiteral :\n // [ Elisionopt ]\n // [ ElementList ]\n // [ ElementList , Elisionopt ]\n //\n // ElementList :\n // Elisionopt AssignmentOrSpreadExpression\n // ElementList , Elisionopt AssignmentOrSpreadExpression\n //\n // Elision :\n // ,\n // Elision ,\n\n SourcePosition start = getTreeStartLocation();\n ImmutableList.Builder<ParseTree> elements = ImmutableList.builder();\n\n eat(TokenType.OPEN_SQUARE);\n Token trailingCommaToken = null;\n while (peek(TokenType.COMMA) || peek(TokenType.ELLIPSIS) || peekAssignmentExpression()) {\n trailingCommaToken = null;\n if (peek(TokenType.COMMA)) {\n SourcePosition commaStart = getTreeStartLocation();\n trailingCommaToken = eat(TokenType.COMMA);\n // Consider the empty element to start & end immediately before the comma token.\n elements.add(new NullTree(new SourceRange(commaStart, commaStart)));\n\n } else {\n if (peek(TokenType.ELLIPSIS)) {\n recordFeatureUsed(Feature.SPREAD_EXPRESSIONS);\n elements.add(parseIterSpread());\n } else {\n elements.add(parseAssignmentExpression());\n }\n if (!peek(TokenType.CLOSE_SQUARE)) {\n trailingCommaToken = eat(TokenType.COMMA);\n }\n }\n }\n eat(TokenType.CLOSE_SQUARE);\n\n maybeReportTrailingComma(trailingCommaToken);\n\n return new ArrayLiteralExpressionTree(\n getTreeLocation(start), elements.build(), trailingCommaToken != null);\n }", "public final void rule__AstVariableDeclaration__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:21703:1: ( ( '[' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:21704:1: ( '[' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:21704:1: ( '[' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:21705:1: '['\n {\n before(grammarAccess.getAstVariableDeclarationAccess().getLeftSquareBracketKeyword_3_0()); \n match(input,81,FOLLOW_81_in_rule__AstVariableDeclaration__Group_3__0__Impl43493); \n after(grammarAccess.getAstVariableDeclarationAccess().getLeftSquareBracketKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:225:1: ( ( ']' ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:226:1: ( ']' )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:226:1: ( ']' )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:227:1: ']'\r\n {\r\n before(grammarAccess.getInputAccess().getRightSquareBracketKeyword_3()); \r\n match(input,8,FOLLOW_8_in_rule__Input__Group__3__Impl403); \r\n after(grammarAccess.getInputAccess().getRightSquareBracketKeyword_3()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Attribute__IsArrayAssignment_2_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:2185:1: ( ( ( ']' ) ) )\n // InternalMyDsl.g:2186:2: ( ( ']' ) )\n {\n // InternalMyDsl.g:2186:2: ( ( ']' ) )\n // InternalMyDsl.g:2187:3: ( ']' )\n {\n before(grammarAccess.getAttributeAccess().getIsArrayRightSquareBracketKeyword_2_3_0()); \n // InternalMyDsl.g:2188:3: ( ']' )\n // InternalMyDsl.g:2189:4: ']'\n {\n before(grammarAccess.getAttributeAccess().getIsArrayRightSquareBracketKeyword_2_3_0()); \n match(input,32,FOLLOW_2); \n after(grammarAccess.getAttributeAccess().getIsArrayRightSquareBracketKeyword_2_3_0()); \n\n }\n\n after(grammarAccess.getAttributeAccess().getIsArrayRightSquareBracketKeyword_2_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SliceType__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5471:1: ( ( ']' ) )\r\n // InternalGo.g:5472:1: ( ']' )\r\n {\r\n // InternalGo.g:5472:1: ( ']' )\r\n // InternalGo.g:5473:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getSliceTypeAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n match(input,55,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getSliceTypeAccess().getRightSquareBracketKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Slice__Group_1__6__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:14137:1: ( ( ']' ) )\r\n // InternalGo.g:14138:1: ( ']' )\r\n {\r\n // InternalGo.g:14138:1: ( ']' )\r\n // InternalGo.g:14139:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getSliceAccess().getRightSquareBracketKeyword_1_6()); \r\n }\r\n match(input,55,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getSliceAccess().getRightSquareBracketKeyword_1_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleArraySubExpr() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_2=null;\n Token otherlv_4=null;\n EObject this_TagExpr_0 = null;\n\n EObject lv_index_3_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalSafetyParser.g:8593:2: ( (this_TagExpr_0= ruleTagExpr ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )* ) )\n // InternalSafetyParser.g:8594:2: (this_TagExpr_0= ruleTagExpr ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )* )\n {\n // InternalSafetyParser.g:8594:2: (this_TagExpr_0= ruleTagExpr ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )* )\n // InternalSafetyParser.g:8595:3: this_TagExpr_0= ruleTagExpr ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )*\n {\n if ( state.backtracking==0 ) {\n\n \t\t\tnewCompositeNode(grammarAccess.getArraySubExprAccess().getTagExprParserRuleCall_0());\n \t\t\n }\n pushFollow(FollowSets000.FOLLOW_74);\n this_TagExpr_0=ruleTagExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent = this_TagExpr_0;\n \t\t\tafterParserOrEnumRuleCall();\n \t\t\n }\n // InternalSafetyParser.g:8603:3: ( ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket ) )*\n loop112:\n do {\n int alt112=2;\n int LA112_0 = input.LA(1);\n\n if ( (LA112_0==LeftSquareBracket) && (synpred30_InternalSafetyParser())) {\n alt112=1;\n }\n\n\n switch (alt112) {\n \tcase 1 :\n \t // InternalSafetyParser.g:8604:4: ( ( () LeftSquareBracket ( ( ruleExpr ) ) RightSquareBracket ) )=> ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket )\n \t {\n \t // InternalSafetyParser.g:8616:4: ( () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket )\n \t // InternalSafetyParser.g:8617:5: () otherlv_2= LeftSquareBracket ( (lv_index_3_0= ruleExpr ) ) otherlv_4= RightSquareBracket\n \t {\n \t // InternalSafetyParser.g:8617:5: ()\n \t // InternalSafetyParser.g:8618:6: \n \t {\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\tcurrent = forceCreateModelElementAndSet(\n \t \t\t\t\t\t\t\tgrammarAccess.getArraySubExprAccess().getArraySubExprExprAction_1_0_0(),\n \t \t\t\t\t\t\t\tcurrent);\n \t \t\t\t\t\t\n \t }\n\n \t }\n\n \t otherlv_2=(Token)match(input,LeftSquareBracket,FollowSets000.FOLLOW_21); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\tnewLeafNode(otherlv_2, grammarAccess.getArraySubExprAccess().getLeftSquareBracketKeyword_1_0_1());\n \t \t\t\t\t\n \t }\n \t // InternalSafetyParser.g:8628:5: ( (lv_index_3_0= ruleExpr ) )\n \t // InternalSafetyParser.g:8629:6: (lv_index_3_0= ruleExpr )\n \t {\n \t // InternalSafetyParser.g:8629:6: (lv_index_3_0= ruleExpr )\n \t // InternalSafetyParser.g:8630:7: lv_index_3_0= ruleExpr\n \t {\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\t\tnewCompositeNode(grammarAccess.getArraySubExprAccess().getIndexExprParserRuleCall_1_0_2_0());\n \t \t\t\t\t\t\t\n \t }\n \t pushFollow(FollowSets000.FOLLOW_32);\n \t lv_index_3_0=ruleExpr();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\t\tif (current==null) {\n \t \t\t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArraySubExprRule());\n \t \t\t\t\t\t\t\t}\n \t \t\t\t\t\t\t\tset(\n \t \t\t\t\t\t\t\t\tcurrent,\n \t \t\t\t\t\t\t\t\t\"index\",\n \t \t\t\t\t\t\t\t\tlv_index_3_0,\n \t \t\t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t \t\t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t \t\t\t\t\t\t\n \t }\n\n \t }\n\n\n \t }\n\n \t otherlv_4=(Token)match(input,RightSquareBracket,FollowSets000.FOLLOW_74); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\tnewLeafNode(otherlv_4, grammarAccess.getArraySubExprAccess().getRightSquareBracketKeyword_1_0_3());\n \t \t\t\t\t\n \t }\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop112;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__AstOutputPattern__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14753:1: ( ( ']' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14754:1: ( ']' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14754:1: ( ']' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14755:1: ']'\n {\n before(grammarAccess.getAstOutputPatternAccess().getRightSquareBracketKeyword_4()); \n match(input,82,FOLLOW_82_in_rule__AstOutputPattern__Group__4__Impl29823); \n after(grammarAccess.getAstOutputPatternAccess().getRightSquareBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Slice__Group_0__5__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13948:1: ( ( ']' ) )\r\n // InternalGo.g:13949:1: ( ']' )\r\n {\r\n // InternalGo.g:13949:1: ( ']' )\r\n // InternalGo.g:13950:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getSliceAccess().getRightSquareBracketKeyword_0_5()); \r\n }\r\n match(input,55,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getSliceAccess().getRightSquareBracketKeyword_0_5()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ArrayType__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5405:1: ( rule__ArrayType__Group__3__Impl )\r\n // InternalGo.g:5406:2: rule__ArrayType__Group__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayType__Group__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleArrayConcatenationOperator() throws RecognitionException {\n EObject current = null;\n\n EObject lv_rows_1_0 = null;\n\n EObject lv_rows_3_0 = null;\n\n\n EObject temp=null; setCurrentLookahead(); resetLookahead(); \n \n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5834:6: ( ( '[' ( (lv_rows_1_0= ruleExpressionList ) ) ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )* ']' ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5835:1: ( '[' ( (lv_rows_1_0= ruleExpressionList ) ) ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )* ']' )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5835:1: ( '[' ( (lv_rows_1_0= ruleExpressionList ) ) ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )* ']' )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5835:3: '[' ( (lv_rows_1_0= ruleExpressionList ) ) ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )* ']'\n {\n match(input,33,FOLLOW_33_in_ruleArrayConcatenationOperator10148); \n\n createLeafNode(grammarAccess.getArrayConcatenationOperatorAccess().getLeftSquareBracketKeyword_0(), null); \n \n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5839:1: ( (lv_rows_1_0= ruleExpressionList ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5840:1: (lv_rows_1_0= ruleExpressionList )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5840:1: (lv_rows_1_0= ruleExpressionList )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5841:3: lv_rows_1_0= ruleExpressionList\n {\n \n \t currentNode=createCompositeNode(grammarAccess.getArrayConcatenationOperatorAccess().getRowsExpressionListParserRuleCall_1_0(), currentNode); \n \t \n pushFollow(FOLLOW_ruleExpressionList_in_ruleArrayConcatenationOperator10169);\n lv_rows_1_0=ruleExpressionList();\n _fsp--;\n\n\n \t if (current==null) {\n \t current = factory.create(grammarAccess.getArrayConcatenationOperatorRule().getType().getClassifier());\n \t associateNodeWithAstElement(currentNode.getParent(), current);\n \t }\n \t try {\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"rows\",\n \t \t\tlv_rows_1_0, \n \t \t\t\"ExpressionList\", \n \t \t\tcurrentNode);\n \t } catch (ValueConverterException vce) {\n \t\t\t\thandleValueConverterException(vce);\n \t }\n \t currentNode = currentNode.getParent();\n \t \n\n }\n\n\n }\n\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5863:2: ( ';' ( (lv_rows_3_0= ruleExpressionList ) ) )*\n loop85:\n do {\n int alt85=2;\n int LA85_0 = input.LA(1);\n\n if ( (LA85_0==18) ) {\n alt85=1;\n }\n\n\n switch (alt85) {\n \tcase 1 :\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5863:4: ';' ( (lv_rows_3_0= ruleExpressionList ) )\n \t {\n \t match(input,18,FOLLOW_18_in_ruleArrayConcatenationOperator10180); \n\n \t createLeafNode(grammarAccess.getArrayConcatenationOperatorAccess().getSemicolonKeyword_2_0(), null); \n \t \n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5867:1: ( (lv_rows_3_0= ruleExpressionList ) )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5868:1: (lv_rows_3_0= ruleExpressionList )\n \t {\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5868:1: (lv_rows_3_0= ruleExpressionList )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5869:3: lv_rows_3_0= ruleExpressionList\n \t {\n \t \n \t \t currentNode=createCompositeNode(grammarAccess.getArrayConcatenationOperatorAccess().getRowsExpressionListParserRuleCall_2_1_0(), currentNode); \n \t \t \n \t pushFollow(FOLLOW_ruleExpressionList_in_ruleArrayConcatenationOperator10201);\n \t lv_rows_3_0=ruleExpressionList();\n \t _fsp--;\n\n\n \t \t if (current==null) {\n \t \t current = factory.create(grammarAccess.getArrayConcatenationOperatorRule().getType().getClassifier());\n \t \t associateNodeWithAstElement(currentNode.getParent(), current);\n \t \t }\n \t \t try {\n \t \t \t\tadd(\n \t \t \t\t\tcurrent, \n \t \t \t\t\t\"rows\",\n \t \t \t\tlv_rows_3_0, \n \t \t \t\t\"ExpressionList\", \n \t \t \t\tcurrentNode);\n \t \t } catch (ValueConverterException vce) {\n \t \t\t\t\thandleValueConverterException(vce);\n \t \t }\n \t \t currentNode = currentNode.getParent();\n \t \t \n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop85;\n }\n } while (true);\n\n match(input,34,FOLLOW_34_in_ruleArrayConcatenationOperator10213); \n\n createLeafNode(grammarAccess.getArrayConcatenationOperatorAccess().getRightSquareBracketKeyword_3(), null); \n \n\n }\n\n\n }\n\n resetLookahead(); \n \tlastConsumedNode = currentNode;\n \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__Predicate__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3379:1: ( ( ']' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3380:1: ( ']' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3380:1: ( ']' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3381:1: ']'\n {\n before(grammarAccess.getPredicateAccess().getRightSquareBracketKeyword_3()); \n match(input,26,FOLLOW_26_in_rule__Predicate__Group__3__Impl6659); \n after(grammarAccess.getPredicateAccess().getRightSquareBracketKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Index__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13786:1: ( ( ']' ) )\r\n // InternalGo.g:13787:1: ( ']' )\r\n {\r\n // InternalGo.g:13787:1: ( ']' )\r\n // InternalGo.g:13788:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIndexAccess().getRightSquareBracketKeyword_2()); \r\n }\r\n match(input,55,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIndexAccess().getRightSquareBracketKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Column__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1778:1: ( ( ']' ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1779:1: ( ']' )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1779:1: ( ']' )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1780:1: ']'\n {\n before(grammarAccess.getColumnAccess().getRightSquareBracketKeyword_3()); \n match(input,25,FOLLOW_25_in_rule__Column__Group__3__Impl3527); \n after(grammarAccess.getColumnAccess().getRightSquareBracketKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Tab__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1590:1: ( ( '[' ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1591:1: ( '[' )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1591:1: ( '[' )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1592:1: '['\n {\n before(grammarAccess.getTabAccess().getLeftSquareBracketKeyword_1()); \n match(input,24,FOLLOW_24_in_rule__Tab__Group__1__Impl3158); \n after(grammarAccess.getTabAccess().getLeftSquareBracketKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRBRACKET() throws RecognitionException {\n try {\n int _type = RBRACKET;\n // /Users/benjamincoe/HackWars/C.g:201:12: ( ']' )\n // /Users/benjamincoe/HackWars/C.g:201:14: ']'\n {\n match(']'); \n\n }\n\n this.type = _type;\n }\n finally {\n }\n }", "public final void entryRuleArrayType() throws RecognitionException {\r\n try {\r\n // InternalGo.g:480:1: ( ruleArrayType EOF )\r\n // InternalGo.g:481:1: ruleArrayType EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleArrayType();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__LiteralType__Group_2__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:14867:1: ( ( ']' ) )\r\n // InternalGo.g:14868:1: ( ']' )\r\n {\r\n // InternalGo.g:14868:1: ( ']' )\r\n // InternalGo.g:14869:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getRightSquareBracketKeyword_2_2()); \r\n }\r\n match(input,55,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getRightSquareBracketKeyword_2_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XClosure__Group__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:9425:1: ( ( ']' ) )\r\n // InternalDroneScript.g:9426:1: ( ']' )\r\n {\r\n // InternalDroneScript.g:9426:1: ( ']' )\r\n // InternalDroneScript.g:9427:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXClosureAccess().getRightSquareBracketKeyword_3()); \r\n }\r\n match(input,74,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXClosureAccess().getRightSquareBracketKeyword_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ArrayType__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5351:1: ( rule__ArrayType__Group__1__Impl rule__ArrayType__Group__2 )\r\n // InternalGo.g:5352:2: rule__ArrayType__Group__1__Impl rule__ArrayType__Group__2\r\n {\r\n pushFollow(FOLLOW_21);\r\n rule__ArrayType__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayType__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstExpressionVariable__Group_1__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19908:1: ( ( ']' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19909:1: ( ']' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19909:1: ( ']' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19910:1: ']'\n {\n before(grammarAccess.getAstExpressionVariableAccess().getRightSquareBracketKeyword_1_2()); \n match(input,82,FOLLOW_82_in_rule__AstExpressionVariable__Group_1__2__Impl39961); \n after(grammarAccess.getAstExpressionVariableAccess().getRightSquareBracketKeyword_1_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14286:1: ( ( '[' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14287:1: ( '[' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14287:1: ( '[' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14288:1: '['\n {\n before(grammarAccess.getAstInputPatternAccess().getLeftSquareBracketKeyword_1()); \n match(input,81,FOLLOW_81_in_rule__AstInputPattern__Group__1__Impl28895); \n after(grammarAccess.getAstInputPatternAccess().getLeftSquareBracketKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleArrayElementAccess() throws RecognitionException {\n EObject current = null;\n\n EObject lv_subscripts_1_0 = null;\n\n EObject lv_subscripts_3_0 = null;\n\n\n EObject temp=null; setCurrentLookahead(); resetLookahead(); \n \n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5056:6: ( ( '[' ( (lv_subscripts_1_0= ruleArraySubscript ) ) ( ',' ( (lv_subscripts_3_0= ruleArraySubscript ) ) )* ']' ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5057:1: ( '[' ( (lv_subscripts_1_0= ruleArraySubscript ) ) ( ',' ( (lv_subscripts_3_0= ruleArraySubscript ) ) )* ']' )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5057:1: ( '[' ( (lv_subscripts_1_0= ruleArraySubscript ) ) ( ',' ( (lv_subscripts_3_0= ruleArraySubscript ) ) )* ']' )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5057:3: '[' ( (lv_subscripts_1_0= ruleArraySubscript ) ) ( ',' ( (lv_subscripts_3_0= ruleArraySubscript ) ) )* ']'\n {\n match(input,33,FOLLOW_33_in_ruleArrayElementAccess8878); \n\n createLeafNode(grammarAccess.getArrayElementAccessAccess().getLeftSquareBracketKeyword_0(), null); \n \n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5061:1: ( (lv_subscripts_1_0= ruleArraySubscript ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5062:1: (lv_subscripts_1_0= ruleArraySubscript )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5062:1: (lv_subscripts_1_0= ruleArraySubscript )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5063:3: lv_subscripts_1_0= ruleArraySubscript\n {\n \n \t currentNode=createCompositeNode(grammarAccess.getArrayElementAccessAccess().getSubscriptsArraySubscriptParserRuleCall_1_0(), currentNode); \n \t \n pushFollow(FOLLOW_ruleArraySubscript_in_ruleArrayElementAccess8899);\n lv_subscripts_1_0=ruleArraySubscript();\n _fsp--;\n\n\n \t if (current==null) {\n \t current = factory.create(grammarAccess.getArrayElementAccessRule().getType().getClassifier());\n \t associateNodeWithAstElement(currentNode.getParent(), current);\n \t }\n \t try {\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"subscripts\",\n \t \t\tlv_subscripts_1_0, \n \t \t\t\"ArraySubscript\", \n \t \t\tcurrentNode);\n \t } catch (ValueConverterException vce) {\n \t\t\t\thandleValueConverterException(vce);\n \t }\n \t currentNode = currentNode.getParent();\n \t \n\n }\n\n\n }\n\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5085:2: ( ',' ( (lv_subscripts_3_0= ruleArraySubscript ) ) )*\n loop75:\n do {\n int alt75=2;\n int LA75_0 = input.LA(1);\n\n if ( (LA75_0==14) ) {\n alt75=1;\n }\n\n\n switch (alt75) {\n \tcase 1 :\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5085:4: ',' ( (lv_subscripts_3_0= ruleArraySubscript ) )\n \t {\n \t match(input,14,FOLLOW_14_in_ruleArrayElementAccess8910); \n\n \t createLeafNode(grammarAccess.getArrayElementAccessAccess().getCommaKeyword_2_0(), null); \n \t \n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5089:1: ( (lv_subscripts_3_0= ruleArraySubscript ) )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5090:1: (lv_subscripts_3_0= ruleArraySubscript )\n \t {\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5090:1: (lv_subscripts_3_0= ruleArraySubscript )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5091:3: lv_subscripts_3_0= ruleArraySubscript\n \t {\n \t \n \t \t currentNode=createCompositeNode(grammarAccess.getArrayElementAccessAccess().getSubscriptsArraySubscriptParserRuleCall_2_1_0(), currentNode); \n \t \t \n \t pushFollow(FOLLOW_ruleArraySubscript_in_ruleArrayElementAccess8931);\n \t lv_subscripts_3_0=ruleArraySubscript();\n \t _fsp--;\n\n\n \t \t if (current==null) {\n \t \t current = factory.create(grammarAccess.getArrayElementAccessRule().getType().getClassifier());\n \t \t associateNodeWithAstElement(currentNode.getParent(), current);\n \t \t }\n \t \t try {\n \t \t \t\tadd(\n \t \t \t\t\tcurrent, \n \t \t \t\t\t\"subscripts\",\n \t \t \t\tlv_subscripts_3_0, \n \t \t \t\t\"ArraySubscript\", \n \t \t \t\tcurrentNode);\n \t \t } catch (ValueConverterException vce) {\n \t \t\t\t\thandleValueConverterException(vce);\n \t \t }\n \t \t currentNode = currentNode.getParent();\n \t \t \n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop75;\n }\n } while (true);\n\n match(input,34,FOLLOW_34_in_ruleArrayElementAccess8943); \n\n createLeafNode(grammarAccess.getArrayElementAccessAccess().getRightSquareBracketKeyword_3(), null); \n \n\n }\n\n\n }\n\n resetLookahead(); \n \tlastConsumedNode = currentNode;\n \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__AstType__Group_0_1_1_2__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20504:1: ( ( ']' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20505:1: ( ']' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20505:1: ( ']' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20506:1: ']'\n {\n before(grammarAccess.getAstTypeAccess().getRightSquareBracketKeyword_0_1_1_2_2()); \n match(input,82,FOLLOW_82_in_rule__AstType__Group_0_1_1_2__2__Impl41134); \n after(grammarAccess.getAstTypeAccess().getRightSquareBracketKeyword_0_1_1_2_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_0_2__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20316:1: ( ( ']' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20317:1: ( ']' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20317:1: ( ']' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20318:1: ']'\n {\n before(grammarAccess.getAstTypeAccess().getRightSquareBracketKeyword_0_1_0_2_2()); \n match(input,82,FOLLOW_82_in_rule__AstType__Group_0_1_0_2__2__Impl40762); \n after(grammarAccess.getAstTypeAccess().getRightSquareBracketKeyword_0_1_0_2_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final CQLParser.arrayDefinition_return arrayDefinition() throws RecognitionException {\n CQLParser.arrayDefinition_return retval = new CQLParser.arrayDefinition_return();\n retval.start = input.LT(1);\n\n Object root_0 = null;\n\n Token char_literal140=null;\n Token char_literal141=null;\n Token char_literal142=null;\n List list_ra=null;\n CQLParser.atom_return a = null;\n\n RuleReturnScope ra = null;\n Object char_literal140_tree=null;\n Object char_literal141_tree=null;\n Object char_literal142_tree=null;\n RewriteRuleTokenStream stream_117=new RewriteRuleTokenStream(adaptor,\"token 117\");\n RewriteRuleTokenStream stream_115=new RewriteRuleTokenStream(adaptor,\"token 115\");\n RewriteRuleTokenStream stream_118=new RewriteRuleTokenStream(adaptor,\"token 118\");\n RewriteRuleSubtreeStream stream_atom=new RewriteRuleSubtreeStream(adaptor,\"rule atom\");\n try {\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:2: ( '[' (a= atom )? ( ',' ra+= atom )* ']' -> ^( ARRAY ( $a)? ( $ra)* ) )\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:4: '[' (a= atom )? ( ',' ra+= atom )* ']'\n {\n char_literal140=(Token)match(input,117,FOLLOW_117_in_arrayDefinition2327); \n stream_117.add(char_literal140);\n\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:9: (a= atom )?\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==ID||LA37_0==INTEGER||LA37_0==QUOTED_STRING||(LA37_0>=REAL && LA37_0<=NULL)||LA37_0==111||LA37_0==114) ) {\n alt37=1;\n }\n switch (alt37) {\n case 1 :\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:9: a= atom\n {\n pushFollow(FOLLOW_atom_in_arrayDefinition2331);\n a=atom();\n\n state._fsp--;\n\n stream_atom.add(a.getTree());\n\n }\n break;\n\n }\n\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:16: ( ',' ra+= atom )*\n loop38:\n do {\n int alt38=2;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==115) ) {\n alt38=1;\n }\n\n\n switch (alt38) {\n \tcase 1 :\n \t // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:17: ',' ra+= atom\n \t {\n \t char_literal141=(Token)match(input,115,FOLLOW_115_in_arrayDefinition2335); \n \t stream_115.add(char_literal141);\n\n \t pushFollow(FOLLOW_atom_in_arrayDefinition2339);\n \t ra=atom();\n\n \t state._fsp--;\n\n \t stream_atom.add(ra.getTree());\n \t if (list_ra==null) list_ra=new ArrayList();\n \t list_ra.add(ra.getTree());\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop38;\n }\n } while (true);\n\n char_literal142=(Token)match(input,118,FOLLOW_118_in_arrayDefinition2343); \n stream_118.add(char_literal142);\n\n\n\n // AST REWRITE\n // elements: a, ra\n // token labels: \n // rule labels: retval, a\n // token list labels: \n // rule list labels: ra\n // wildcard labels: \n retval.tree = root_0;\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\n RewriteRuleSubtreeStream stream_a=new RewriteRuleSubtreeStream(adaptor,\"rule a\",a!=null?a.tree:null);\n RewriteRuleSubtreeStream stream_ra=new RewriteRuleSubtreeStream(adaptor,\"token ra\",list_ra);\n root_0 = (Object)adaptor.nil();\n // 481:36: -> ^( ARRAY ( $a)? ( $ra)* )\n {\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:39: ^( ARRAY ( $a)? ( $ra)* )\n {\n Object root_1 = (Object)adaptor.nil();\n root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(ARRAY, \"ARRAY\"), root_1);\n\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:47: ( $a)?\n if ( stream_a.hasNext() ) {\n adaptor.addChild(root_1, stream_a.nextTree());\n\n }\n stream_a.reset();\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:51: ( $ra)*\n while ( stream_ra.hasNext() ) {\n adaptor.addChild(root_1, stream_ra.nextTree());\n\n }\n stream_ra.reset();\n\n adaptor.addChild(root_0, root_1);\n }\n\n }\n\n retval.tree = root_0;\n }\n\n retval.stop = input.LT(-1);\n\n retval.tree = (Object)adaptor.rulePostProcessing(root_0);\n adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\n\n }\n \t\n \tcatch(RecognitionException re)\n \t{\t\n \t\treportError(re);\n \t\tthrow re;\n \t}\n finally {\n }\n return retval;\n }", "public final void rule__AstExpressionVariable__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19849:1: ( ( '[' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19850:1: ( '[' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19850:1: ( '[' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19851:1: '['\n {\n before(grammarAccess.getAstExpressionVariableAccess().getLeftSquareBracketKeyword_1_0()); \n match(input,81,FOLLOW_81_in_rule__AstExpressionVariable__Group_1__0__Impl39842); \n after(grammarAccess.getAstExpressionVariableAccess().getLeftSquareBracketKeyword_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SliceType__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5444:1: ( ( '[' ) )\r\n // InternalGo.g:5445:1: ( '[' )\r\n {\r\n // InternalGo.g:5445:1: ( '[' )\r\n // InternalGo.g:5446:2: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getSliceTypeAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n match(input,54,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getSliceTypeAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Slice__Group_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13841:1: ( ( '[' ) )\r\n // InternalGo.g:13842:1: ( '[' )\r\n {\r\n // InternalGo.g:13842:1: ( '[' )\r\n // InternalGo.g:13843:2: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getSliceAccess().getLeftSquareBracketKeyword_0_1()); \r\n }\r\n match(input,54,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getSliceAccess().getLeftSquareBracketKeyword_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XListLiteral__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:9209:1: ( ( ']' ) )\r\n // InternalDroneScript.g:9210:1: ( ']' )\r\n {\r\n // InternalDroneScript.g:9210:1: ( ']' )\r\n // InternalDroneScript.g:9211:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXListLiteralAccess().getRightSquareBracketKeyword_4()); \r\n }\r\n match(input,74,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXListLiteralAccess().getRightSquareBracketKeyword_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRBRACKET() throws RecognitionException {\n try {\n int _type = RBRACKET;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // C:\\\\Documents and Settings\\\\D043530\\\\runtime-workspace\\\\com.sap.ap.cts.editor\\\\generated\\\\generated\\\\Binding.g:2715:3: ( ']' )\n // C:\\\\Documents and Settings\\\\D043530\\\\runtime-workspace\\\\com.sap.ap.cts.editor\\\\generated\\\\generated\\\\Binding.g:2716:3: ']'\n {\n match(']'); if (state.failed) return ;\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__Slice__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13976:1: ( ( '[' ) )\r\n // InternalGo.g:13977:1: ( '[' )\r\n {\r\n // InternalGo.g:13977:1: ( '[' )\r\n // InternalGo.g:13978:2: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getSliceAccess().getLeftSquareBracketKeyword_1_0()); \r\n }\r\n match(input,54,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getSliceAccess().getLeftSquareBracketKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XClosure__Group__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:9779:1: ( ( ']' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:9780:1: ( ']' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:9780:1: ( ']' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:9781:1: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXClosureAccess().getRightSquareBracketKeyword_3()); \r\n }\r\n match(input,103,FOLLOW_103_in_rule__XClosure__Group__3__Impl20103); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXClosureAccess().getRightSquareBracketKeyword_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\r\n\tpublic void visit(ArrayExpression arrayExpression) {\n\r\n\t}", "public final void rule__BodyReference__Group_3_1__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4288:1: ( ( ']' ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4289:1: ( ']' )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4289:1: ( ']' )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4290:1: ']'\n {\n before(grammarAccess.getBodyReferenceAccess().getRightSquareBracketKeyword_3_1_2()); \n match(input,43,FOLLOW_43_in_rule__BodyReference__Group_3_1__2__Impl8801); \n after(grammarAccess.getBodyReferenceAccess().getRightSquareBracketKeyword_3_1_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LiteralType__Group_2__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:14813:1: ( ( '[' ) )\r\n // InternalGo.g:14814:1: ( '[' )\r\n {\r\n // InternalGo.g:14814:1: ( '[' )\r\n // InternalGo.g:14815:2: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getLeftSquareBracketKeyword_2_0()); \r\n }\r\n match(input,54,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getLeftSquareBracketKeyword_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__MapType__Group__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:7010:1: ( ( ']' ) )\r\n // InternalGo.g:7011:1: ( ']' )\r\n {\r\n // InternalGo.g:7011:1: ( ']' )\r\n // InternalGo.g:7012:2: ']'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getMapTypeAccess().getRightSquareBracketKeyword_3()); \r\n }\r\n match(input,55,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getMapTypeAccess().getRightSquareBracketKeyword_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Index__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13733:1: ( ( '[' ) )\r\n // InternalGo.g:13734:1: ( '[' )\r\n {\r\n // InternalGo.g:13734:1: ( '[' )\r\n // InternalGo.g:13735:2: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIndexAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n match(input,54,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIndexAccess().getLeftSquareBracketKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleArrayElementAccess() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArrayElementAccess = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5043:2: (iv_ruleArrayElementAccess= ruleArrayElementAccess EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5044:2: iv_ruleArrayElementAccess= ruleArrayElementAccess EOF\n {\n currentNode = createCompositeNode(grammarAccess.getArrayElementAccessRule(), currentNode); \n pushFollow(FOLLOW_ruleArrayElementAccess_in_entryRuleArrayElementAccess8833);\n iv_ruleArrayElementAccess=ruleArrayElementAccess();\n _fsp--;\n\n current =iv_ruleArrayElementAccess; \n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayElementAccess8843); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__RootElementType__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:565:1: ( ( '}' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:566:1: ( '}' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:566:1: ( '}' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:567:1: '}'\n {\n before(grammarAccess.getRootElementTypeAccess().getRightCurlyBracketKeyword_8()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__RootElementType__Group__8__Impl1113); \n after(grammarAccess.getRootElementTypeAccess().getRightCurlyBracketKeyword_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleArrayConstructionOperator() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArrayConstructionOperator = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5606:2: (iv_ruleArrayConstructionOperator= ruleArrayConstructionOperator EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:5607:2: iv_ruleArrayConstructionOperator= ruleArrayConstructionOperator EOF\n {\n currentNode = createCompositeNode(grammarAccess.getArrayConstructionOperatorRule(), currentNode); \n pushFollow(FOLLOW_ruleArrayConstructionOperator_in_entryRuleArrayConstructionOperator9758);\n iv_ruleArrayConstructionOperator=ruleArrayConstructionOperator();\n _fsp--;\n\n current =iv_ruleArrayConstructionOperator; \n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayConstructionOperator9768); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void mC_BRACKET() throws RecognitionException {\r\n try {\r\n int _type = C_BRACKET;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // Satmc.g:9:11: ( ']' )\r\n // Satmc.g:9:13: ']'\r\n {\r\n match(']'); \r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n \t// do for sure before leaving\r\n }\r\n }", "public final void rule__Database__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1520:1: ( ( ']' ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1521:1: ( ']' )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1521:1: ( ']' )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1522:1: ']'\n {\n before(grammarAccess.getDatabaseAccess().getRightSquareBracketKeyword_3()); \n match(input,25,FOLLOW_25_in_rule__Database__Group__3__Impl3027); \n after(grammarAccess.getDatabaseAccess().getRightSquareBracketKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRBRACKET() throws RecognitionException {\n try {\n int _type = RBRACKET;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // /Users/cbinnig/Workspace/DHBW_FirstDB_Loesung3/src/de/dhbw/db2/firstdb/sql/FirstSQL.g:43:10: ( ']' )\n // /Users/cbinnig/Workspace/DHBW_FirstDB_Loesung3/src/de/dhbw/db2/firstdb/sql/FirstSQL.g:43:12: ']'\n {\n match(']'); \n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__AstOutputPattern__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14664:1: ( ( '[' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14665:1: ( '[' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14665:1: ( '[' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14666:1: '['\n {\n before(grammarAccess.getAstOutputPatternAccess().getLeftSquareBracketKeyword_1()); \n match(input,81,FOLLOW_81_in_rule__AstOutputPattern__Group__1__Impl29640); \n after(grammarAccess.getAstOutputPatternAccess().getLeftSquareBracketKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Schema__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:579:1: ( ( '}' ) )\n // InternalMyDsl.g:580:1: ( '}' )\n {\n // InternalMyDsl.g:580:1: ( '}' )\n // InternalMyDsl.g:581:2: '}'\n {\n before(grammarAccess.getSchemaAccess().getRightCurlyBracketKeyword_3()); \n match(input,18,FOLLOW_2); \n after(grammarAccess.getSchemaAccess().getRightCurlyBracketKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleArrayLiteralExpr() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_2=null;\n Token otherlv_3=null;\n Token otherlv_5=null;\n Token otherlv_7=null;\n Token otherlv_9=null;\n EObject lv_elems_1_0 = null;\n\n EObject lv_elems_4_0 = null;\n\n EObject lv_elems_6_0 = null;\n\n EObject lv_elems_8_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalSafetyParser.g:9637:2: ( ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) ) | ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket ) ) )\n // InternalSafetyParser.g:9638:2: ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) ) | ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket ) )\n {\n // InternalSafetyParser.g:9638:2: ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) ) | ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket ) )\n int alt120=2;\n int LA120_0 = input.LA(1);\n\n if ( (LA120_0==LeftSquareBracketVerticalLine) ) {\n int LA120_1 = input.LA(2);\n\n if ( (synpred36_InternalSafetyParser()) ) {\n alt120=1;\n }\n else if ( (synpred37_InternalSafetyParser()) ) {\n alt120=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 120, 1, input);\n\n throw nvae;\n }\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 120, 0, input);\n\n throw nvae;\n }\n switch (alt120) {\n case 1 :\n // InternalSafetyParser.g:9639:3: ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) )\n {\n // InternalSafetyParser.g:9639:3: ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket ) )\n // InternalSafetyParser.g:9640:4: ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) VerticalLineRightSquareBracket ) )=> (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket )\n {\n // InternalSafetyParser.g:9650:4: (otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket )\n // InternalSafetyParser.g:9651:5: otherlv_0= LeftSquareBracketVerticalLine ( (lv_elems_1_0= ruleExpr ) ) otherlv_2= VerticalLineRightSquareBracket\n {\n otherlv_0=(Token)match(input,LeftSquareBracketVerticalLine,FollowSets000.FOLLOW_21); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(otherlv_0, grammarAccess.getArrayLiteralExprAccess().getLeftSquareBracketVerticalLineKeyword_0_0_0());\n \t\t\t\t\n }\n // InternalSafetyParser.g:9655:5: ( (lv_elems_1_0= ruleExpr ) )\n // InternalSafetyParser.g:9656:6: (lv_elems_1_0= ruleExpr )\n {\n // InternalSafetyParser.g:9656:6: (lv_elems_1_0= ruleExpr )\n // InternalSafetyParser.g:9657:7: lv_elems_1_0= ruleExpr\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\t\tnewCompositeNode(grammarAccess.getArrayLiteralExprAccess().getElemsExprParserRuleCall_0_0_1_0());\n \t\t\t\t\t\t\n }\n pushFollow(FollowSets000.FOLLOW_100);\n lv_elems_1_0=ruleExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArrayLiteralExprRule());\n \t\t\t\t\t\t\t}\n \t\t\t\t\t\t\tadd(\n \t\t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\t\"elems\",\n \t\t\t\t\t\t\t\tlv_elems_1_0,\n \t\t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t\t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\t\n }\n\n }\n\n\n }\n\n otherlv_2=(Token)match(input,VerticalLineRightSquareBracket,FollowSets000.FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(otherlv_2, grammarAccess.getArrayLiteralExprAccess().getVerticalLineRightSquareBracketKeyword_0_0_2());\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // InternalSafetyParser.g:9681:3: ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket )\n {\n // InternalSafetyParser.g:9681:3: ( ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket )\n // InternalSafetyParser.g:9682:4: ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) ) ( (lv_elems_6_0= ruleExpr ) ) (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )* otherlv_9= VerticalLineRightSquareBracket\n {\n // InternalSafetyParser.g:9682:4: ( ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma ) )\n // InternalSafetyParser.g:9683:5: ( ( LeftSquareBracketVerticalLine ( ( ruleExpr ) ) Comma ) )=> (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma )\n {\n // InternalSafetyParser.g:9693:5: (otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma )\n // InternalSafetyParser.g:9694:6: otherlv_3= LeftSquareBracketVerticalLine ( (lv_elems_4_0= ruleExpr ) ) otherlv_5= Comma\n {\n otherlv_3=(Token)match(input,LeftSquareBracketVerticalLine,FollowSets000.FOLLOW_21); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewLeafNode(otherlv_3, grammarAccess.getArrayLiteralExprAccess().getLeftSquareBracketVerticalLineKeyword_1_0_0_0());\n \t\t\t\t\t\n }\n // InternalSafetyParser.g:9698:6: ( (lv_elems_4_0= ruleExpr ) )\n // InternalSafetyParser.g:9699:7: (lv_elems_4_0= ruleExpr )\n {\n // InternalSafetyParser.g:9699:7: (lv_elems_4_0= ruleExpr )\n // InternalSafetyParser.g:9700:8: lv_elems_4_0= ruleExpr\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\t\t\tnewCompositeNode(grammarAccess.getArrayLiteralExprAccess().getElemsExprParserRuleCall_1_0_0_1_0());\n \t\t\t\t\t\t\t\n }\n pushFollow(FollowSets000.FOLLOW_30);\n lv_elems_4_0=ruleExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArrayLiteralExprRule());\n \t\t\t\t\t\t\t\t}\n \t\t\t\t\t\t\t\tadd(\n \t\t\t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\t\t\"elems\",\n \t\t\t\t\t\t\t\t\tlv_elems_4_0,\n \t\t\t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t\t\t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\t\t\n }\n\n }\n\n\n }\n\n otherlv_5=(Token)match(input,Comma,FollowSets000.FOLLOW_21); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewLeafNode(otherlv_5, grammarAccess.getArrayLiteralExprAccess().getCommaKeyword_1_0_0_2());\n \t\t\t\t\t\n }\n\n }\n\n\n }\n\n // InternalSafetyParser.g:9723:4: ( (lv_elems_6_0= ruleExpr ) )\n // InternalSafetyParser.g:9724:5: (lv_elems_6_0= ruleExpr )\n {\n // InternalSafetyParser.g:9724:5: (lv_elems_6_0= ruleExpr )\n // InternalSafetyParser.g:9725:6: lv_elems_6_0= ruleExpr\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewCompositeNode(grammarAccess.getArrayLiteralExprAccess().getElemsExprParserRuleCall_1_1_0());\n \t\t\t\t\t\n }\n pushFollow(FollowSets000.FOLLOW_101);\n lv_elems_6_0=ruleExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArrayLiteralExprRule());\n \t\t\t\t\t\t}\n \t\t\t\t\t\tadd(\n \t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\"elems\",\n \t\t\t\t\t\t\tlv_elems_6_0,\n \t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\n }\n\n }\n\n\n }\n\n // InternalSafetyParser.g:9742:4: (otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) ) )*\n loop119:\n do {\n int alt119=2;\n int LA119_0 = input.LA(1);\n\n if ( (LA119_0==Comma) ) {\n alt119=1;\n }\n\n\n switch (alt119) {\n \tcase 1 :\n \t // InternalSafetyParser.g:9743:5: otherlv_7= Comma ( (lv_elems_8_0= ruleExpr ) )\n \t {\n \t otherlv_7=(Token)match(input,Comma,FollowSets000.FOLLOW_21); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\tnewLeafNode(otherlv_7, grammarAccess.getArrayLiteralExprAccess().getCommaKeyword_1_2_0());\n \t \t\t\t\t\n \t }\n \t // InternalSafetyParser.g:9747:5: ( (lv_elems_8_0= ruleExpr ) )\n \t // InternalSafetyParser.g:9748:6: (lv_elems_8_0= ruleExpr )\n \t {\n \t // InternalSafetyParser.g:9748:6: (lv_elems_8_0= ruleExpr )\n \t // InternalSafetyParser.g:9749:7: lv_elems_8_0= ruleExpr\n \t {\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\t\tnewCompositeNode(grammarAccess.getArrayLiteralExprAccess().getElemsExprParserRuleCall_1_2_1_0());\n \t \t\t\t\t\t\t\n \t }\n \t pushFollow(FollowSets000.FOLLOW_101);\n \t lv_elems_8_0=ruleExpr();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\t\t\tif (current==null) {\n \t \t\t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getArrayLiteralExprRule());\n \t \t\t\t\t\t\t\t}\n \t \t\t\t\t\t\t\tadd(\n \t \t\t\t\t\t\t\t\tcurrent,\n \t \t\t\t\t\t\t\t\t\"elems\",\n \t \t\t\t\t\t\t\t\tlv_elems_8_0,\n \t \t\t\t\t\t\t\t\t\"com.rockwellcollins.atc.agree.Agree.Expr\");\n \t \t\t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t \t\t\t\t\t\t\n \t }\n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop119;\n }\n } while (true);\n\n otherlv_9=(Token)match(input,VerticalLineRightSquareBracket,FollowSets000.FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_9, grammarAccess.getArrayLiteralExprAccess().getVerticalLineRightSquareBracketKeyword_1_3());\n \t\t\t\n }\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__ArrayType__Group__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5416:1: ( ( ( rule__ArrayType__ElemtypeAssignment_3 ) ) )\r\n // InternalGo.g:5417:1: ( ( rule__ArrayType__ElemtypeAssignment_3 ) )\r\n {\r\n // InternalGo.g:5417:1: ( ( rule__ArrayType__ElemtypeAssignment_3 ) )\r\n // InternalGo.g:5418:2: ( rule__ArrayType__ElemtypeAssignment_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayTypeAccess().getElemtypeAssignment_3()); \r\n }\r\n // InternalGo.g:5419:2: ( rule__ArrayType__ElemtypeAssignment_3 )\r\n // InternalGo.g:5419:3: rule__ArrayType__ElemtypeAssignment_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ArrayType__ElemtypeAssignment_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayTypeAccess().getElemtypeAssignment_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XListLiteral__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:9156:1: ( ( '[' ) )\r\n // InternalDroneScript.g:9157:1: ( '[' )\r\n {\r\n // InternalDroneScript.g:9157:1: ( '[' )\r\n // InternalDroneScript.g:9158:2: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXListLiteralAccess().getLeftSquareBracketKeyword_2()); \r\n }\r\n match(input,73,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXListLiteralAccess().getLeftSquareBracketKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "protected String escapeBrackets(String input) {\n\t\tString replacement = \"\\\\\\\\[{group1}\\\\\\\\]\";\n\t\treturn RegexUtil.loopRegex(input, doubleBrackets, replacement);\n\t}", "private void processBracket() {\r\n\t\tif (expression[currentIndex] == '(') {\r\n\t\t\ttoken = new Token(TokenType.OPEN_BRACKET, expression[currentIndex]);\r\n\t\t} else {\r\n\t\t\ttoken = new Token(TokenType.CLOSED_BRACKET, expression[currentIndex]);\r\n\t\t}\r\n\r\n\t\tcurrentIndex++;\r\n\t}", "@Test\n @IncludeIn(POSTGRESQL)\n public void array2() {\n Expression<int[]> expr = Expressions.template(int[].class, \"'{1,2,3}'::int[]\");\n int[] result = firstResult(expr);\n Assert.assertEquals(3, result.length);\n Assert.assertEquals(1, result[0]);\n Assert.assertEquals(2, result[1]);\n Assert.assertEquals(3, result[2]);\n }", "public final void rule__BodyReference__Group_3_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4229:1: ( ( '[' ) )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4230:1: ( '[' )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4230:1: ( '[' )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4231:1: '['\n {\n before(grammarAccess.getBodyReferenceAccess().getLeftSquareBracketKeyword_3_1_0()); \n match(input,42,FOLLOW_42_in_rule__BodyReference__Group_3_1__0__Impl8682); \n after(grammarAccess.getBodyReferenceAccess().getLeftSquareBracketKeyword_3_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_0_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20257:1: ( ( '[' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20258:1: ( '[' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20258:1: ( '[' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20259:1: '['\n {\n before(grammarAccess.getAstTypeAccess().getLeftSquareBracketKeyword_0_1_0_2_0()); \n match(input,81,FOLLOW_81_in_rule__AstType__Group_0_1_0_2__0__Impl40643); \n after(grammarAccess.getAstTypeAccess().getLeftSquareBracketKeyword_0_1_0_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20541:1: ( ( '[' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20542:1: ( '[' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20542:1: ( '[' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20543:1: '['\n {\n before(grammarAccess.getAstTypeAccess().getLeftSquareBracketKeyword_0_1_2_0()); \n match(input,81,FOLLOW_81_in_rule__AstType__Group_0_1_2__0__Impl41202); \n after(grammarAccess.getAstTypeAccess().getLeftSquareBracketKeyword_0_1_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\r\n\tpublic void visit(RoundBracketExpression roundBracketExpression) {\n\r\n\t}", "public final void rule__XClosure__Group_0_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:9506:1: ( ( '[' ) )\r\n // InternalDroneScript.g:9507:1: ( '[' )\r\n {\r\n // InternalDroneScript.g:9507:1: ( '[' )\r\n // InternalDroneScript.g:9508:2: '['\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXClosureAccess().getLeftSquareBracketKeyword_0_0_1()); \r\n }\r\n match(input,73,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXClosureAccess().getLeftSquareBracketKeyword_0_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n public void visit(ArrayDeclaration node) {\n }", "public void writeStartArray()\n/* */ throws IOException\n/* */ {\n/* 217 */ _verifyValueWrite(\"start an array\");\n/* 218 */ this._writeContext = this._writeContext.createChildArrayContext();\n/* 219 */ if (this._cfgPrettyPrinter != null) {\n/* 220 */ this._cfgPrettyPrinter.writeStartArray(this);\n/* */ } else {\n/* 222 */ if (this._outputTail >= this._outputEnd) {\n/* 223 */ _flushBuffer();\n/* */ }\n/* 225 */ this._outputBuffer[(this._outputTail++)] = '[';\n/* */ }\n/* */ }", "public final EObject entryRuleArraySubExpr() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleArraySubExpr = null;\n\n\n try {\n // InternalSafetyParser.g:8580:53: (iv_ruleArraySubExpr= ruleArraySubExpr EOF )\n // InternalSafetyParser.g:8581:2: iv_ruleArraySubExpr= ruleArraySubExpr EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getArraySubExprRule()); \n }\n pushFollow(FollowSets000.FOLLOW_1);\n iv_ruleArraySubExpr=ruleArraySubExpr();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleArraySubExpr; \n }\n match(input,EOF,FollowSets000.FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public static List ruleArrayToList(String [][] array)\t{\n\t\treturn appendToSyntax(array, new ArrayList(array.length));\n\t}", "public final void rule__Column__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1719:1: ( ( '[' ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1720:1: ( '[' )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1720:1: ( '[' )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1721:1: '['\n {\n before(grammarAccess.getColumnAccess().getLeftSquareBracketKeyword_1()); \n match(input,24,FOLLOW_24_in_rule__Column__Group__1__Impl3408); \n after(grammarAccess.getColumnAccess().getLeftSquareBracketKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.78838545", "0.7749404", "0.74620223", "0.7277151", "0.72432894", "0.7120401", "0.71179616", "0.7075222", "0.7056534", "0.70400244", "0.692928", "0.68658483", "0.6809498", "0.67858917", "0.67388165", "0.67014813", "0.66606915", "0.63788545", "0.6286248", "0.6239264", "0.6170537", "0.6059462", "0.60188484", "0.5855102", "0.5842841", "0.57569057", "0.565652", "0.56523305", "0.56173104", "0.55729616", "0.5503391", "0.5493489", "0.54794925", "0.5463739", "0.538309", "0.53609633", "0.5360107", "0.53594613", "0.53504574", "0.5343286", "0.53163254", "0.52835333", "0.5235911", "0.523381", "0.52169234", "0.521318", "0.51907414", "0.51867104", "0.5180534", "0.5171381", "0.5164035", "0.5145629", "0.5143573", "0.5138645", "0.51329833", "0.5122297", "0.50936526", "0.50747633", "0.5054587", "0.5037143", "0.50281006", "0.501415", "0.5012987", "0.5006639", "0.49977347", "0.4993072", "0.4991626", "0.49687356", "0.49398205", "0.4926882", "0.49123037", "0.49078628", "0.48959646", "0.4880731", "0.48666653", "0.48441458", "0.48424447", "0.48342", "0.48318422", "0.48236504", "0.48026747", "0.4800835", "0.47772035", "0.47771323", "0.47711587", "0.47664195", "0.47606835", "0.47524482", "0.47485045", "0.47432664", "0.47399673", "0.47160888", "0.4685666", "0.46557525", "0.4649813", "0.46482787", "0.46457645", "0.46416727", "0.46264923", "0.4620052" ]
0.8125695
0
$ANTLR end "ruleArrayBrackets" $ANTLR start "entryRuleXFunctionTypeRef" InternalCsv.g:329:1: entryRuleXFunctionTypeRef : ruleXFunctionTypeRef EOF ;
public final void entryRuleXFunctionTypeRef() throws RecognitionException { try { // InternalCsv.g:330:1: ( ruleXFunctionTypeRef EOF ) // InternalCsv.g:331:1: ruleXFunctionTypeRef EOF { if ( state.backtracking==0 ) { before(grammarAccess.getXFunctionTypeRefRule()); } pushFollow(FOLLOW_1); ruleXFunctionTypeRef(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getXFunctionTypeRefRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2038:1: ( ruleXFunctionTypeRef EOF )\r\n // InternalDroneScript.g:2039:1: ruleXFunctionTypeRef EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1592:1: ( ruleXFunctionTypeRef EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1593:1: ruleXFunctionTypeRef EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefRule()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_entryRuleXFunctionTypeRef3333);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleXFunctionTypeRef3340); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1905:1: ( ruleXFunctionTypeRef EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1906:1: ruleXFunctionTypeRef EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_entryRuleXFunctionTypeRef4000);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleXFunctionTypeRef4007); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleXFunctionTypeRef() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:342:2: ( ( ( rule__XFunctionTypeRef__Group__0 ) ) )\n // InternalCsv.g:343:2: ( ( rule__XFunctionTypeRef__Group__0 ) )\n {\n // InternalCsv.g:343:2: ( ( rule__XFunctionTypeRef__Group__0 ) )\n // InternalCsv.g:344:3: ( rule__XFunctionTypeRef__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \n }\n // InternalCsv.g:345:3: ( rule__XFunctionTypeRef__Group__0 )\n // InternalCsv.g:345:4: rule__XFunctionTypeRef__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public XtypeGrammarAccess.XFunctionTypeRefElements getXFunctionTypeRefAccess() {\r\n\t\treturn gaXtype.getXFunctionTypeRefAccess();\r\n\t}", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2071:1: ( ( '(' ) )\n // InternalCsv.g:2072:1: ( '(' )\n {\n // InternalCsv.g:2072:1: ( '(' )\n // InternalCsv.g:2073:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11311:1: ( ( ')' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11312:1: ( ')' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11312:1: ( ')' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11313:1: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_3()); \n }\n match(input,40,FOLLOW_40_in_rule__XFunctionTypeRef__Group_0__3__Impl22710); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public XtypeGrammarAccess.XFunctionTypeRefElements getXFunctionTypeRefAccess() {\n\t\treturn gaXtype.getXFunctionTypeRefAccess();\n\t}", "public XtypeGrammarAccess.XFunctionTypeRefElements getXFunctionTypeRefAccess() {\n\t\treturn gaXtype.getXFunctionTypeRefAccess();\n\t}", "public final void ruleXFunctionTypeRef() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1604:2: ( ( ( rule__XFunctionTypeRef__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1605:1: ( ( rule__XFunctionTypeRef__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1605:1: ( ( rule__XFunctionTypeRef__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1606:1: ( rule__XFunctionTypeRef__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1607:1: ( rule__XFunctionTypeRef__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1607:2: rule__XFunctionTypeRef__Group__0\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__0_in_ruleXFunctionTypeRef3366);\n rule__XFunctionTypeRef__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2124:1: ( ( ')' ) )\n // InternalCsv.g:2125:1: ( ')' )\n {\n // InternalCsv.g:2125:1: ( ')' )\n // InternalCsv.g:2126:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16042:1: ( ( '(' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16043:1: ( '(' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16043:1: ( '(' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16044:1: '('\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \r\n }\r\n match(input,106,FOLLOW_106_in_rule__XFunctionTypeRef__Group_0__0__Impl32406); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16199:1: ( ( ',' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16200:1: ( ',' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16200:1: ( ',' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16201:1: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \r\n }\r\n match(input,84,FOLLOW_84_in_rule__XFunctionTypeRef__Group_0_1_1__0__Impl32716); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXFunctionTypeRef() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1917:2: ( ( ( rule__XFunctionTypeRef__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1918:1: ( ( rule__XFunctionTypeRef__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1918:1: ( ( rule__XFunctionTypeRef__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1919:1: ( rule__XFunctionTypeRef__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1920:1: ( rule__XFunctionTypeRef__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1920:2: rule__XFunctionTypeRef__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__0_in_ruleXFunctionTypeRef4033);\r\n rule__XFunctionTypeRef__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXFunctionTypeRef() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2050:2: ( ( ( rule__XFunctionTypeRef__Group__0 ) ) )\r\n // InternalDroneScript.g:2051:2: ( ( rule__XFunctionTypeRef__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2051:2: ( ( rule__XFunctionTypeRef__Group__0 ) )\r\n // InternalDroneScript.g:2052:3: ( rule__XFunctionTypeRef__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2053:3: ( rule__XFunctionTypeRef__Group__0 )\r\n // InternalDroneScript.g:2053:4: rule__XFunctionTypeRef__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15508:1: ( ( '(' ) )\r\n // InternalDroneScript.g:15509:1: ( '(' )\r\n {\r\n // InternalDroneScript.g:15509:1: ( '(' )\r\n // InternalDroneScript.g:15510:2: '('\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \r\n }\r\n match(input,76,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15643:1: ( ( ',' ) )\r\n // InternalDroneScript.g:15644:1: ( ',' )\r\n {\r\n // InternalDroneScript.g:15644:1: ( ',' )\r\n // InternalDroneScript.g:15645:2: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \r\n }\r\n match(input,53,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11223:1: ( ( '(' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11224:1: ( '(' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11224:1: ( '(' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11225:1: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n match(input,44,FOLLOW_44_in_rule__XFunctionTypeRef__Group_0__0__Impl22530); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2206:1: ( ( ',' ) )\n // InternalCsv.g:2207:1: ( ',' )\n {\n // InternalCsv.g:2207:1: ( ',' )\n // InternalCsv.g:2208:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16101:1: ( ( ')' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16102:1: ( ')' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16102:1: ( ')' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16103:1: ')'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \r\n }\r\n match(input,102,FOLLOW_102_in_rule__XFunctionTypeRef__Group_0__2__Impl32526); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2086:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\n // InternalCsv.g:2087:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\n {\n pushFollow(FOLLOW_28);\n rule__XFunctionTypeRef__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1978:1: ( rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1 )\n // InternalCsv.g:1979:2: rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1\n {\n pushFollow(FOLLOW_26);\n rule__XFunctionTypeRef__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15977:1: ( ( '=>' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15978:1: ( '=>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15978:1: ( '=>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15979:1: '=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \r\n }\r\n match(input,26,FOLLOW_26_in_rule__XFunctionTypeRef__Group__1__Impl32281); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16166:1: ( ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16167:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16167:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16168:1: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16169:1: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\r\n loop103:\r\n do {\r\n int alt103=2;\r\n int LA103_0 = input.LA(1);\r\n\r\n if ( (LA103_0==84) ) {\r\n alt103=1;\r\n }\r\n\r\n\r\n switch (alt103) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16169:2: rule__XFunctionTypeRef__Group_0_1_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1_1__0_in_rule__XFunctionTypeRef__Group_0_1__1__Impl32650);\r\n \t rule__XFunctionTypeRef__Group_0_1_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop103;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2005:1: ( rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2 )\n // InternalCsv.g:2006:2: rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2\n {\n pushFollow(FOLLOW_27);\n rule__XFunctionTypeRef__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11350:1: ( ( ',' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11351:1: ( ',' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11351:1: ( ',' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11352:1: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_2_0()); \n }\n match(input,39,FOLLOW_39_in_rule__XFunctionTypeRef__Group_0_2__0__Impl22780); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16073:1: ( ( ( rule__XFunctionTypeRef__Group_0_1__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16074:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16074:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16075:1: ( rule__XFunctionTypeRef__Group_0_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16076:1: ( rule__XFunctionTypeRef__Group_0_1__0 )?\r\n int alt102=2;\r\n int LA102_0 = input.LA(1);\r\n\r\n if ( (LA102_0==RULE_ID||LA102_0==26||LA102_0==106) ) {\r\n alt102=1;\r\n }\r\n switch (alt102) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16076:2: rule__XFunctionTypeRef__Group_0_1__0\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1__0_in_rule__XFunctionTypeRef__Group_0__1__Impl32467);\r\n rule__XFunctionTypeRef__Group_0_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2098:1: ( ( ( rule__XFunctionTypeRef__Group_0_1__0 )? ) )\n // InternalCsv.g:2099:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\n {\n // InternalCsv.g:2099:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\n // InternalCsv.g:2100:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \n }\n // InternalCsv.g:2101:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\n int alt16=2;\n int LA16_0 = input.LA(1);\n\n if ( (LA16_0==RULE_ID||LA16_0==18||LA16_0==29) ) {\n alt16=1;\n }\n switch (alt16) {\n case 1 :\n // InternalCsv.g:2101:3: rule__XFunctionTypeRef__Group_0_1__0\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15561:1: ( ( ')' ) )\r\n // InternalDroneScript.g:15562:1: ( ')' )\r\n {\r\n // InternalDroneScript.g:15562:1: ( ')' )\r\n // InternalDroneScript.g:15563:2: ')'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \r\n }\r\n match(input,71,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2017:1: ( ( '=>' ) )\n // InternalCsv.g:2018:1: ( '=>' )\n {\n // InternalCsv.g:2018:1: ( '=>' )\n // InternalCsv.g:2019:2: '=>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n match(input,29,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11158:1: ( ( '=>' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11159:1: ( '=>' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11159:1: ( '=>' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11160:1: '=>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n match(input,63,FOLLOW_63_in_rule__XFunctionTypeRef__Group__1__Impl22405); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11129:1: ( ( ( rule__XFunctionTypeRef__Group_0__0 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11130:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11130:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11131:1: ( rule__XFunctionTypeRef__Group_0__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11132:1: ( rule__XFunctionTypeRef__Group_0__0 )?\n int alt69=2;\n int LA69_0 = input.LA(1);\n\n if ( (LA69_0==44) ) {\n alt69=1;\n }\n switch (alt69) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11132:2: rule__XFunctionTypeRef__Group_0__0\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__0_in_rule__XFunctionTypeRef__Group__0__Impl22343);\n rule__XFunctionTypeRef__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2178:1: ( ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* ) )\n // InternalCsv.g:2179:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\n {\n // InternalCsv.g:2179:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\n // InternalCsv.g:2180:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \n }\n // InternalCsv.g:2181:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\n loop17:\n do {\n int alt17=2;\n int LA17_0 = input.LA(1);\n\n if ( (LA17_0==30) ) {\n alt17=1;\n }\n\n\n switch (alt17) {\n \tcase 1 :\n \t // InternalCsv.g:2181:3: rule__XFunctionTypeRef__Group_0_1_1__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__XFunctionTypeRef__Group_0_1_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop17;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "FunctionArgument getRef();", "public final void rule__XFunctionTypeRef__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2059:1: ( rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1 )\n // InternalCsv.g:2060:2: rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1\n {\n pushFollow(FOLLOW_28);\n rule__XFunctionTypeRef__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11242:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11243:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__1__Impl_in_rule__XFunctionTypeRef__Group_0__122561);\n rule__XFunctionTypeRef__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__2_in_rule__XFunctionTypeRef__Group_0__122564);\n rule__XFunctionTypeRef__Group_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11146:1: ( rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11147:2: rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__1__Impl_in_rule__XFunctionTypeRef__Group__122374);\n rule__XFunctionTypeRef__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__2_in_rule__XFunctionTypeRef__Group__122377);\n rule__XFunctionTypeRef__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16061:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16062:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__1__Impl_in_rule__XFunctionTypeRef__Group_0__132437);\r\n rule__XFunctionTypeRef__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__2_in_rule__XFunctionTypeRef__Group_0__132440);\r\n rule__XFunctionTypeRef__Group_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11117:1: ( rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11118:2: rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__0__Impl_in_rule__XFunctionTypeRef__Group__022313);\n rule__XFunctionTypeRef__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__1_in_rule__XFunctionTypeRef__Group__022316);\n rule__XFunctionTypeRef__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15936:1: ( rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15937:2: rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__0__Impl_in_rule__XFunctionTypeRef__Group__032189);\r\n rule__XFunctionTypeRef__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__1_in_rule__XFunctionTypeRef__Group__032192);\r\n rule__XFunctionTypeRef__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2140:1: ( rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1 )\n // InternalCsv.g:2141:2: rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1\n {\n pushFollow(FOLLOW_29);\n rule__XFunctionTypeRef__Group_0_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "org.globus.swift.language.Function[] getFunctionArray();", "public final void rule__XFunctionTypeRef__Group_0_1_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2194:1: ( rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1 )\n // InternalCsv.g:2195:2: rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1\n {\n pushFollow(FOLLOW_27);\n rule__XFunctionTypeRef__Group_0_1_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15965:1: ( rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15966:2: rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__1__Impl_in_rule__XFunctionTypeRef__Group__132250);\r\n rule__XFunctionTypeRef__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__2_in_rule__XFunctionTypeRef__Group__132253);\r\n rule__XFunctionTypeRef__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11271:1: ( rule__XFunctionTypeRef__Group_0__2__Impl rule__XFunctionTypeRef__Group_0__3 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11272:2: rule__XFunctionTypeRef__Group_0__2__Impl rule__XFunctionTypeRef__Group_0__3\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__2__Impl_in_rule__XFunctionTypeRef__Group_0__222621);\n rule__XFunctionTypeRef__Group_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__3_in_rule__XFunctionTypeRef__Group_0__222624);\n rule__XFunctionTypeRef__Group_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15615:1: ( ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* ) )\r\n // InternalDroneScript.g:15616:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\r\n {\r\n // InternalDroneScript.g:15616:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\r\n // InternalDroneScript.g:15617:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \r\n }\r\n // InternalDroneScript.g:15618:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\r\n loop119:\r\n do {\r\n int alt119=2;\r\n int LA119_0 = input.LA(1);\r\n\r\n if ( (LA119_0==53) ) {\r\n alt119=1;\r\n }\r\n\r\n\r\n switch (alt119) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:15618:3: rule__XFunctionTypeRef__Group_0_1_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_10);\r\n \t rule__XFunctionTypeRef__Group_0_1_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop119;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15535:1: ( ( ( rule__XFunctionTypeRef__Group_0_1__0 )? ) )\r\n // InternalDroneScript.g:15536:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\r\n {\r\n // InternalDroneScript.g:15536:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\r\n // InternalDroneScript.g:15537:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \r\n }\r\n // InternalDroneScript.g:15538:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\r\n int alt118=2;\r\n int LA118_0 = input.LA(1);\r\n\r\n if ( (LA118_0==RULE_ID||LA118_0==31||LA118_0==76) ) {\r\n alt118=1;\r\n }\r\n switch (alt118) {\r\n case 1 :\r\n // InternalDroneScript.g:15538:3: rule__XFunctionTypeRef__Group_0_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void visit(BinArrayUseExpression x){\n }", "public final void entryRuleArrayBrackets() throws RecognitionException {\n try {\n // InternalCsv.g:305:1: ( ruleArrayBrackets EOF )\n // InternalCsv.g:306:1: ruleArrayBrackets EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getArrayBracketsRule()); \n }\n pushFollow(FOLLOW_1);\n ruleArrayBrackets();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getArrayBracketsRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15454:1: ( ( '=>' ) )\r\n // InternalDroneScript.g:15455:1: ( '=>' )\r\n {\r\n // InternalDroneScript.g:15455:1: ( '=>' )\r\n // InternalDroneScript.g:15456:2: '=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \r\n }\r\n match(input,31,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15948:1: ( ( ( rule__XFunctionTypeRef__Group_0__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15949:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15949:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15950:1: ( rule__XFunctionTypeRef__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15951:1: ( rule__XFunctionTypeRef__Group_0__0 )?\r\n int alt101=2;\r\n int LA101_0 = input.LA(1);\r\n\r\n if ( (LA101_0==106) ) {\r\n alt101=1;\r\n }\r\n switch (alt101) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15951:2: rule__XFunctionTypeRef__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__0_in_rule__XFunctionTypeRef__Group__0__Impl32219);\r\n rule__XFunctionTypeRef__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15415:1: ( rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1 )\r\n // InternalDroneScript.g:15416:2: rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__XFunctionTypeRef__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "Rule Function() {\n // Push 1 FunctionNode onto the value stack\n StringVar functionName = new StringVar(\"\");\n return Sequence(\n Optional(\"oneway \"),\n FunctionType(),\n Identifier(),\n actions.pop(),\n ACTION(functionName.set(match())),\n \"( \",\n ZeroOrMore(Field()),\n \") \",\n Optional(Throws()),\n Optional(ListSeparator()),\n push(new IdentifierNode(functionName.get())),\n actions.pushFunctionNode());\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15523:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\r\n // InternalDroneScript.g:15524:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\r\n {\r\n pushFollow(FOLLOW_108);\r\n rule__XFunctionTypeRef__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1990:1: ( ( ( rule__XFunctionTypeRef__Group_0__0 )? ) )\n // InternalCsv.g:1991:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\n {\n // InternalCsv.g:1991:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\n // InternalCsv.g:1992:2: ( rule__XFunctionTypeRef__Group_0__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \n }\n // InternalCsv.g:1993:2: ( rule__XFunctionTypeRef__Group_0__0 )?\n int alt15=2;\n int LA15_0 = input.LA(1);\n\n if ( (LA15_0==18) ) {\n alt15=1;\n }\n switch (alt15) {\n case 1 :\n // InternalCsv.g:1993:3: rule__XFunctionTypeRef__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11211:1: ( rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11212:2: rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__0__Impl_in_rule__XFunctionTypeRef__Group_0__022499);\n rule__XFunctionTypeRef__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__1_in_rule__XFunctionTypeRef__Group_0__022502);\n rule__XFunctionTypeRef__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16030:1: ( rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16031:2: rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__0__Impl_in_rule__XFunctionTypeRef__Group_0__032375);\r\n rule__XFunctionTypeRef__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__1_in_rule__XFunctionTypeRef__Group_0__032378);\r\n rule__XFunctionTypeRef__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16126:1: ( rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16127:2: rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1__0__Impl_in_rule__XFunctionTypeRef__Group_0_1__032563);\r\n rule__XFunctionTypeRef__Group_0_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1__1_in_rule__XFunctionTypeRef__Group_0_1__032566);\r\n rule__XFunctionTypeRef__Group_0_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15442:1: ( rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2 )\r\n // InternalDroneScript.g:15443:2: rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__XFunctionTypeRef__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "Object visitArrayOfReferences(ArrayOfReferencesNode node, Object state);", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11283:1: ( ( ( rule__XFunctionTypeRef__Group_0_2__0 )* ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11284:1: ( ( rule__XFunctionTypeRef__Group_0_2__0 )* )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11284:1: ( ( rule__XFunctionTypeRef__Group_0_2__0 )* )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11285:1: ( rule__XFunctionTypeRef__Group_0_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11286:1: ( rule__XFunctionTypeRef__Group_0_2__0 )*\n loop70:\n do {\n int alt70=2;\n int LA70_0 = input.LA(1);\n\n if ( (LA70_0==39) ) {\n alt70=1;\n }\n\n\n switch (alt70) {\n \tcase 1 :\n \t // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11286:2: rule__XFunctionTypeRef__Group_0_2__0\n \t {\n \t pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_2__0_in_rule__XFunctionTypeRef__Group_0__2__Impl22651);\n \t rule__XFunctionTypeRef__Group_0_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop70;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "org.apache.xmlbeans.XmlToken xgetRef();", "public Snippet visit(UpdatableArrayType n, Snippet argu) {\n\t\t Snippet _ret= new Snippet(\"\",\"\",null, false);\n\t\t\tSnippet f0 = n.nonArrayType.accept(this, argu);\n\t\t\t_ret.expType = new X10ReferenceArray(1,f0.expType);\n\t n.nodeToken.accept(this, argu);\n\t n.nodeToken1.accept(this, argu);\n\t n.rankEquation.accept(this, argu);\n\t n.nodeToken2.accept(this, argu);\n\t _ret.returnTemp = _ret.expType.typeName+\"[]\";\n\t\t\tallMyTypes.put(f0.expType.typeName, _ret.expType.typeName);\n\t return _ret;\n\t }", "public final void rule__XFunctionTypeRef__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15496:1: ( rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1 )\r\n // InternalDroneScript.g:15497:2: rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1\r\n {\r\n pushFollow(FOLLOW_108);\r\n rule__XFunctionTypeRef__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16187:1: ( rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16188:2: rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1_1__0__Impl_in_rule__XFunctionTypeRef__Group_0_1_1__032685);\r\n rule__XFunctionTypeRef__Group_0_1_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1_1__1_in_rule__XFunctionTypeRef__Group_0_1_1__032688);\r\n rule__XFunctionTypeRef__Group_0_1_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11300:1: ( rule__XFunctionTypeRef__Group_0__3__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11301:2: rule__XFunctionTypeRef__Group_0__3__Impl\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__3__Impl_in_rule__XFunctionTypeRef__Group_0__322682);\n rule__XFunctionTypeRef__Group_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public void visit(ArrayDeclaration node) {\n }", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15577:1: ( rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1 )\r\n // InternalDroneScript.g:15578:2: rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1\r\n {\r\n pushFollow(FOLLOW_9);\r\n rule__XFunctionTypeRef__Group_0_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15427:1: ( ( ( rule__XFunctionTypeRef__Group_0__0 )? ) )\r\n // InternalDroneScript.g:15428:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\r\n {\r\n // InternalDroneScript.g:15428:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\r\n // InternalDroneScript.g:15429:2: ( rule__XFunctionTypeRef__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:15430:2: ( rule__XFunctionTypeRef__Group_0__0 )?\r\n int alt117=2;\r\n int LA117_0 = input.LA(1);\r\n\r\n if ( (LA117_0==76) ) {\r\n alt117=1;\r\n }\r\n switch (alt117) {\r\n case 1 :\r\n // InternalDroneScript.g:15430:3: rule__XFunctionTypeRef__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15631:1: ( rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1 )\r\n // InternalDroneScript.g:15632:2: rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__XFunctionTypeRef__Group_0_1_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0_1_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "org.globus.swift.language.Function getFunctionArray(int i);", "public final void entryRuleXFeatureCall() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1580:1: ( ruleXFeatureCall EOF )\r\n // InternalDroneScript.g:1581:1: ruleXFeatureCall EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXFeatureCall();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_2__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11380:1: ( ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11381:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11381:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11382:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_2_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11383:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11383:2: rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1_in_rule__XFunctionTypeRef__Group_0_2__1__Impl22838);\n rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_2_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final CQLParser.arrayDefinition_return arrayDefinition() throws RecognitionException {\n CQLParser.arrayDefinition_return retval = new CQLParser.arrayDefinition_return();\n retval.start = input.LT(1);\n\n Object root_0 = null;\n\n Token char_literal140=null;\n Token char_literal141=null;\n Token char_literal142=null;\n List list_ra=null;\n CQLParser.atom_return a = null;\n\n RuleReturnScope ra = null;\n Object char_literal140_tree=null;\n Object char_literal141_tree=null;\n Object char_literal142_tree=null;\n RewriteRuleTokenStream stream_117=new RewriteRuleTokenStream(adaptor,\"token 117\");\n RewriteRuleTokenStream stream_115=new RewriteRuleTokenStream(adaptor,\"token 115\");\n RewriteRuleTokenStream stream_118=new RewriteRuleTokenStream(adaptor,\"token 118\");\n RewriteRuleSubtreeStream stream_atom=new RewriteRuleSubtreeStream(adaptor,\"rule atom\");\n try {\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:2: ( '[' (a= atom )? ( ',' ra+= atom )* ']' -> ^( ARRAY ( $a)? ( $ra)* ) )\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:4: '[' (a= atom )? ( ',' ra+= atom )* ']'\n {\n char_literal140=(Token)match(input,117,FOLLOW_117_in_arrayDefinition2327); \n stream_117.add(char_literal140);\n\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:9: (a= atom )?\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==ID||LA37_0==INTEGER||LA37_0==QUOTED_STRING||(LA37_0>=REAL && LA37_0<=NULL)||LA37_0==111||LA37_0==114) ) {\n alt37=1;\n }\n switch (alt37) {\n case 1 :\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:9: a= atom\n {\n pushFollow(FOLLOW_atom_in_arrayDefinition2331);\n a=atom();\n\n state._fsp--;\n\n stream_atom.add(a.getTree());\n\n }\n break;\n\n }\n\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:16: ( ',' ra+= atom )*\n loop38:\n do {\n int alt38=2;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==115) ) {\n alt38=1;\n }\n\n\n switch (alt38) {\n \tcase 1 :\n \t // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:17: ',' ra+= atom\n \t {\n \t char_literal141=(Token)match(input,115,FOLLOW_115_in_arrayDefinition2335); \n \t stream_115.add(char_literal141);\n\n \t pushFollow(FOLLOW_atom_in_arrayDefinition2339);\n \t ra=atom();\n\n \t state._fsp--;\n\n \t stream_atom.add(ra.getTree());\n \t if (list_ra==null) list_ra=new ArrayList();\n \t list_ra.add(ra.getTree());\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop38;\n }\n } while (true);\n\n char_literal142=(Token)match(input,118,FOLLOW_118_in_arrayDefinition2343); \n stream_118.add(char_literal142);\n\n\n\n // AST REWRITE\n // elements: a, ra\n // token labels: \n // rule labels: retval, a\n // token list labels: \n // rule list labels: ra\n // wildcard labels: \n retval.tree = root_0;\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\n RewriteRuleSubtreeStream stream_a=new RewriteRuleSubtreeStream(adaptor,\"rule a\",a!=null?a.tree:null);\n RewriteRuleSubtreeStream stream_ra=new RewriteRuleSubtreeStream(adaptor,\"token ra\",list_ra);\n root_0 = (Object)adaptor.nil();\n // 481:36: -> ^( ARRAY ( $a)? ( $ra)* )\n {\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:39: ^( ARRAY ( $a)? ( $ra)* )\n {\n Object root_1 = (Object)adaptor.nil();\n root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(ARRAY, \"ARRAY\"), root_1);\n\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:47: ( $a)?\n if ( stream_a.hasNext() ) {\n adaptor.addChild(root_1, stream_a.nextTree());\n\n }\n stream_a.reset();\n // /home/chinaski/programming/agile_workspace/ExplorerCat/src/main/antlr3/net/explorercat/cql/parser/CQL.g:481:51: ( $ra)*\n while ( stream_ra.hasNext() ) {\n adaptor.addChild(root_1, stream_ra.nextTree());\n\n }\n stream_ra.reset();\n\n adaptor.addChild(root_0, root_1);\n }\n\n }\n\n retval.tree = root_0;\n }\n\n retval.stop = input.LT(-1);\n\n retval.tree = (Object)adaptor.rulePostProcessing(root_0);\n adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\n\n }\n \t\n \tcatch(RecognitionException re)\n \t{\t\n \t\treportError(re);\n \t\tthrow re;\n \t}\n finally {\n }\n return retval;\n }", "public final void rule__XFunctionTypeRef__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11254:1: ( ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11255:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11255:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11256:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11257:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11257:2: rule__XFunctionTypeRef__ParamTypesAssignment_0_1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_in_rule__XFunctionTypeRef__Group_0__1__Impl22591);\n rule__XFunctionTypeRef__ParamTypesAssignment_0_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public RefAlertRuleModel[] createRefAlertRule(RefAlertRuleModel[] refAlertRules) throws AAException,\r\n\t\t\tRemoteException;", "@Override\r\n\tpublic void visit(ArrayExpression arrayExpression) {\n\r\n\t}", "void visitArrayField(FieldAttributes f, Type typeOfF, Object obj);", "public final void rule__XFunctionTypeRef__Group_0_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11338:1: ( rule__XFunctionTypeRef__Group_0_2__0__Impl rule__XFunctionTypeRef__Group_0_2__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11339:2: rule__XFunctionTypeRef__Group_0_2__0__Impl rule__XFunctionTypeRef__Group_0_2__1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_2__0__Impl_in_rule__XFunctionTypeRef__Group_0_2__022749);\n rule__XFunctionTypeRef__Group_0_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_2__1_in_rule__XFunctionTypeRef__Group_0_2__022752);\n rule__XFunctionTypeRef__Group_0_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleXFeatureCall() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1414:1: ( ruleXFeatureCall EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1415:1: ruleXFeatureCall EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallRule()); \r\n }\r\n pushFollow(FOLLOW_ruleXFeatureCall_in_entryRuleXFeatureCall2954);\r\n ruleXFeatureCall();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleXFeatureCall2961); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public Object[] visibaleRefencesMatchingFunctionType(final EObject ctx, final ExpressionVariable fd) {\n final HashSet<ExpressionVariable> exprVars = FunctionValidatorUtil.allInscopeExpressionVariables(ctx);\n final Predicate<ExpressionVariable> _function = (ExpressionVariable e) -> {\n return (e.getName().equals(fd.getName()) && FunctionValidatorUtil.isGlobalFuncType(e));\n };\n final Object[] funcArray = exprVars.stream().filter(_function).toArray();\n return funcArray;\n }", "public final void entryRuleXFeatureCall() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1193:1: ( ruleXFeatureCall EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1194:1: ruleXFeatureCall EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallRule()); \n }\n pushFollow(FOLLOW_ruleXFeatureCall_in_entryRuleXFeatureCall2476);\n ruleXFeatureCall();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleXFeatureCall2483); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "ArrayTypeRule createArrayTypeRule();", "protected FeatureListReference[] parseFeatureListReferences( Element datasetElement )\n throws XMLParsingException,\n InvalidCapabilitiesException {\n\n List<Node> featureList = XMLTools.getNodes( datasetElement, PRE_WPVS + \"FeatureListReference\", nsContext );\n if ( featureList.size() == 0 ) {\n return null;\n }\n FeatureListReference[] featureRefs = new FeatureListReference[featureList.size()];\n for ( int i = 0; i < featureRefs.length; i++ ) {\n\n Element featureRefElement = (Element) featureList.get( i );\n\n String format = XMLTools.getRequiredNodeAsString( featureRefElement, PRE_WPVS + \"Format/text()\", nsContext );\n\n URI onlineResourceURI = XMLTools.getNodeAsURI( featureRefElement,\n PRE_WPVS + \"OnlineResource/@xlink:href\",\n nsContext,\n null );\n URL onlineResource = null;\n if ( onlineResourceURI != null ) {\n try {\n onlineResource = onlineResourceURI.toURL();\n } catch ( MalformedURLException e ) {\n throw new InvalidCapabilitiesException( onlineResourceURI + \" does not represent a valid URL: \"\n + e.getMessage() );\n }\n }\n featureRefs[i] = new FeatureListReference( format, onlineResource );\n }\n return featureRefs;\n }", "@Override\n\tpublic Object visit(ASTPCGenLookup node, Object data)\n\t{\n\t\tFormulaSemantics semantics = (FormulaSemantics) data;\n\t\t//Two children are function name and the grouping (parens/brackets)\n\t\tif (node.jjtGetNumChildren() != 2)\n\t\t{\n\t\t\tFormulaSemanticsUtilities.setInvalid(semantics,\n\t\t\t\tgetInvalidCountReport(node, 2));\n\t\t\treturn semantics;\n\t\t}\n\t\tNode firstChild = node.jjtGetChild(0);\n\n\t\tif (!(firstChild instanceof ASTPCGenSingleWord))\n\t\t{\n\t\t\tFormulaSemanticsUtilities.setInvalid(semantics,\n\t\t\t\t\"Parse Error: Function \" + \"Formula Name\"\n\t\t\t\t\t+ \" received invalid argument format,\"\n\t\t\t\t\t+ \" expected: ASTPCGenSingleWord got \"\n\t\t\t\t\t+ firstChild.getClass().getName() + \": \" + firstChild);\n\t\t\treturn semantics;\n\t\t}\n\n\t\t/*\n\t\t * Validate the function contents (remember it can have other complex\n\t\t * structures inside of it)\n\t\t */\n\t\tASTPCGenSingleWord ftnNode = (ASTPCGenSingleWord) firstChild;\n\t\tString ftnName = ftnNode.getText();\n\t\tNode argNode = node.jjtGetChild(1);\n\t\tFunction function;\n\t\tString functionForm;\n\t\tFunctionLibrary library = fm.getLibrary();\n\t\tif (argNode instanceof ASTFParen)\n\t\t{\n\t\t\tfunction = library.getFunction(ftnName);\n\t\t\tfunctionForm = \"()\";\n\t\t}\n\t\telse if (argNode instanceof ASTPCGenBracket)\n\t\t{\n\t\t\tfunction = library.getBracketFunction(ftnName);\n\t\t\tfunctionForm = \"[]\";\n\t\t}\n\t\telse\n\t\t{\n\t\t\tFormulaSemanticsUtilities.setInvalid(semantics,\n\t\t\t\t\"Parse Error: Function Formula Arguments\"\n\t\t\t\t\t+ \" received invalid argument format, \"\n\t\t\t\t\t+ \"expected: ASTFParen, got \"\n\t\t\t\t\t+ firstChild.getClass().getName() + \": \" + firstChild);\n\t\t\treturn semantics;\n\t\t}\n\t\tif (function == null)\n\t\t{\n\t\t\tFormulaSemanticsUtilities.setInvalid(semantics, \"Function: \"\n\t\t\t\t+ ftnName + \" was not found (called as: \" + ftnName\n\t\t\t\t+ functionForm + \")\");\n\t\t\treturn semantics;\n\t\t}\n\t\t//Extract arguments from the grouping to give them to the function\n\t\tint argLength = argNode.jjtGetNumChildren();\n\t\tNode[] args = new Node[argLength];\n\t\tfor (int i = 0; i < argLength; i++)\n\t\t{\n\t\t\targs[i] = argNode.jjtGetChild(i);\n\t\t}\n\t\tfunction.allowArgs(this, args, semantics);\n\t\treturn semantics;\n\t}", "FunctionAsAttribute listeExpressions(FunctionAsAttribute ff) throws EvaluatorException {\r\n FunctionAsAttribute ret = ff;\r\n if (ArithmeticExpressionEvaluator.isStartOfArithmeticExpression(actualSymbol()) /*&& lookafterSymbol().type() != SymboleTypes.DOUBLEPOINT*/) {\r\n CombinedReturnObject recNum = eAE.expression();\r\n //----addNew\r\n\r\n ret.listOfCombined.addAll(recNum.asArrayList());\r\n //----addNew\r\n //----Ancient\r\n //ret.listOfCombined.add(recNum);\r\n //----Ancient\r\n\r\n if (actualSymbol().type() == SymboleTypes.COMMA || actualSymbol().type() == SymboleTypes.CLOSEDPARENTHESIS) {\r\n ret = listeExpression2(ret);\r\n } else {\r\n throw new UnexpectedSymbolExceptionExpectedAnotherArgumentOrAClosedParenthesis(actualSymbol());\r\n }\r\n } /*else if (((actualSymbol().type() == SymboleTypes.VARIABLE) && (lookafterSymbol().type() == SymboleTypes.DOUBLEPOINT))) {\r\n Symbol varsymb = actualSymbol();\r\n nextSymbol();\r\n nextSymbol();\r\n if (actualSymbol().type() == SymboleTypes.VARIABLE) {\r\n Symbol varsymb2 = actualSymbol();\r\n nextSymbol();\r\n ff.listOfCombined = eAE.myEvaluator().getVariableFamilyValues(varsymb.stringValue(), varsymb2.stringValue());\r\n } else {\r\n System.out.println(\"Expected a variable and found - \" + actualSymbol().toString());\r\n throw new UnexpectedSymbolException(actualSymbol());\r\n }\r\n }*/ else if (actualSymbol().type() == SymboleTypes.CLOSEDPARENTHESIS) {\r\n ret = ff;\r\n } else {\r\n\r\n //System.out.println(\"FNCError ! - \" + actualSymbol());\r\n throw new BadParenthesizedExpectedClosedException(actualSymbol());\r\n }\r\n return ret;\r\n }", "public float[] getFloatArray(String subExpression) {\n float[] result = null;\n String expression = contextNode + \"/\" + subExpression;\n try {\n NodeList nl = (NodeList)xp.evaluate(expression, source, XPathConstants.NODESET);\n int n = nl.getLength();\n if (n > 0) {\n result = new float[n];\n for (int i = 0; i < n; i++) result[i] = Float.parseFloat(nl.item(i).getTextContent());\n }\n } catch(Exception e) {\n Util.log(\"XML error: can't read node \" + expression + \".\");\n Util.logException(e);\n }\n return result;\n }", "protected void referencesToSAX (int refType, int useMode, ContentHandler contentHandler)\n throws SAXException\n {\n for (int toDocType = DocType.first; toDocType <= DocType.last; toDocType++)\n if ( DbTable.REF[this.type][toDocType] != null )\n\treferencesToSAX(toDocType, refType, useMode, contentHandler);\n }", "@Override\n\tpublic void VisitArrayLiteralNode(BunArrayNode Node) {\n\n\t}", "@Override\n public R visit(CFunctionCallExpression exp) throws X {\n return visit((AFunctionCallExpression) exp);\n }", "public void addFjlx(Fjlx fx) {\n\r\n\t}", "@Override\r\n\tpublic void visit(FunctionCallExpression functionCallExpression) {\n\r\n\t}", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3444:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt40=2;\r\n int LA40_0 = input.LA(1);\r\n\r\n if ( (LA40_0==RULE_ID) ) {\r\n alt40=1;\r\n }\r\n else if ( (LA40_0==31||LA40_0==76) ) {\r\n alt40=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 40, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt40) {\r\n case 1 :\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // InternalDroneScript.g:3446:3: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:3447:3: ( rule__JvmTypeReference__Group_0__0 )\r\n // InternalDroneScript.g:3447:4: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n {\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n // InternalDroneScript.g:3452:3: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void array() throws SyntaxException{\n if(cursor.getType().equals(TokenType.RIGHT_BRACKET))\n return;\n else\n {\n elements();\n match(TokenType.RIGHT_BRACKET);\n }\n }", "private static int[] inputField(List<RelNode> leaves, RexNode rex) {\n if (!(rex instanceof RexInputRef)) {\n throw new RuntimeException(\"only equi-join of columns allowed: \" + rex);\n }\n RexInputRef ref = (RexInputRef) rex;\n int start = 0;\n for (int i = 0; i < leaves.size(); i++) {\n final RelNode leaf = leaves.get(i);\n final int end = start + leaf.getRowType().getFieldCount();\n if (ref.getIndex() < end) {\n return new int[] {i, ref.getIndex() - start};\n }\n start = end;\n }\n throw new AssertionError(\"input not found\");\n }", "public final void rule__XFeatureCall__DeclaringTypeAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13051:1: ( ( ( ruleStaticQualifier ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13052:1: ( ( ruleStaticQualifier ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13052:1: ( ( ruleStaticQualifier ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13053:1: ( ruleStaticQualifier )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getDeclaringTypeJvmDeclaredTypeCrossReference_1_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13054:1: ( ruleStaticQualifier )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13055:1: ruleStaticQualifier\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getDeclaringTypeJvmDeclaredTypeStaticQualifierParserRuleCall_1_0_1()); \n }\n pushFollow(FOLLOW_ruleStaticQualifier_in_rule__XFeatureCall__DeclaringTypeAssignment_126218);\n ruleStaticQualifier();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getDeclaringTypeJvmDeclaredTypeStaticQualifierParserRuleCall_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getDeclaringTypeJvmDeclaredTypeCrossReference_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__DeclaringTypeAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18530:1: ( ( ( ruleStaticQualifier ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18531:1: ( ( ruleStaticQualifier ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18531:1: ( ( ruleStaticQualifier ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18532:1: ( ruleStaticQualifier )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getDeclaringTypeJvmDeclaredTypeCrossReference_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18533:1: ( ruleStaticQualifier )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18534:1: ruleStaticQualifier\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getDeclaringTypeJvmDeclaredTypeStaticQualifierParserRuleCall_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_ruleStaticQualifier_in_rule__XFeatureCall__DeclaringTypeAssignment_137443);\r\n ruleStaticQualifier();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getDeclaringTypeJvmDeclaredTypeStaticQualifierParserRuleCall_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getDeclaringTypeJvmDeclaredTypeCrossReference_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleArrayBrackets() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1877:1: ( ruleArrayBrackets EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1878:1: ruleArrayBrackets EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArrayBracketsRule()); \r\n }\r\n pushFollow(FOLLOW_ruleArrayBrackets_in_entryRuleArrayBrackets3940);\r\n ruleArrayBrackets();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArrayBracketsRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleArrayBrackets3947); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }" ]
[ "0.65599114", "0.64433396", "0.63430727", "0.5376935", "0.5192028", "0.5187528", "0.5186875", "0.5175372", "0.5175372", "0.51730365", "0.51236784", "0.5099272", "0.50144213", "0.50062406", "0.5002597", "0.49879232", "0.49681228", "0.49567294", "0.4937982", "0.4890995", "0.48421478", "0.48353025", "0.48067474", "0.47638652", "0.47612342", "0.47471818", "0.47073957", "0.47068292", "0.46993086", "0.4696918", "0.468019", "0.46788004", "0.46732366", "0.46706173", "0.46676296", "0.4648552", "0.46483666", "0.46321657", "0.45901725", "0.45887342", "0.4568897", "0.45680094", "0.45677906", "0.45620903", "0.45535246", "0.4535946", "0.45327437", "0.44919538", "0.44801098", "0.44734156", "0.44566336", "0.44520062", "0.44495228", "0.44414127", "0.4439904", "0.44243142", "0.44214296", "0.44170758", "0.44149625", "0.44138655", "0.44024542", "0.43949658", "0.4384179", "0.43704057", "0.43703023", "0.43644583", "0.43542382", "0.43188956", "0.4318698", "0.43098468", "0.42970088", "0.42940184", "0.42898172", "0.4256163", "0.42545578", "0.42442158", "0.42429808", "0.4242201", "0.42260796", "0.4214104", "0.41718993", "0.4169755", "0.41521955", "0.41315696", "0.4114487", "0.41125354", "0.40871292", "0.4074776", "0.40700877", "0.40653288", "0.4064107", "0.4058392", "0.4054835", "0.40546504", "0.4040981", "0.40348402", "0.40299293", "0.40251777", "0.40222222", "0.40210518" ]
0.7074759
0
$ANTLR end "entryRuleXFunctionTypeRef" $ANTLR start "ruleXFunctionTypeRef" InternalCsv.g:338:1: ruleXFunctionTypeRef : ( ( rule__XFunctionTypeRef__Group__0 ) ) ;
public final void ruleXFunctionTypeRef() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:342:2: ( ( ( rule__XFunctionTypeRef__Group__0 ) ) ) // InternalCsv.g:343:2: ( ( rule__XFunctionTypeRef__Group__0 ) ) { // InternalCsv.g:343:2: ( ( rule__XFunctionTypeRef__Group__0 ) ) // InternalCsv.g:344:3: ( rule__XFunctionTypeRef__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); } // InternalCsv.g:345:3: ( rule__XFunctionTypeRef__Group__0 ) // InternalCsv.g:345:4: rule__XFunctionTypeRef__Group__0 { pushFollow(FOLLOW_2); rule__XFunctionTypeRef__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleXFunctionTypeRef() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1604:2: ( ( ( rule__XFunctionTypeRef__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1605:1: ( ( rule__XFunctionTypeRef__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1605:1: ( ( rule__XFunctionTypeRef__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1606:1: ( rule__XFunctionTypeRef__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1607:1: ( rule__XFunctionTypeRef__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1607:2: rule__XFunctionTypeRef__Group__0\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__0_in_ruleXFunctionTypeRef3366);\n rule__XFunctionTypeRef__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXFunctionTypeRef() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2050:2: ( ( ( rule__XFunctionTypeRef__Group__0 ) ) )\r\n // InternalDroneScript.g:2051:2: ( ( rule__XFunctionTypeRef__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2051:2: ( ( rule__XFunctionTypeRef__Group__0 ) )\r\n // InternalDroneScript.g:2052:3: ( rule__XFunctionTypeRef__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2053:3: ( rule__XFunctionTypeRef__Group__0 )\r\n // InternalDroneScript.g:2053:4: rule__XFunctionTypeRef__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXFunctionTypeRef() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1917:2: ( ( ( rule__XFunctionTypeRef__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1918:1: ( ( rule__XFunctionTypeRef__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1918:1: ( ( rule__XFunctionTypeRef__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1919:1: ( rule__XFunctionTypeRef__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1920:1: ( rule__XFunctionTypeRef__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1920:2: rule__XFunctionTypeRef__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__0_in_ruleXFunctionTypeRef4033);\r\n rule__XFunctionTypeRef__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16073:1: ( ( ( rule__XFunctionTypeRef__Group_0_1__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16074:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16074:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16075:1: ( rule__XFunctionTypeRef__Group_0_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16076:1: ( rule__XFunctionTypeRef__Group_0_1__0 )?\r\n int alt102=2;\r\n int LA102_0 = input.LA(1);\r\n\r\n if ( (LA102_0==RULE_ID||LA102_0==26||LA102_0==106) ) {\r\n alt102=1;\r\n }\r\n switch (alt102) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16076:2: rule__XFunctionTypeRef__Group_0_1__0\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1__0_in_rule__XFunctionTypeRef__Group_0__1__Impl32467);\r\n rule__XFunctionTypeRef__Group_0_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1978:1: ( rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1 )\n // InternalCsv.g:1979:2: rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1\n {\n pushFollow(FOLLOW_26);\n rule__XFunctionTypeRef__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16166:1: ( ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16167:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16167:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16168:1: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16169:1: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\r\n loop103:\r\n do {\r\n int alt103=2;\r\n int LA103_0 = input.LA(1);\r\n\r\n if ( (LA103_0==84) ) {\r\n alt103=1;\r\n }\r\n\r\n\r\n switch (alt103) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16169:2: rule__XFunctionTypeRef__Group_0_1_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1_1__0_in_rule__XFunctionTypeRef__Group_0_1__1__Impl32650);\r\n \t rule__XFunctionTypeRef__Group_0_1_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop103;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16042:1: ( ( '(' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16043:1: ( '(' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16043:1: ( '(' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16044:1: '('\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \r\n }\r\n match(input,106,FOLLOW_106_in_rule__XFunctionTypeRef__Group_0__0__Impl32406); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11129:1: ( ( ( rule__XFunctionTypeRef__Group_0__0 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11130:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11130:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11131:1: ( rule__XFunctionTypeRef__Group_0__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11132:1: ( rule__XFunctionTypeRef__Group_0__0 )?\n int alt69=2;\n int LA69_0 = input.LA(1);\n\n if ( (LA69_0==44) ) {\n alt69=1;\n }\n switch (alt69) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11132:2: rule__XFunctionTypeRef__Group_0__0\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__0_in_rule__XFunctionTypeRef__Group__0__Impl22343);\n rule__XFunctionTypeRef__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2086:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\n // InternalCsv.g:2087:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\n {\n pushFollow(FOLLOW_28);\n rule__XFunctionTypeRef__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15936:1: ( rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15937:2: rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__0__Impl_in_rule__XFunctionTypeRef__Group__032189);\r\n rule__XFunctionTypeRef__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__1_in_rule__XFunctionTypeRef__Group__032192);\r\n rule__XFunctionTypeRef__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2098:1: ( ( ( rule__XFunctionTypeRef__Group_0_1__0 )? ) )\n // InternalCsv.g:2099:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\n {\n // InternalCsv.g:2099:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\n // InternalCsv.g:2100:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \n }\n // InternalCsv.g:2101:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\n int alt16=2;\n int LA16_0 = input.LA(1);\n\n if ( (LA16_0==RULE_ID||LA16_0==18||LA16_0==29) ) {\n alt16=1;\n }\n switch (alt16) {\n case 1 :\n // InternalCsv.g:2101:3: rule__XFunctionTypeRef__Group_0_1__0\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11242:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11243:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__1__Impl_in_rule__XFunctionTypeRef__Group_0__122561);\n rule__XFunctionTypeRef__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__2_in_rule__XFunctionTypeRef__Group_0__122564);\n rule__XFunctionTypeRef__Group_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11117:1: ( rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11118:2: rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__0__Impl_in_rule__XFunctionTypeRef__Group__022313);\n rule__XFunctionTypeRef__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__1_in_rule__XFunctionTypeRef__Group__022316);\n rule__XFunctionTypeRef__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2059:1: ( rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1 )\n // InternalCsv.g:2060:2: rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1\n {\n pushFollow(FOLLOW_28);\n rule__XFunctionTypeRef__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16061:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16062:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__1__Impl_in_rule__XFunctionTypeRef__Group_0__132437);\r\n rule__XFunctionTypeRef__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__2_in_rule__XFunctionTypeRef__Group_0__132440);\r\n rule__XFunctionTypeRef__Group_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15535:1: ( ( ( rule__XFunctionTypeRef__Group_0_1__0 )? ) )\r\n // InternalDroneScript.g:15536:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\r\n {\r\n // InternalDroneScript.g:15536:1: ( ( rule__XFunctionTypeRef__Group_0_1__0 )? )\r\n // InternalDroneScript.g:15537:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \r\n }\r\n // InternalDroneScript.g:15538:2: ( rule__XFunctionTypeRef__Group_0_1__0 )?\r\n int alt118=2;\r\n int LA118_0 = input.LA(1);\r\n\r\n if ( (LA118_0==RULE_ID||LA118_0==31||LA118_0==76) ) {\r\n alt118=1;\r\n }\r\n switch (alt118) {\r\n case 1 :\r\n // InternalDroneScript.g:15538:3: rule__XFunctionTypeRef__Group_0_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15948:1: ( ( ( rule__XFunctionTypeRef__Group_0__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15949:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15949:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15950:1: ( rule__XFunctionTypeRef__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15951:1: ( rule__XFunctionTypeRef__Group_0__0 )?\r\n int alt101=2;\r\n int LA101_0 = input.LA(1);\r\n\r\n if ( (LA101_0==106) ) {\r\n alt101=1;\r\n }\r\n switch (alt101) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15951:2: rule__XFunctionTypeRef__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__0_in_rule__XFunctionTypeRef__Group__0__Impl32219);\r\n rule__XFunctionTypeRef__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15415:1: ( rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1 )\r\n // InternalDroneScript.g:15416:2: rule__XFunctionTypeRef__Group__0__Impl rule__XFunctionTypeRef__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__XFunctionTypeRef__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16126:1: ( rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16127:2: rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1__0__Impl_in_rule__XFunctionTypeRef__Group_0_1__032563);\r\n rule__XFunctionTypeRef__Group_0_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1__1_in_rule__XFunctionTypeRef__Group_0_1__032566);\r\n rule__XFunctionTypeRef__Group_0_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16030:1: ( rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16031:2: rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__0__Impl_in_rule__XFunctionTypeRef__Group_0__032375);\r\n rule__XFunctionTypeRef__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__1_in_rule__XFunctionTypeRef__Group_0__032378);\r\n rule__XFunctionTypeRef__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15496:1: ( rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1 )\r\n // InternalDroneScript.g:15497:2: rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1\r\n {\r\n pushFollow(FOLLOW_108);\r\n rule__XFunctionTypeRef__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15523:1: ( rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2 )\r\n // InternalDroneScript.g:15524:2: rule__XFunctionTypeRef__Group_0__1__Impl rule__XFunctionTypeRef__Group_0__2\r\n {\r\n pushFollow(FOLLOW_108);\r\n rule__XFunctionTypeRef__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11223:1: ( ( '(' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11224:1: ( '(' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11224:1: ( '(' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11225:1: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n match(input,44,FOLLOW_44_in_rule__XFunctionTypeRef__Group_0__0__Impl22530); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2178:1: ( ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* ) )\n // InternalCsv.g:2179:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\n {\n // InternalCsv.g:2179:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\n // InternalCsv.g:2180:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \n }\n // InternalCsv.g:2181:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\n loop17:\n do {\n int alt17=2;\n int LA17_0 = input.LA(1);\n\n if ( (LA17_0==30) ) {\n alt17=1;\n }\n\n\n switch (alt17) {\n \tcase 1 :\n \t // InternalCsv.g:2181:3: rule__XFunctionTypeRef__Group_0_1_1__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__XFunctionTypeRef__Group_0_1_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop17;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1990:1: ( ( ( rule__XFunctionTypeRef__Group_0__0 )? ) )\n // InternalCsv.g:1991:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\n {\n // InternalCsv.g:1991:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\n // InternalCsv.g:1992:2: ( rule__XFunctionTypeRef__Group_0__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \n }\n // InternalCsv.g:1993:2: ( rule__XFunctionTypeRef__Group_0__0 )?\n int alt15=2;\n int LA15_0 = input.LA(1);\n\n if ( (LA15_0==18) ) {\n alt15=1;\n }\n switch (alt15) {\n case 1 :\n // InternalCsv.g:1993:3: rule__XFunctionTypeRef__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11211:1: ( rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11212:2: rule__XFunctionTypeRef__Group_0__0__Impl rule__XFunctionTypeRef__Group_0__1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__0__Impl_in_rule__XFunctionTypeRef__Group_0__022499);\n rule__XFunctionTypeRef__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__1_in_rule__XFunctionTypeRef__Group_0__022502);\n rule__XFunctionTypeRef__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16187:1: ( rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16188:2: rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1_1__0__Impl_in_rule__XFunctionTypeRef__Group_0_1_1__032685);\r\n rule__XFunctionTypeRef__Group_0_1_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1_1__1_in_rule__XFunctionTypeRef__Group_0_1_1__032688);\r\n rule__XFunctionTypeRef__Group_0_1_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15427:1: ( ( ( rule__XFunctionTypeRef__Group_0__0 )? ) )\r\n // InternalDroneScript.g:15428:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\r\n {\r\n // InternalDroneScript.g:15428:1: ( ( rule__XFunctionTypeRef__Group_0__0 )? )\r\n // InternalDroneScript.g:15429:2: ( rule__XFunctionTypeRef__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:15430:2: ( rule__XFunctionTypeRef__Group_0__0 )?\r\n int alt117=2;\r\n int LA117_0 = input.LA(1);\r\n\r\n if ( (LA117_0==76) ) {\r\n alt117=1;\r\n }\r\n switch (alt117) {\r\n case 1 :\r\n // InternalDroneScript.g:15430:3: rule__XFunctionTypeRef__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2140:1: ( rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1 )\n // InternalCsv.g:2141:2: rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1\n {\n pushFollow(FOLLOW_29);\n rule__XFunctionTypeRef__Group_0_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15577:1: ( rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1 )\r\n // InternalDroneScript.g:15578:2: rule__XFunctionTypeRef__Group_0_1__0__Impl rule__XFunctionTypeRef__Group_0_1__1\r\n {\r\n pushFollow(FOLLOW_9);\r\n rule__XFunctionTypeRef__Group_0_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2005:1: ( rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2 )\n // InternalCsv.g:2006:2: rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2\n {\n pushFollow(FOLLOW_27);\n rule__XFunctionTypeRef__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15615:1: ( ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* ) )\r\n // InternalDroneScript.g:15616:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\r\n {\r\n // InternalDroneScript.g:15616:1: ( ( rule__XFunctionTypeRef__Group_0_1_1__0 )* )\r\n // InternalDroneScript.g:15617:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \r\n }\r\n // InternalDroneScript.g:15618:2: ( rule__XFunctionTypeRef__Group_0_1_1__0 )*\r\n loop119:\r\n do {\r\n int alt119=2;\r\n int LA119_0 = input.LA(1);\r\n\r\n if ( (LA119_0==53) ) {\r\n alt119=1;\r\n }\r\n\r\n\r\n switch (alt119) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:15618:3: rule__XFunctionTypeRef__Group_0_1_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_10);\r\n \t rule__XFunctionTypeRef__Group_0_1_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop119;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2071:1: ( ( '(' ) )\n // InternalCsv.g:2072:1: ( '(' )\n {\n // InternalCsv.g:2072:1: ( '(' )\n // InternalCsv.g:2073:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15631:1: ( rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1 )\r\n // InternalDroneScript.g:15632:2: rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__XFunctionTypeRef__Group_0_1_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0_1_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2194:1: ( rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1 )\n // InternalCsv.g:2195:2: rule__XFunctionTypeRef__Group_0_1_1__0__Impl rule__XFunctionTypeRef__Group_0_1_1__1\n {\n pushFollow(FOLLOW_27);\n rule__XFunctionTypeRef__Group_0_1_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11146:1: ( rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11147:2: rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__1__Impl_in_rule__XFunctionTypeRef__Group__122374);\n rule__XFunctionTypeRef__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__2_in_rule__XFunctionTypeRef__Group__122377);\n rule__XFunctionTypeRef__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11271:1: ( rule__XFunctionTypeRef__Group_0__2__Impl rule__XFunctionTypeRef__Group_0__3 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11272:2: rule__XFunctionTypeRef__Group_0__2__Impl rule__XFunctionTypeRef__Group_0__3\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__2__Impl_in_rule__XFunctionTypeRef__Group_0__222621);\n rule__XFunctionTypeRef__Group_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__3_in_rule__XFunctionTypeRef__Group_0__222624);\n rule__XFunctionTypeRef__Group_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15965:1: ( rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15966:2: rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__1__Impl_in_rule__XFunctionTypeRef__Group__132250);\r\n rule__XFunctionTypeRef__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__2_in_rule__XFunctionTypeRef__Group__132253);\r\n rule__XFunctionTypeRef__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11283:1: ( ( ( rule__XFunctionTypeRef__Group_0_2__0 )* ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11284:1: ( ( rule__XFunctionTypeRef__Group_0_2__0 )* )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11284:1: ( ( rule__XFunctionTypeRef__Group_0_2__0 )* )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11285:1: ( rule__XFunctionTypeRef__Group_0_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11286:1: ( rule__XFunctionTypeRef__Group_0_2__0 )*\n loop70:\n do {\n int alt70=2;\n int LA70_0 = input.LA(1);\n\n if ( (LA70_0==39) ) {\n alt70=1;\n }\n\n\n switch (alt70) {\n \tcase 1 :\n \t // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11286:2: rule__XFunctionTypeRef__Group_0_2__0\n \t {\n \t pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_2__0_in_rule__XFunctionTypeRef__Group_0__2__Impl22651);\n \t rule__XFunctionTypeRef__Group_0_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop70;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getGroup_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15508:1: ( ( '(' ) )\r\n // InternalDroneScript.g:15509:1: ( '(' )\r\n {\r\n // InternalDroneScript.g:15509:1: ( '(' )\r\n // InternalDroneScript.g:15510:2: '('\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \r\n }\r\n match(input,76,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getLeftParenthesisKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15442:1: ( rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2 )\r\n // InternalDroneScript.g:15443:2: rule__XFunctionTypeRef__Group__1__Impl rule__XFunctionTypeRef__Group__2\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__XFunctionTypeRef__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\n try {\n // InternalCsv.g:330:1: ( ruleXFunctionTypeRef EOF )\n // InternalCsv.g:331:1: ruleXFunctionTypeRef EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11338:1: ( rule__XFunctionTypeRef__Group_0_2__0__Impl rule__XFunctionTypeRef__Group_0_2__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11339:2: rule__XFunctionTypeRef__Group_0_2__0__Impl rule__XFunctionTypeRef__Group_0_2__1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_2__0__Impl_in_rule__XFunctionTypeRef__Group_0_2__022749);\n rule__XFunctionTypeRef__Group_0_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_2__1_in_rule__XFunctionTypeRef__Group_0_2__022752);\n rule__XFunctionTypeRef__Group_0_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11311:1: ( ( ')' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11312:1: ( ')' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11312:1: ( ')' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11313:1: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_3()); \n }\n match(input,40,FOLLOW_40_in_rule__XFunctionTypeRef__Group_0__3__Impl22710); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2124:1: ( ( ')' ) )\n // InternalCsv.g:2125:1: ( ')' )\n {\n // InternalCsv.g:2125:1: ( ')' )\n // InternalCsv.g:2126:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15977:1: ( ( '=>' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15978:1: ( '=>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15978:1: ( '=>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15979:1: '=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \r\n }\r\n match(input,26,FOLLOW_26_in_rule__XFunctionTypeRef__Group__1__Impl32281); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16101:1: ( ( ')' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16102:1: ( ')' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16102:1: ( ')' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16103:1: ')'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \r\n }\r\n match(input,102,FOLLOW_102_in_rule__XFunctionTypeRef__Group_0__2__Impl32526); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11300:1: ( rule__XFunctionTypeRef__Group_0__3__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11301:2: rule__XFunctionTypeRef__Group_0__3__Impl\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__3__Impl_in_rule__XFunctionTypeRef__Group_0__322682);\n rule__XFunctionTypeRef__Group_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11158:1: ( ( '=>' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11159:1: ( '=>' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11159:1: ( '=>' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11160:1: '=>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n match(input,63,FOLLOW_63_in_rule__XFunctionTypeRef__Group__1__Impl22405); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1592:1: ( ruleXFunctionTypeRef EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1593:1: ruleXFunctionTypeRef EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefRule()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_entryRuleXFunctionTypeRef3333);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleXFunctionTypeRef3340); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2038:1: ( ruleXFunctionTypeRef EOF )\r\n // InternalDroneScript.g:2039:1: ruleXFunctionTypeRef EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16199:1: ( ( ',' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16200:1: ( ',' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16200:1: ( ',' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16201:1: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \r\n }\r\n match(input,84,FOLLOW_84_in_rule__XFunctionTypeRef__Group_0_1_1__0__Impl32716); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1905:1: ( ruleXFunctionTypeRef EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1906:1: ruleXFunctionTypeRef EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_entryRuleXFunctionTypeRef4000);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleXFunctionTypeRef4007); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16218:1: ( rule__XFunctionTypeRef__Group_0_1_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16219:2: rule__XFunctionTypeRef__Group_0_1_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1_1__1__Impl_in_rule__XFunctionTypeRef__Group_0_1_1__132747);\r\n rule__XFunctionTypeRef__Group_0_1_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16155:1: ( rule__XFunctionTypeRef__Group_0_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16156:2: rule__XFunctionTypeRef__Group_0_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_1__1__Impl_in_rule__XFunctionTypeRef__Group_0_1__132623);\r\n rule__XFunctionTypeRef__Group_0_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2206:1: ( ( ',' ) )\n // InternalCsv.g:2207:1: ( ',' )\n {\n // InternalCsv.g:2207:1: ( ',' )\n // InternalCsv.g:2208:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16090:1: ( rule__XFunctionTypeRef__Group_0__2__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16091:2: rule__XFunctionTypeRef__Group_0__2__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0__2__Impl_in_rule__XFunctionTypeRef__Group_0__232498);\r\n rule__XFunctionTypeRef__Group_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15561:1: ( ( ')' ) )\r\n // InternalDroneScript.g:15562:1: ( ')' )\r\n {\r\n // InternalDroneScript.g:15562:1: ( ')' )\r\n // InternalDroneScript.g:15563:2: ')'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \r\n }\r\n match(input,71,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getRightParenthesisKeyword_0_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15550:1: ( rule__XFunctionTypeRef__Group_0__2__Impl )\r\n // InternalDroneScript.g:15551:2: rule__XFunctionTypeRef__Group_0__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11369:1: ( rule__XFunctionTypeRef__Group_0_2__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11370:2: rule__XFunctionTypeRef__Group_0_2__1__Impl\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group_0_2__1__Impl_in_rule__XFunctionTypeRef__Group_0_2__122811);\n rule__XFunctionTypeRef__Group_0_2__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15643:1: ( ( ',' ) )\r\n // InternalDroneScript.g:15644:1: ( ',' )\r\n {\r\n // InternalDroneScript.g:15644:1: ( ',' )\r\n // InternalDroneScript.g:15645:2: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \r\n }\r\n match(input,53,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2017:1: ( ( '=>' ) )\n // InternalCsv.g:2018:1: ( '=>' )\n {\n // InternalCsv.g:2018:1: ( '=>' )\n // InternalCsv.g:2019:2: '=>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n match(input,29,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11350:1: ( ( ',' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11351:1: ( ',' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11351:1: ( ',' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11352:1: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_2_0()); \n }\n match(input,39,FOLLOW_39_in_rule__XFunctionTypeRef__Group_0_2__0__Impl22780); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15996:1: ( rule__XFunctionTypeRef__Group__2__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15997:2: rule__XFunctionTypeRef__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__2__Impl_in_rule__XFunctionTypeRef__Group__232312);\r\n rule__XFunctionTypeRef__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11177:1: ( rule__XFunctionTypeRef__Group__2__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11178:2: rule__XFunctionTypeRef__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__Group__2__Impl_in_rule__XFunctionTypeRef__Group__222436);\n rule__XFunctionTypeRef__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15604:1: ( rule__XFunctionTypeRef__Group_0_1__1__Impl )\r\n // InternalDroneScript.g:15605:2: rule__XFunctionTypeRef__Group_0_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2113:1: ( rule__XFunctionTypeRef__Group_0__2__Impl )\n // InternalCsv.g:2114:2: rule__XFunctionTypeRef__Group_0__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15454:1: ( ( '=>' ) )\r\n // InternalDroneScript.g:15455:1: ( '=>' )\r\n {\r\n // InternalDroneScript.g:15455:1: ( '=>' )\r\n // InternalDroneScript.g:15456:2: '=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \r\n }\r\n match(input,31,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getEqualsSignGreaterThanSignKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15658:1: ( rule__XFunctionTypeRef__Group_0_1_1__1__Impl )\r\n // InternalDroneScript.g:15659:2: rule__XFunctionTypeRef__Group_0_1_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group_0_1_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2167:1: ( rule__XFunctionTypeRef__Group_0_1__1__Impl )\n // InternalCsv.g:2168:2: rule__XFunctionTypeRef__Group_0_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15469:1: ( rule__XFunctionTypeRef__Group__2__Impl )\r\n // InternalDroneScript.g:15470:2: rule__XFunctionTypeRef__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2221:1: ( rule__XFunctionTypeRef__Group_0_1_1__1__Impl )\n // InternalCsv.g:2222:2: rule__XFunctionTypeRef__Group_0_1_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public XtypeGrammarAccess.XFunctionTypeRefElements getXFunctionTypeRefAccess() {\r\n\t\treturn gaXtype.getXFunctionTypeRefAccess();\r\n\t}", "public XtypeGrammarAccess.XFunctionTypeRefElements getXFunctionTypeRefAccess() {\n\t\treturn gaXtype.getXFunctionTypeRefAccess();\n\t}", "public XtypeGrammarAccess.XFunctionTypeRefElements getXFunctionTypeRefAccess() {\n\t\treturn gaXtype.getXFunctionTypeRefAccess();\n\t}", "public final void rule__XFunctionTypeRef__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2032:1: ( rule__XFunctionTypeRef__Group__2__Impl )\n // InternalCsv.g:2033:2: rule__XFunctionTypeRef__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11254:1: ( ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11255:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11255:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11256:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11257:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11257:2: rule__XFunctionTypeRef__ParamTypesAssignment_0_1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_in_rule__XFunctionTypeRef__Group_0__1__Impl22591);\n rule__XFunctionTypeRef__ParamTypesAssignment_0_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_2__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11380:1: ( ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11381:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11381:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11382:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_2_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11383:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11383:2: rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1_in_rule__XFunctionTypeRef__Group_0_2__1__Impl22838);\n rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_2_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2043:1: ( ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) ) )\n // InternalCsv.g:2044:1: ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) )\n {\n // InternalCsv.g:2044:1: ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) )\n // InternalCsv.g:2045:2: ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeAssignment_2()); \n }\n // InternalCsv.g:2046:2: ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 )\n // InternalCsv.g:2046:3: rule__XFunctionTypeRef__ReturnTypeAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__ReturnTypeAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXFeatureCall() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1426:2: ( ( ( rule__XFeatureCall__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1427:1: ( ( rule__XFeatureCall__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1427:1: ( ( rule__XFeatureCall__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1428:1: ( rule__XFeatureCall__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1429:1: ( rule__XFeatureCall__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1429:2: rule__XFeatureCall__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__XFeatureCall__Group__0_in_ruleXFeatureCall2987);\r\n rule__XFeatureCall__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3444:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt40=2;\r\n int LA40_0 = input.LA(1);\r\n\r\n if ( (LA40_0==RULE_ID) ) {\r\n alt40=1;\r\n }\r\n else if ( (LA40_0==31||LA40_0==76) ) {\r\n alt40=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 40, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt40) {\r\n case 1 :\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // InternalDroneScript.g:3446:3: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:3447:3: ( rule__JvmTypeReference__Group_0__0 )\r\n // InternalDroneScript.g:3447:4: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n {\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n // InternalDroneScript.g:3452:3: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXFeatureCall() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1205:2: ( ( ( rule__XFeatureCall__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1206:1: ( ( rule__XFeatureCall__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1206:1: ( ( rule__XFeatureCall__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1207:1: ( rule__XFeatureCall__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1208:1: ( rule__XFeatureCall__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1208:2: rule__XFeatureCall__Group__0\n {\n pushFollow(FOLLOW_rule__XFeatureCall__Group__0_in_ruleXFeatureCall2509);\n rule__XFeatureCall__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXFeatureCall() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1592:2: ( ( ( rule__XFeatureCall__Group__0 ) ) )\r\n // InternalDroneScript.g:1593:2: ( ( rule__XFeatureCall__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1593:2: ( ( rule__XFeatureCall__Group__0 ) )\r\n // InternalDroneScript.g:1594:3: ( rule__XFeatureCall__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1595:3: ( rule__XFeatureCall__Group__0 )\r\n // InternalDroneScript.g:1595:4: rule__XFeatureCall__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFeatureCall__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11188:1: ( ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11189:1: ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11189:1: ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11190:1: ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeAssignment_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11191:1: ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11191:2: rule__XFunctionTypeRef__ReturnTypeAssignment_2\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__ReturnTypeAssignment_2_in_rule__XFunctionTypeRef__Group__2__Impl22463);\n rule__XFunctionTypeRef__ReturnTypeAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleFunctionType() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:767:2: ( ( ( rule__FunctionType__Group__0 ) ) )\r\n // InternalGo.g:768:2: ( ( rule__FunctionType__Group__0 ) )\r\n {\r\n // InternalGo.g:768:2: ( ( rule__FunctionType__Group__0 ) )\r\n // InternalGo.g:769:3: ( rule__FunctionType__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFunctionTypeAccess().getGroup()); \r\n }\r\n // InternalGo.g:770:3: ( rule__FunctionType__Group__0 )\r\n // InternalGo.g:770:4: rule__FunctionType__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__FunctionType__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFunctionTypeAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16007:1: ( ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16008:1: ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16008:1: ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16009:1: ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeAssignment_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16010:1: ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16010:2: rule__XFunctionTypeRef__ReturnTypeAssignment_2\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__ReturnTypeAssignment_2_in_rule__XFunctionTypeRef__Group__2__Impl32339);\r\n rule__XFunctionTypeRef__ReturnTypeAssignment_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeAssignment_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15480:1: ( ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) ) )\r\n // InternalDroneScript.g:15481:1: ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) )\r\n {\r\n // InternalDroneScript.g:15481:1: ( ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 ) )\r\n // InternalDroneScript.g:15482:2: ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeAssignment_2()); \r\n }\r\n // InternalDroneScript.g:15483:2: ( rule__XFunctionTypeRef__ReturnTypeAssignment_2 )\r\n // InternalDroneScript.g:15483:3: rule__XFunctionTypeRef__ReturnTypeAssignment_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFunctionTypeRef__ReturnTypeAssignment_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeAssignment_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__Group_4_1_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13603:1: ( ( ( rule__XFeatureCall__Group_4_1_1_1__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13604:1: ( ( rule__XFeatureCall__Group_4_1_1_1__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13604:1: ( ( rule__XFeatureCall__Group_4_1_1_1__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13605:1: ( rule__XFeatureCall__Group_4_1_1_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getGroup_4_1_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13606:1: ( rule__XFeatureCall__Group_4_1_1_1__0 )*\r\n loop87:\r\n do {\r\n int alt87=2;\r\n int LA87_0 = input.LA(1);\r\n\r\n if ( (LA87_0==84) ) {\r\n alt87=1;\r\n }\r\n\r\n\r\n switch (alt87) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13606:2: rule__XFeatureCall__Group_4_1_1_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__XFeatureCall__Group_4_1_1_1__0_in_rule__XFeatureCall__Group_4_1_1__1__Impl27618);\r\n \t rule__XFeatureCall__Group_4_1_1_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop87;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getGroup_4_1_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2152:1: ( ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 ) ) )\n // InternalCsv.g:2153:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 ) )\n {\n // InternalCsv.g:2153:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 ) )\n // InternalCsv.g:2154:2: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_0()); \n }\n // InternalCsv.g:2155:2: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 )\n // InternalCsv.g:2155:3: rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FunctionType__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:6080:1: ( rule__FunctionType__Group__0__Impl rule__FunctionType__Group__1 )\r\n // InternalGo.g:6081:2: rule__FunctionType__Group__0__Impl rule__FunctionType__Group__1\r\n {\r\n pushFollow(FOLLOW_9);\r\n rule__FunctionType__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__FunctionType__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16138:1: ( ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16139:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16139:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16140:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16141:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16141:2: rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0_in_rule__XFunctionTypeRef__Group_0_1__0__Impl32593);\r\n rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2232:1: ( ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 ) ) )\n // InternalCsv.g:2233:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 ) )\n {\n // InternalCsv.g:2233:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 ) )\n // InternalCsv.g:2234:2: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_1_1()); \n }\n // InternalCsv.g:2235:2: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 )\n // InternalCsv.g:2235:3: rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13104:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13105:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13105:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13106:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getXFeatureCallAction_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13107:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13109:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getXFeatureCallAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16229:1: ( ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16230:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16230:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16231:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16232:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16232:2: rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1\r\n {\r\n pushFollow(FOLLOW_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1_in_rule__XFunctionTypeRef__Group_0_1_1__1__Impl32774);\r\n rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_1_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXMemberFeatureCall() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1042:2: ( ( ( rule__XMemberFeatureCall__Group__0 ) ) )\r\n // InternalDroneScript.g:1043:2: ( ( rule__XMemberFeatureCall__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1043:2: ( ( rule__XMemberFeatureCall__Group__0 ) )\r\n // InternalDroneScript.g:1044:3: ( rule__XMemberFeatureCall__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1045:3: ( rule__XMemberFeatureCall__Group__0 )\r\n // InternalDroneScript.g:1045:4: rule__XMemberFeatureCall__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XMemberFeatureCall__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13222:1: ( ( ( rule__XFeatureCall__Group_4__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13223:1: ( ( rule__XFeatureCall__Group_4__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13223:1: ( ( rule__XFeatureCall__Group_4__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13224:1: ( rule__XFeatureCall__Group_4__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getGroup_4()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13225:1: ( rule__XFeatureCall__Group_4__0 )?\r\n int alt83=2;\r\n alt83 = dfa83.predict(input);\r\n switch (alt83) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13225:2: rule__XFeatureCall__Group_4__0\r\n {\r\n pushFollow(FOLLOW_rule__XFeatureCall__Group_4__0_in_rule__XFeatureCall__Group__4__Impl26871);\r\n rule__XFeatureCall__Group_4__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getGroup_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Reference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2752:1: ( ( () ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2753:1: ( () )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2753:1: ( () )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2754:1: ()\n {\n before(grammarAccess.getReferenceAccess().getReferenceAction_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2755:1: ()\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2757:1: \n {\n }\n\n after(grammarAccess.getReferenceAccess().getReferenceAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:8814:1: ( ( () ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:8815:1: ( () )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:8815:1: ( () )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:8816:1: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getXFeatureCallAction_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:8817:1: ()\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:8819:1: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getXFeatureCallAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__Group_4_1_1_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13624:1: ( rule__XFeatureCall__Group_4_1_1_1__0__Impl rule__XFeatureCall__Group_4_1_1_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13625:2: rule__XFeatureCall__Group_4_1_1_1__0__Impl rule__XFeatureCall__Group_4_1_1_1__1\r\n {\r\n pushFollow(FOLLOW_rule__XFeatureCall__Group_4_1_1_1__0__Impl_in_rule__XFeatureCall__Group_4_1_1_1__027653);\r\n rule__XFeatureCall__Group_4_1_1_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XFeatureCall__Group_4_1_1_1__1_in_rule__XFeatureCall__Group_4_1_1_1__027656);\r\n rule__XFeatureCall__Group_4_1_1_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.82032883", "0.8139726", "0.80920494", "0.7924006", "0.79135984", "0.78810984", "0.78533804", "0.78510374", "0.7813899", "0.7810059", "0.7781683", "0.77732766", "0.7770164", "0.77590674", "0.7757433", "0.7719686", "0.771245", "0.7710019", "0.7698924", "0.76985246", "0.7670759", "0.7652897", "0.76509196", "0.76482916", "0.76473945", "0.76443434", "0.76203245", "0.7601047", "0.7597076", "0.7595911", "0.75648165", "0.7559987", "0.7557907", "0.75461227", "0.7535505", "0.752312", "0.7522357", "0.7496511", "0.74603164", "0.7453845", "0.7380862", "0.73473775", "0.7300236", "0.7238918", "0.7187065", "0.716263", "0.71623105", "0.71546626", "0.7086125", "0.70856476", "0.7014517", "0.69955486", "0.69370663", "0.68678457", "0.6865461", "0.6798265", "0.67705834", "0.6748633", "0.67344683", "0.6714963", "0.6698268", "0.6669662", "0.66676587", "0.66099113", "0.6595456", "0.6586282", "0.65594774", "0.6534851", "0.64859486", "0.64791244", "0.6461145", "0.6457238", "0.63482416", "0.63177854", "0.63177854", "0.63025445", "0.61322147", "0.5959003", "0.5703414", "0.5610805", "0.559284", "0.55855286", "0.558259", "0.5578681", "0.5568031", "0.5515536", "0.5462584", "0.5439225", "0.5420801", "0.5417616", "0.5406144", "0.5401887", "0.52718663", "0.52611005", "0.5245651", "0.51944333", "0.51736766", "0.51633704", "0.5139719", "0.51391727" ]
0.843127
0
$ANTLR end "ruleXFunctionTypeRef" $ANTLR start "entryRuleJvmParameterizedTypeReference" InternalCsv.g:354:1: entryRuleJvmParameterizedTypeReference : ruleJvmParameterizedTypeReference EOF ;
public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException { try { // InternalCsv.g:355:1: ( ruleJvmParameterizedTypeReference EOF ) // InternalCsv.g:356:1: ruleJvmParameterizedTypeReference EOF { if ( state.backtracking==0 ) { before(grammarAccess.getJvmParameterizedTypeReferenceRule()); } pushFollow(FOLLOW_1); ruleJvmParameterizedTypeReference(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmParameterizedTypeReferenceRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2063:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // InternalDroneScript.g:2064:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1933:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1934:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference4060);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference4067); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1620:1: ( ruleJvmParameterizedTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1621:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference3393);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference3400); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmParameterizedTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2620:2: (iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2621:2: iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference6155);\n iv_ruleJvmParameterizedTypeReference=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmParameterizedTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference6165); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmArgumentTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2705:2: (iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2706:2: iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference6342);\n iv_ruleJvmArgumentTypeReference=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmArgumentTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference6352); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2400:1: ( ( ruleJvmParameterizedTypeReference ) | ( ruleXFunctionTypeRef ) )\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==RULE_ID) ) {\n alt22=1;\n }\n else if ( (LA22_0==44||LA22_0==63) ) {\n alt22=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 22, 0, input);\n\n throw nvae;\n }\n switch (alt22) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2402:1: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Alternatives5182);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2408:1: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives5199);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n Token otherlv_3=null;\n Token otherlv_5=null;\n EObject lv_arguments_2_0 = null;\n\n EObject lv_arguments_4_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2631:28: ( ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2634:3: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n\n \t\t\tif (current==null) {\n \t current = createModelElement(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \n }\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleJvmParameterizedTypeReference6213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:2: ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n int alt36=2;\n alt36 = dfa36.predict(input);\n switch (alt36) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>'\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:4: ( '<' )=>otherlv_1= '<'\n {\n otherlv_1=(Token)match(input,56,FOLLOW_56_in_ruleJvmParameterizedTypeReference6234); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0());\n \n }\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2652:2: ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2654:3: lv_arguments_2_0= ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6256);\n lv_arguments_2_0=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"arguments\",\n \t\tlv_arguments_2_0, \n \t\t\"JvmArgumentTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:2: (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )*\n loop35:\n do {\n int alt35=2;\n int LA35_0 = input.LA(1);\n\n if ( (LA35_0==55) ) {\n alt35=1;\n }\n\n\n switch (alt35) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:4: otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t {\n \t otherlv_3=(Token)match(input,55,FOLLOW_55_in_ruleJvmParameterizedTypeReference6269); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0());\n \t \n \t }\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2674:1: ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2676:3: lv_arguments_4_0= ruleJvmArgumentTypeReference\n \t {\n \t if ( state.backtracking==0 ) {\n \t \n \t \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n \t \t \n \t }\n \t pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6290);\n \t lv_arguments_4_0=ruleJvmArgumentTypeReference();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t if (current==null) {\n \t \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t \t }\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"arguments\",\n \t \t\tlv_arguments_4_0, \n \t \t\t\"JvmArgumentTypeReference\");\n \t \t afterParserOrEnumRuleCall();\n \t \t \n \t }\n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop35;\n }\n } while (true);\n\n otherlv_5=(Token)match(input,57,FOLLOW_57_in_ruleJvmParameterizedTypeReference6304); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_5, grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3());\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1849:1: ( ruleJvmTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1850:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3880);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3887); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1988:1: ( ruleJvmTypeReference EOF )\r\n // InternalDroneScript.g:1989:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3897:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3899:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1564:1: ( ruleJvmTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1565:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3273);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3280); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3946:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3948:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3995:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3997:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3961:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3963:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4010:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:4012:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13522:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13524:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_127179);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19061:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19063:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_138528);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_2=null;\n Token otherlv_3=null;\n EObject this_JvmParameterizedTypeReference_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2584:28: ( (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2586:5: this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_ruleJvmTypeReference6066);\n this_JvmParameterizedTypeReference_0=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmParameterizedTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:1: ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n loop34:\n do {\n int alt34=2;\n int LA34_0 = input.LA(1);\n\n if ( (LA34_0==46) ) {\n int LA34_2 = input.LA(2);\n\n if ( (LA34_2==47) ) {\n int LA34_3 = input.LA(3);\n\n if ( (synpred11_InternalJavaJRExpression()) ) {\n alt34=1;\n }\n\n\n }\n\n\n }\n\n\n switch (alt34) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:2: ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:5: ( () otherlv_2= '[' otherlv_3= ']' )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: () otherlv_2= '[' otherlv_3= ']'\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: ()\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2598:5: \n \t {\n \t if ( state.backtracking==0 ) {\n\n \t current = forceCreateModelElementAndSet(\n \t grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_1_0_0(),\n \t current);\n \t \n \t }\n\n \t }\n\n \t otherlv_2=(Token)match(input,46,FOLLOW_46_in_ruleJvmTypeReference6104); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_2, grammarAccess.getJvmTypeReferenceAccess().getLeftSquareBracketKeyword_1_0_1());\n \t \n \t }\n \t otherlv_3=(Token)match(input,47,FOLLOW_47_in_ruleJvmTypeReference6116); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmTypeReferenceAccess().getRightSquareBracketKeyword_1_0_2());\n \t \n \t }\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop34;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13537:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13539:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_127210);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\n try {\n // InternalCsv.g:330:1: ( ruleXFunctionTypeRef EOF )\n // InternalCsv.g:331:1: ruleXFunctionTypeRef EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19289:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19291:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19076:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19078:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_138559);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3882:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3884:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2573:2: (iv_ruleJvmTypeReference= ruleJvmTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2574:2: iv_ruleJvmTypeReference= ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference6009);\n iv_ruleJvmTypeReference=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference6019); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13458:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13460:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_127047);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13473:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13475:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_2_127078);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19338:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19340:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19240:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19242:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19304:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19306:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1801:1: ( ( ruleJvmParameterizedTypeReference ) )\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n {\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n // InternalCsv.g:1803:2: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19353:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19355:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19012:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19013:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19013:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19014:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_138427);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4115:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4117:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12559:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12561:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_125201);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19225:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19227:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12574:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12576:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_125232);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3927:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:3928:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:3928:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3929:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n // InternalCsv.g:3930:3: ( ruleQualifiedName )\n // InternalCsv.g:3931:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17857:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17859:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15238:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n // InternalDroneScript.g:15240:2: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3912:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3913:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3913:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3914:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmWildcardTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2745:2: (iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2746:2: iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference6461);\n iv_ruleJvmWildcardTypeReference=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmWildcardTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference6471); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17872:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17874:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18736:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18738:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13085:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13087:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_126284);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17804:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17806:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_135953);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18997:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18998:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18998:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18999:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_038396);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13070:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13072:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_126253);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17819:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17821:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_135984);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1592:1: ( ruleXFunctionTypeRef EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1593:1: ruleXFunctionTypeRef EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefRule()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_entryRuleXFunctionTypeRef3333);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleXFunctionTypeRef3340); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleXFunctionTypeRef() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2038:1: ( ruleXFunctionTypeRef EOF )\r\n // InternalDroneScript.g:2039:1: ruleXFunctionTypeRef EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13221:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13223:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_126561);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13206:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13208:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_126530);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "List<LightweightTypeReference> getTypeArguments();", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18751:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18753:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_1_4_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3976:1: ( ( ( ruleValidID ) ) )\n // InternalCsv.g:3977:2: ( ( ruleValidID ) )\n {\n // InternalCsv.g:3977:2: ( ( ruleValidID ) )\n // InternalCsv.g:3978:3: ( ruleValidID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \n }\n // InternalCsv.g:3979:3: ( ruleValidID )\n // InternalCsv.g:3980:4: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedArgumentOfParameterizedType_cf927() {\n java.lang.String expected = (\"java.util.List<@\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String>\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n com.squareup.javapoet.ClassName list = com.squareup.javapoet.ClassName.get(java.util.List.class);\n java.lang.String actual = com.squareup.javapoet.ParameterizedTypeName.get(list, type).toString();\n // AssertGenerator replace invocation\n boolean o_annotatedArgumentOfParameterizedType_cf927__10 = // StatementAdderMethod cloned existing statement\n type.isBoxedPrimitive();\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedArgumentOfParameterizedType_cf927__10);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19042:1: ( ( ( ruleQualifiedName ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19043:1: ( ( ruleQualifiedName ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19043:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19044:1: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19045:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19046:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__JvmParameterizedTypeReference__TypeAssignment_038493);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19473:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19475:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15729:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15730:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15730:1: ( ruleJvmParameterizedTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15731:1: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Group_0__0__Impl31793);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18549:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18551:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_137478);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2383:1: ( rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4 )\n // InternalCsv.g:2384:2: rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4\n {\n pushFollow(FOLLOW_34);\n rule__JvmParameterizedTypeReference__Group_1__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13488:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13489:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13489:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13490:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ReturnTypeAssignment_227109);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18564:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18566:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_137509);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:367:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\n // InternalCsv.g:368:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n {\n // InternalCsv.g:368:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n // InternalCsv.g:369:3: ( rule__JvmParameterizedTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n // InternalCsv.g:370:3: ( rule__JvmParameterizedTypeReference__Group__0 )\n // InternalCsv.g:370:4: rule__JvmParameterizedTypeReference__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedArgumentOfParameterizedType_cf919() {\n java.lang.String expected = (\"java.util.List<@\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String>\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n com.squareup.javapoet.ClassName list = com.squareup.javapoet.ClassName.get(java.util.List.class);\n java.lang.String actual = com.squareup.javapoet.ParameterizedTypeName.get(list, type).toString();\n // StatementAdderOnAssert create null value\n java.lang.Object vc_434 = (java.lang.Object)null;\n // AssertGenerator add assertion\n org.junit.Assert.assertNull(vc_434);\n // AssertGenerator replace invocation\n boolean o_annotatedArgumentOfParameterizedType_cf919__12 = // StatementAdderMethod cloned existing statement\n type.equals(vc_434);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedArgumentOfParameterizedType_cf919__12);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19255:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19257:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18898:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18900:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18715:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18717:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_137817);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18700:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18702:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_137786);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19027:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19028:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19028:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19029:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ReturnTypeAssignment_238458);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public abstract ResolvedType transformTypeParameters(ResolvedTypeTransformer transformer);", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1945:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1946:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1946:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1947:1: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1948:1: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1948:2: rule__JvmParameterizedTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0_in_ruleJvmParameterizedTypeReference4093);\r\n rule__JvmParameterizedTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18883:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18885:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1632:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1633:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1633:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1634:1: ( rule__JvmParameterizedTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1635:1: ( rule__JvmParameterizedTypeReference__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1635:2: rule__JvmParameterizedTypeReference__Group__0\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0_in_ruleJvmParameterizedTypeReference3426);\n rule__JvmParameterizedTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13503:1: ( ( ( ruleQualifiedName ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13504:1: ( ( ruleQualifiedName ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13504:1: ( ( ruleQualifiedName ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13505:1: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13506:1: ( ruleQualifiedName )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13507:1: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__JvmParameterizedTypeReference__TypeAssignment_027144);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19458:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19460:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedArgumentOfParameterizedType_cf920() {\n java.lang.String expected = (\"java.util.List<@\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String>\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n com.squareup.javapoet.ClassName list = com.squareup.javapoet.ClassName.get(java.util.List.class);\n java.lang.String actual = com.squareup.javapoet.ParameterizedTypeName.get(list, type).toString();\n // StatementAdderOnAssert create random local variable\n java.lang.Object vc_435 = new java.lang.Object();\n // AssertGenerator replace invocation\n boolean o_annotatedArgumentOfParameterizedType_cf920__12 = // StatementAdderMethod cloned existing statement\n type.equals(vc_435);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedArgumentOfParameterizedType_cf920__12);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19151:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19153:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_138714);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2341:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) ) )\n // InternalCsv.g:2342:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n {\n // InternalCsv.g:2342:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n // InternalCsv.g:2343:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n // InternalCsv.g:2344:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n // InternalCsv.g:2344:3: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAstTypeDefinitionParameter() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:593:1: ( ruleAstTypeDefinitionParameter EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:594:1: ruleAstTypeDefinitionParameter EOF\n {\n before(grammarAccess.getAstTypeDefinitionParameterRule()); \n pushFollow(FOLLOW_ruleAstTypeDefinitionParameter_in_entryRuleAstTypeDefinitionParameter1201);\n ruleAstTypeDefinitionParameter();\n\n state._fsp--;\n\n after(grammarAccess.getAstTypeDefinitionParameterRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstTypeDefinitionParameter1208); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }" ]
[ "0.65613496", "0.64679444", "0.6463912", "0.60776734", "0.6068892", "0.6043495", "0.6007004", "0.59906685", "0.59381473", "0.5872611", "0.58132833", "0.5769494", "0.5629335", "0.54965883", "0.5490037", "0.54619265", "0.5454052", "0.5454028", "0.5437802", "0.5422955", "0.5381012", "0.53225344", "0.5308392", "0.5302866", "0.5283616", "0.52787024", "0.52643", "0.5259353", "0.5251747", "0.52147317", "0.5192846", "0.51846385", "0.51702744", "0.51549935", "0.5132469", "0.5130435", "0.51062846", "0.5100909", "0.5090347", "0.5089592", "0.50827456", "0.5071366", "0.50689906", "0.5051107", "0.50367707", "0.503037", "0.4996848", "0.49333203", "0.49290907", "0.49252322", "0.49074486", "0.49037725", "0.48987448", "0.48745582", "0.4872848", "0.48486802", "0.48278204", "0.48204073", "0.48177373", "0.48065028", "0.48020542", "0.48014793", "0.47998226", "0.47848797", "0.47750103", "0.47728506", "0.476157", "0.4755772", "0.47523648", "0.47237128", "0.471531", "0.47115925", "0.47097567", "0.4693906", "0.46935448", "0.4691216", "0.46643457", "0.4660628", "0.46540424", "0.46483684", "0.46458513", "0.46174043", "0.460206", "0.46018934", "0.45992595", "0.45960706", "0.45951402", "0.45663285", "0.4559217", "0.45463586", "0.45287138", "0.45282057", "0.452125", "0.44825026", "0.447699", "0.44752952", "0.44636336", "0.44636285", "0.44492096", "0.44278616" ]
0.69598573
0
$ANTLR end "entryRuleJvmParameterizedTypeReference" $ANTLR start "ruleJvmParameterizedTypeReference" InternalCsv.g:363:1: ruleJvmParameterizedTypeReference : ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) ;
public final void ruleJvmParameterizedTypeReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:367:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) ) // InternalCsv.g:368:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) { // InternalCsv.g:368:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) // InternalCsv.g:369:3: ( rule__JvmParameterizedTypeReference__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); } // InternalCsv.g:370:3: ( rule__JvmParameterizedTypeReference__Group__0 ) // InternalCsv.g:370:4: rule__JvmParameterizedTypeReference__Group__0 { pushFollow(FOLLOW_2); rule__JvmParameterizedTypeReference__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1801:1: ( ( ruleJvmParameterizedTypeReference ) )\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n {\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n // InternalCsv.g:1803:2: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:355:1: ( ruleJvmParameterizedTypeReference EOF )\n // InternalCsv.g:356:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15238:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n // InternalDroneScript.g:15240:2: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1945:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1946:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1946:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1947:1: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1948:1: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1948:2: rule__JvmParameterizedTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0_in_ruleJvmParameterizedTypeReference4093);\r\n rule__JvmParameterizedTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1632:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1633:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1633:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1634:1: ( rule__JvmParameterizedTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1635:1: ( rule__JvmParameterizedTypeReference__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1635:2: rule__JvmParameterizedTypeReference__Group__0\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0_in_ruleJvmParameterizedTypeReference3426);\n rule__JvmParameterizedTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2075:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\r\n // InternalDroneScript.g:2076:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2076:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n // InternalDroneScript.g:2077:3: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2078:3: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n // InternalDroneScript.g:2078:4: rule__JvmParameterizedTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15729:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15730:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15730:1: ( ruleJvmParameterizedTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15731:1: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Group_0__0__Impl31793);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2383:1: ( rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4 )\n // InternalCsv.g:2384:2: rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4\n {\n pushFollow(FOLLOW_34);\n rule__JvmParameterizedTypeReference__Group_1__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2302:1: ( rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1 )\n // InternalCsv.g:2303:2: rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2329:1: ( rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2 )\n // InternalCsv.g:2330:2: rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2063:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // InternalDroneScript.g:2064:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2356:1: ( rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3 )\n // InternalCsv.g:2357:2: rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11441:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11442:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11442:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11443:1: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11444:1: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\n int alt71=2;\n alt71 = dfa71.predict(input);\n switch (alt71) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11444:2: rule__JvmParameterizedTypeReference__Group_1__0\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__0_in_rule__JvmParameterizedTypeReference__Group__1__Impl22959);\n rule__JvmParameterizedTypeReference__Group_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2248:1: ( rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1 )\n // InternalCsv.g:2249:2: rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1\n {\n pushFollow(FOLLOW_31);\n rule__JvmParameterizedTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11462:1: ( rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11463:2: rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__0__Impl_in_rule__JvmParameterizedTypeReference__Group_1__022994);\n rule__JvmParameterizedTypeReference__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__1_in_rule__JvmParameterizedTypeReference__Group_1__022997);\n rule__JvmParameterizedTypeReference__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16290:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16291:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16291:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16292:1: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16293:1: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\r\n int alt104=2;\r\n alt104 = dfa104.predict(input);\r\n switch (alt104) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16293:2: rule__JvmParameterizedTypeReference__Group_1__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__0_in_rule__JvmParameterizedTypeReference__Group__1__Impl32895);\r\n rule__JvmParameterizedTypeReference__Group_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16311:1: ( rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16312:2: rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__0__Impl_in_rule__JvmParameterizedTypeReference__Group_1__032930);\r\n rule__JvmParameterizedTypeReference__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__1_in_rule__JvmParameterizedTypeReference__Group_1__032933);\r\n rule__JvmParameterizedTypeReference__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2286:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? ) )\n // InternalCsv.g:2287:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\n {\n // InternalCsv.g:2287:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\n // InternalCsv.g:2288:2: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \n }\n // InternalCsv.g:2289:2: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\n int alt18=2;\n int LA18_0 = input.LA(1);\n\n if ( (LA18_0==31) ) {\n alt18=1;\n }\n switch (alt18) {\n case 1 :\n // InternalCsv.g:2289:3: rule__JvmParameterizedTypeReference__Group_1__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2518:1: ( rule__JvmParameterizedTypeReference__Group_1_4__1__Impl rule__JvmParameterizedTypeReference__Group_1_4__2 )\n // InternalCsv.g:2519:2: rule__JvmParameterizedTypeReference__Group_1_4__1__Impl rule__JvmParameterizedTypeReference__Group_1_4__2\n {\n pushFollow(FOLLOW_31);\n rule__JvmParameterizedTypeReference__Group_1_4__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11493:1: ( rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11494:2: rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__1__Impl_in_rule__JvmParameterizedTypeReference__Group_1__123058);\n rule__JvmParameterizedTypeReference__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__2_in_rule__JvmParameterizedTypeReference__Group_1__123061);\n rule__JvmParameterizedTypeReference__Group_1__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1933:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1934:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference4060);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference4067); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15820:1: ( rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4 )\r\n // InternalDroneScript.g:15821:2: rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__JvmParameterizedTypeReference__Group_1__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1__4();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16342:1: ( rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16343:2: rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__1__Impl_in_rule__JvmParameterizedTypeReference__Group_1__132994);\r\n rule__JvmParameterizedTypeReference__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__2_in_rule__JvmParameterizedTypeReference__Group_1__132997);\r\n rule__JvmParameterizedTypeReference__Group_1__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16371:1: ( rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16372:2: rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__2__Impl_in_rule__JvmParameterizedTypeReference__Group_1__233054);\r\n rule__JvmParameterizedTypeReference__Group_1__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__3_in_rule__JvmParameterizedTypeReference__Group_1__233057);\r\n rule__JvmParameterizedTypeReference__Group_1__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15739:1: ( rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1 )\r\n // InternalDroneScript.g:15740:2: rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1\r\n {\r\n pushFollow(FOLLOW_61);\r\n rule__JvmParameterizedTypeReference__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11522:1: ( rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11523:2: rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__2__Impl_in_rule__JvmParameterizedTypeReference__Group_1__223118);\n rule__JvmParameterizedTypeReference__Group_1__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__3_in_rule__JvmParameterizedTypeReference__Group_1__223121);\n rule__JvmParameterizedTypeReference__Group_1__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2491:1: ( rule__JvmParameterizedTypeReference__Group_1_4__0__Impl rule__JvmParameterizedTypeReference__Group_1_4__1 )\n // InternalCsv.g:2492:2: rule__JvmParameterizedTypeReference__Group_1_4__0__Impl rule__JvmParameterizedTypeReference__Group_1_4__1\n {\n pushFollow(FOLLOW_5);\n rule__JvmParameterizedTypeReference__Group_1_4__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16383:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16384:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16384:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16385:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16386:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\r\n loop105:\r\n do {\r\n int alt105=2;\r\n int LA105_0 = input.LA(1);\r\n\r\n if ( (LA105_0==84) ) {\r\n alt105=1;\r\n }\r\n\r\n\r\n switch (alt105) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16386:2: rule__JvmParameterizedTypeReference__Group_1_2__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__0_in_rule__JvmParameterizedTypeReference__Group_1__2__Impl33084);\r\n \t rule__JvmParameterizedTypeReference__Group_1_2__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop105;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1620:1: ( ruleJvmParameterizedTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1621:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference3393);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference3400); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11534:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11535:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11535:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11536:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11537:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n loop72:\n do {\n int alt72=2;\n int LA72_0 = input.LA(1);\n\n if ( (LA72_0==39) ) {\n alt72=1;\n }\n\n\n switch (alt72) {\n \tcase 1 :\n \t // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11537:2: rule__JvmParameterizedTypeReference__Group_1_2__0\n \t {\n \t pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__0_in_rule__JvmParameterizedTypeReference__Group_1__2__Impl23148);\n \t rule__JvmParameterizedTypeReference__Group_1_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop72;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15793:1: ( rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3 )\r\n // InternalDroneScript.g:15794:2: rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3\r\n {\r\n pushFollow(FOLLOW_62);\r\n rule__JvmParameterizedTypeReference__Group_1__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16250:1: ( rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16251:2: rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0__Impl_in_rule__JvmParameterizedTypeReference__Group__032808);\r\n rule__JvmParameterizedTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__1_in_rule__JvmParameterizedTypeReference__Group__032811);\r\n rule__JvmParameterizedTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2437:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1 )\n // InternalCsv.g:2438:2: rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2368:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* ) )\n // InternalCsv.g:2369:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n {\n // InternalCsv.g:2369:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n // InternalCsv.g:2370:2: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n // InternalCsv.g:2371:2: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n loop19:\n do {\n int alt19=2;\n int LA19_0 = input.LA(1);\n\n if ( (LA19_0==30) ) {\n alt19=1;\n }\n\n\n switch (alt19) {\n \tcase 1 :\n \t // InternalCsv.g:2371:3: rule__JvmParameterizedTypeReference__Group_1_2__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__JvmParameterizedTypeReference__Group_1_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop19;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11551:1: ( rule__JvmParameterizedTypeReference__Group_1__3__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11552:2: rule__JvmParameterizedTypeReference__Group_1__3__Impl\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__3__Impl_in_rule__JvmParameterizedTypeReference__Group_1__323179);\n rule__JvmParameterizedTypeReference__Group_1__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15766:1: ( rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2 )\r\n // InternalDroneScript.g:15767:2: rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2\r\n {\r\n pushFollow(FOLLOW_62);\r\n rule__JvmParameterizedTypeReference__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11401:1: ( rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11402:2: rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0__Impl_in_rule__JvmParameterizedTypeReference__Group__022872);\n rule__JvmParameterizedTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__1_in_rule__JvmParameterizedTypeReference__Group__022875);\n rule__JvmParameterizedTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16400:1: ( rule__JvmParameterizedTypeReference__Group_1__3__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16401:2: rule__JvmParameterizedTypeReference__Group_1__3__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__3__Impl_in_rule__JvmParameterizedTypeReference__Group_1__333115);\r\n rule__JvmParameterizedTypeReference__Group_1__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15685:1: ( rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1 )\r\n // InternalDroneScript.g:15686:2: rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_32);\r\n rule__JvmParameterizedTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15723:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? ) )\r\n // InternalDroneScript.g:15724:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\r\n {\r\n // InternalDroneScript.g:15724:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\r\n // InternalDroneScript.g:15725:2: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \r\n }\r\n // InternalDroneScript.g:15726:2: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\r\n int alt120=2;\r\n alt120 = dfa120.predict(input);\r\n switch (alt120) {\r\n case 1 :\r\n // InternalDroneScript.g:15726:3: rule__JvmParameterizedTypeReference__Group_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16438:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16439:2: rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__0__Impl_in_rule__JvmParameterizedTypeReference__Group_1_2__033182);\r\n rule__JvmParameterizedTypeReference__Group_1_2__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__1_in_rule__JvmParameterizedTypeReference__Group_1_2__033185);\r\n rule__JvmParameterizedTypeReference__Group_1_2__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11589:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11590:2: rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__0__Impl_in_rule__JvmParameterizedTypeReference__Group_1_2__023246);\n rule__JvmParameterizedTypeReference__Group_1_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__1_in_rule__JvmParameterizedTypeReference__Group_1_2__023249);\n rule__JvmParameterizedTypeReference__Group_1_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2707:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__3 )\n // InternalCsv.g:2708:2: rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__3\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2680:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__1__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__2 )\n // InternalCsv.g:2681:2: rule__JvmParameterizedTypeReference__Group_1_4_2__1__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__2\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1_4_2__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15955:1: ( rule__JvmParameterizedTypeReference__Group_1_4__1__Impl rule__JvmParameterizedTypeReference__Group_1_4__2 )\r\n // InternalDroneScript.g:15956:2: rule__JvmParameterizedTypeReference__Group_1_4__1__Impl rule__JvmParameterizedTypeReference__Group_1_4__2\r\n {\r\n pushFollow(FOLLOW_32);\r\n rule__JvmParameterizedTypeReference__Group_1_4__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15928:1: ( rule__JvmParameterizedTypeReference__Group_1_4__0__Impl rule__JvmParameterizedTypeReference__Group_1_4__1 )\r\n // InternalDroneScript.g:15929:2: rule__JvmParameterizedTypeReference__Group_1_4__0__Impl rule__JvmParameterizedTypeReference__Group_1_4__1\r\n {\r\n pushFollow(FOLLOW_6);\r\n rule__JvmParameterizedTypeReference__Group_1_4__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_2=null;\n Token otherlv_3=null;\n EObject this_JvmParameterizedTypeReference_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2584:28: ( (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2586:5: this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_ruleJvmTypeReference6066);\n this_JvmParameterizedTypeReference_0=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmParameterizedTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:1: ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n loop34:\n do {\n int alt34=2;\n int LA34_0 = input.LA(1);\n\n if ( (LA34_0==46) ) {\n int LA34_2 = input.LA(2);\n\n if ( (LA34_2==47) ) {\n int LA34_3 = input.LA(3);\n\n if ( (synpred11_InternalJavaJRExpression()) ) {\n alt34=1;\n }\n\n\n }\n\n\n }\n\n\n switch (alt34) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:2: ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:5: ( () otherlv_2= '[' otherlv_3= ']' )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: () otherlv_2= '[' otherlv_3= ']'\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: ()\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2598:5: \n \t {\n \t if ( state.backtracking==0 ) {\n\n \t current = forceCreateModelElementAndSet(\n \t grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_1_0_0(),\n \t current);\n \t \n \t }\n\n \t }\n\n \t otherlv_2=(Token)match(input,46,FOLLOW_46_in_ruleJvmTypeReference6104); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_2, grammarAccess.getJvmTypeReferenceAccess().getLeftSquareBracketKeyword_1_0_1());\n \t \n \t }\n \t otherlv_3=(Token)match(input,47,FOLLOW_47_in_ruleJvmTypeReference6116); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmTypeReferenceAccess().getRightSquareBracketKeyword_1_0_2());\n \t \n \t }\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop34;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2599:1: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_0_0__1 )\n // InternalCsv.g:2600:2: rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_0_0__1\n {\n pushFollow(FOLLOW_34);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15874:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1 )\r\n // InternalDroneScript.g:15875:2: rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1\r\n {\r\n pushFollow(FOLLOW_61);\r\n rule__JvmParameterizedTypeReference__Group_1_2__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_2__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2761:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2_2__1 )\n // InternalCsv.g:2762:2: rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2_2__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2653:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__1 )\n // InternalCsv.g:2654:2: rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2275:1: ( rule__JvmParameterizedTypeReference__Group__1__Impl )\n // InternalCsv.g:2276:2: rule__JvmParameterizedTypeReference__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmParameterizedTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2620:2: (iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2621:2: iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference6155);\n iv_ruleJvmParameterizedTypeReference=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmParameterizedTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference6165); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2719:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* ) )\n // InternalCsv.g:2720:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* )\n {\n // InternalCsv.g:2720:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* )\n // InternalCsv.g:2721:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2_2()); \n }\n // InternalCsv.g:2722:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )*\n loop22:\n do {\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==30) ) {\n alt22=1;\n }\n\n\n switch (alt22) {\n \tcase 1 :\n \t // InternalCsv.g:2722:3: rule__JvmParameterizedTypeReference__Group_1_4_2_2__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__JvmParameterizedTypeReference__Group_1_4_2_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop22;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11601:1: ( ( ',' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11602:1: ( ',' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11602:1: ( ',' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11603:1: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \n }\n match(input,39,FOLLOW_39_in_rule__JvmParameterizedTypeReference__Group_1_2__0__Impl23277); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16036:1: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_0_0__1 )\r\n // InternalDroneScript.g:16037:2: rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_0_0__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2421:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* ) )\n // InternalCsv.g:2422:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* )\n {\n // InternalCsv.g:2422:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* )\n // InternalCsv.g:2423:2: ( rule__JvmParameterizedTypeReference__Group_1_4__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4()); \n }\n // InternalCsv.g:2424:2: ( rule__JvmParameterizedTypeReference__Group_1_4__0 )*\n loop20:\n do {\n int alt20=2;\n int LA20_0 = input.LA(1);\n\n if ( (LA20_0==33) ) {\n alt20=1;\n }\n\n\n switch (alt20) {\n \tcase 1 :\n \t // InternalCsv.g:2424:3: rule__JvmParameterizedTypeReference__Group_1_4__0\n \t {\n \t pushFollow(FOLLOW_35);\n \t rule__JvmParameterizedTypeReference__Group_1_4__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop20;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11430:1: ( rule__JvmParameterizedTypeReference__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11431:2: rule__JvmParameterizedTypeReference__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__1__Impl_in_rule__JvmParameterizedTypeReference__Group__122932);\n rule__JvmParameterizedTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15858:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* ) )\r\n // InternalDroneScript.g:15859:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* )\r\n {\r\n // InternalDroneScript.g:15859:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* )\r\n // InternalDroneScript.g:15860:2: ( rule__JvmParameterizedTypeReference__Group_1_4__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4()); \r\n }\r\n // InternalDroneScript.g:15861:2: ( rule__JvmParameterizedTypeReference__Group_1_4__0 )*\r\n loop122:\r\n do {\r\n int alt122=2;\r\n int LA122_0 = input.LA(1);\r\n\r\n if ( (LA122_0==43) ) {\r\n int LA122_2 = input.LA(2);\r\n\r\n if ( (LA122_2==RULE_ID) ) {\r\n int LA122_3 = input.LA(3);\r\n\r\n if ( (synpred171_InternalDroneScript()) ) {\r\n alt122=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt122) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:15861:3: rule__JvmParameterizedTypeReference__Group_1_4__0\r\n \t {\r\n \t pushFollow(FOLLOW_106);\r\n \t rule__JvmParameterizedTypeReference__Group_1_4__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop122;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2410:1: ( rule__JvmParameterizedTypeReference__Group_1__4__Impl )\n // InternalCsv.g:2411:2: rule__JvmParameterizedTypeReference__Group_1__4__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16090:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__1 )\r\n // InternalDroneScript.g:16091:2: rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__1\r\n {\r\n pushFollow(FOLLOW_61);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16117:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__1__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__2 )\r\n // InternalDroneScript.g:16118:2: rule__JvmParameterizedTypeReference__Group_1_4_2__1__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__2\r\n {\r\n pushFollow(FOLLOW_62);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16144:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__3 )\r\n // InternalDroneScript.g:16145:2: rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__3\r\n {\r\n pushFollow(FOLLOW_62);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2556:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? ) )\n // InternalCsv.g:2557:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? )\n {\n // InternalCsv.g:2557:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? )\n // InternalCsv.g:2558:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2()); \n }\n // InternalCsv.g:2559:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )?\n int alt21=2;\n int LA21_0 = input.LA(1);\n\n if ( (LA21_0==31) ) {\n alt21=1;\n }\n switch (alt21) {\n case 1 :\n // InternalCsv.g:2559:3: rule__JvmParameterizedTypeReference__Group_1_4_2__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16279:1: ( rule__JvmParameterizedTypeReference__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16280:2: rule__JvmParameterizedTypeReference__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__1__Impl_in_rule__JvmParameterizedTypeReference__Group__132868);\r\n rule__JvmParameterizedTypeReference__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15805:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* ) )\r\n // InternalDroneScript.g:15806:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\r\n {\r\n // InternalDroneScript.g:15806:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\r\n // InternalDroneScript.g:15807:2: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \r\n }\r\n // InternalDroneScript.g:15808:2: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\r\n loop121:\r\n do {\r\n int alt121=2;\r\n int LA121_0 = input.LA(1);\r\n\r\n if ( (LA121_0==53) ) {\r\n alt121=1;\r\n }\r\n\r\n\r\n switch (alt121) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:15808:3: rule__JvmParameterizedTypeReference__Group_1_2__0\r\n \t {\r\n \t pushFollow(FOLLOW_10);\r\n \t rule__JvmParameterizedTypeReference__Group_1_2__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop121;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16450:1: ( ( ',' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16451:1: ( ',' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16451:1: ( ',' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16452:1: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \r\n }\r\n match(input,84,FOLLOW_84_in_rule__JvmParameterizedTypeReference__Group_1_2__0__Impl33213); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2_2__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16198:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2_2__1 )\r\n // InternalDroneScript.g:16199:2: rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2_2__1\r\n {\r\n pushFollow(FOLLOW_61);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2_2__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2341:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) ) )\n // InternalCsv.g:2342:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n {\n // InternalCsv.g:2342:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n // InternalCsv.g:2343:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n // InternalCsv.g:2344:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n // InternalCsv.g:2344:3: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15712:1: ( rule__JvmParameterizedTypeReference__Group__1__Impl )\r\n // InternalDroneScript.g:15713:2: rule__JvmParameterizedTypeReference__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2583:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) ) )\n // InternalCsv.g:2584:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) )\n {\n // InternalCsv.g:2584:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) )\n // InternalCsv.g:2585:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0_0()); \n }\n // InternalCsv.g:2586:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 )\n // InternalCsv.g:2586:3: rule__JvmParameterizedTypeReference__Group_1_4_0_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2503:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) ) )\n // InternalCsv.g:2504:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) )\n {\n // InternalCsv.g:2504:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) )\n // InternalCsv.g:2505:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0()); \n }\n // InternalCsv.g:2506:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 )\n // InternalCsv.g:2506:3: rule__JvmParameterizedTypeReference__Group_1_4_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15847:1: ( rule__JvmParameterizedTypeReference__Group_1__4__Impl )\r\n // InternalDroneScript.g:15848:2: rule__JvmParameterizedTypeReference__Group_1__4__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1__4__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15993:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? ) )\r\n // InternalDroneScript.g:15994:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? )\r\n {\r\n // InternalDroneScript.g:15994:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? )\r\n // InternalDroneScript.g:15995:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2()); \r\n }\r\n // InternalDroneScript.g:15996:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )?\r\n int alt123=2;\r\n alt123 = dfa123.predict(input);\r\n switch (alt123) {\r\n case 1 :\r\n // InternalDroneScript.g:15996:3: rule__JvmParameterizedTypeReference__Group_1_4_2__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16020:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) ) )\r\n // InternalDroneScript.g:16021:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) )\r\n {\r\n // InternalDroneScript.g:16021:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) )\r\n // InternalDroneScript.g:16022:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0_0()); \r\n }\r\n // InternalDroneScript.g:16023:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 )\r\n // InternalDroneScript.g:16023:3: rule__JvmParameterizedTypeReference__Group_1_4_0_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11474:1: ( ( ( '<' ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11475:1: ( ( '<' ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11475:1: ( ( '<' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11476:1: ( '<' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11477:1: ( '<' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11478:2: '<'\n {\n match(input,20,FOLLOW_20_in_rule__JvmParameterizedTypeReference__Group_1__0__Impl23026); if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11620:1: ( rule__JvmParameterizedTypeReference__Group_1_2__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11621:2: rule__JvmParameterizedTypeReference__Group_1_2__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__1__Impl_in_rule__JvmParameterizedTypeReference__Group_1_2__123308);\n rule__JvmParameterizedTypeReference__Group_1_2__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2637:1: ( ( '.' ) )\n // InternalCsv.g:2638:1: ( '.' )\n {\n // InternalCsv.g:2638:1: ( '.' )\n // InternalCsv.g:2639:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getFullStopKeyword_1_4_0_0_1()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getFullStopKeyword_1_4_0_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2449:1: ( ( ',' ) )\n // InternalCsv.g:2450:1: ( ',' )\n {\n // InternalCsv.g:2450:1: ( ',' )\n // InternalCsv.g:2451:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16156:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* ) )\r\n // InternalDroneScript.g:16157:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* )\r\n {\r\n // InternalDroneScript.g:16157:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* )\r\n // InternalDroneScript.g:16158:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2_2()); \r\n }\r\n // InternalDroneScript.g:16159:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )*\r\n loop124:\r\n do {\r\n int alt124=2;\r\n int LA124_0 = input.LA(1);\r\n\r\n if ( (LA124_0==53) ) {\r\n alt124=1;\r\n }\r\n\r\n\r\n switch (alt124) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:16159:3: rule__JvmParameterizedTypeReference__Group_1_4_2_2__0\r\n \t {\r\n \t pushFollow(FOLLOW_10);\r\n \t rule__JvmParameterizedTypeReference__Group_1_4_2_2__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop124;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16469:1: ( rule__JvmParameterizedTypeReference__Group_1_2__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16470:2: rule__JvmParameterizedTypeReference__Group_1_2__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__1__Impl_in_rule__JvmParameterizedTypeReference__Group_1_2__133244);\r\n rule__JvmParameterizedTypeReference__Group_1_2__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2734:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl )\n // InternalCsv.g:2735:2: rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16323:1: ( ( ( '<' ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16324:1: ( ( '<' ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16324:1: ( ( '<' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16325:1: ( '<' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16326:1: ( '<' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16327:2: '<'\r\n {\r\n match(input,23,FOLLOW_23_in_rule__JvmParameterizedTypeReference__Group_1__0__Impl32962); if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11562:1: ( ( '>' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11563:1: ( '>' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11563:1: ( '>' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11564:1: '>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n match(input,19,FOLLOW_19_in_rule__JvmParameterizedTypeReference__Group_1__3__Impl23207); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11505:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11506:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11506:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11507:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11508:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11508:2: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1_in_rule__JvmParameterizedTypeReference__Group_1__1__Impl23088);\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15940:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) ) )\r\n // InternalDroneScript.g:15941:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) )\r\n {\r\n // InternalDroneScript.g:15941:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) )\r\n // InternalDroneScript.g:15942:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0()); \r\n }\r\n // InternalDroneScript.g:15943:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 )\r\n // InternalDroneScript.g:15943:3: rule__JvmParameterizedTypeReference__Group_1_4_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16171:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl )\r\n // InternalDroneScript.g:16172:2: rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2464:1: ( rule__JvmParameterizedTypeReference__Group_1_2__1__Impl )\n // InternalCsv.g:2465:2: rule__JvmParameterizedTypeReference__Group_1_2__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_2__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15982:1: ( rule__JvmParameterizedTypeReference__Group_1_4__2__Impl )\r\n // InternalDroneScript.g:15983:2: rule__JvmParameterizedTypeReference__Group_1_4__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_4__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2545:1: ( rule__JvmParameterizedTypeReference__Group_1_4__2__Impl )\n // InternalCsv.g:2546:2: rule__JvmParameterizedTypeReference__Group_1_4__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11413:1: ( ( ( rule__JvmParameterizedTypeReference__TypeAssignment_0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11414:1: ( ( rule__JvmParameterizedTypeReference__TypeAssignment_0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11414:1: ( ( rule__JvmParameterizedTypeReference__TypeAssignment_0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11415:1: ( rule__JvmParameterizedTypeReference__TypeAssignment_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeAssignment_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11416:1: ( rule__JvmParameterizedTypeReference__TypeAssignment_0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11416:2: rule__JvmParameterizedTypeReference__TypeAssignment_0\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__TypeAssignment_0_in_rule__JvmParameterizedTypeReference__Group__0__Impl22902);\n rule__JvmParameterizedTypeReference__TypeAssignment_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeAssignment_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15886:1: ( ( ',' ) )\r\n // InternalDroneScript.g:15887:1: ( ',' )\r\n {\r\n // InternalDroneScript.g:15887:1: ( ',' )\r\n // InternalDroneScript.g:15888:2: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \r\n }\r\n match(input,53,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:417:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n {\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n // InternalCsv.g:419:3: ( rule__JvmWildcardTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n // InternalCsv.g:420:3: ( rule__JvmWildcardTypeReference__Group__0 )\n // InternalCsv.g:420:4: rule__JvmWildcardTypeReference__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15901:1: ( rule__JvmParameterizedTypeReference__Group_1_2__1__Impl )\r\n // InternalDroneScript.g:15902:2: rule__JvmParameterizedTypeReference__Group_1_2__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1_2__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16354:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16355:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16355:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16356:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16357:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16357:2: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1_in_rule__JvmParameterizedTypeReference__Group_1__1__Impl33024);\r\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16411:1: ( ( '>' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16412:1: ( '>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16412:1: ( '>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16413:1: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n match(input,22,FOLLOW_22_in_rule__JvmParameterizedTypeReference__Group_1__3__Impl33143); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2854:1: ( ( '?' ) )\n // InternalCsv.g:2855:1: ( '?' )\n {\n // InternalCsv.g:2855:1: ( '?' )\n // InternalCsv.g:2856:2: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,34,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16262:1: ( ( ( rule__JvmParameterizedTypeReference__TypeAssignment_0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16263:1: ( ( rule__JvmParameterizedTypeReference__TypeAssignment_0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16263:1: ( ( rule__JvmParameterizedTypeReference__TypeAssignment_0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16264:1: ( rule__JvmParameterizedTypeReference__TypeAssignment_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeAssignment_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16265:1: ( rule__JvmParameterizedTypeReference__TypeAssignment_0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16265:2: rule__JvmParameterizedTypeReference__TypeAssignment_0\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__TypeAssignment_0_in_rule__JvmParameterizedTypeReference__Group__0__Impl32838);\r\n rule__JvmParameterizedTypeReference__TypeAssignment_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeAssignment_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.8023651", "0.76439047", "0.76127076", "0.75856006", "0.7543372", "0.748982", "0.74619144", "0.7411318", "0.7219164", "0.7209299", "0.7156747", "0.71515685", "0.71351045", "0.7093502", "0.70556605", "0.7051695", "0.70449775", "0.70317185", "0.7029804", "0.6984967", "0.69806963", "0.6973347", "0.69574714", "0.6904511", "0.68831635", "0.68775594", "0.68596417", "0.68578225", "0.6851035", "0.68227714", "0.6794755", "0.6774067", "0.6765638", "0.6764654", "0.67609715", "0.67552865", "0.6755177", "0.6749507", "0.6744183", "0.6719042", "0.67005646", "0.66981417", "0.6675764", "0.6673945", "0.66459143", "0.6597539", "0.6586364", "0.65260786", "0.65121996", "0.65055066", "0.64959013", "0.64753276", "0.64596534", "0.6457226", "0.64508945", "0.6441829", "0.64414907", "0.6431163", "0.640494", "0.6400571", "0.6399278", "0.63854986", "0.6376104", "0.63659817", "0.6363847", "0.6337349", "0.63357526", "0.6313151", "0.6307314", "0.6305884", "0.6297679", "0.62774944", "0.62708104", "0.6203436", "0.62014866", "0.61904913", "0.61518574", "0.61329764", "0.61262107", "0.61105156", "0.6101255", "0.6088744", "0.6084059", "0.60838914", "0.60709697", "0.6062923", "0.6057627", "0.6055853", "0.6036739", "0.6033362", "0.60249037", "0.60079604", "0.5997359", "0.5986122", "0.5958363", "0.5943015", "0.5931919", "0.5907128", "0.58868647", "0.588659" ]
0.788091
1
$ANTLR end "ruleJvmParameterizedTypeReference" $ANTLR start "entryRuleJvmArgumentTypeReference" InternalCsv.g:379:1: entryRuleJvmArgumentTypeReference : ruleJvmArgumentTypeReference EOF ;
public final void entryRuleJvmArgumentTypeReference() throws RecognitionException { try { // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF ) // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF { if ( state.backtracking==0 ) { before(grammarAccess.getJvmArgumentTypeReferenceRule()); } pushFollow(FOLLOW_1); ruleJvmArgumentTypeReference(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmArgumentTypeReferenceRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmArgumentTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2705:2: (iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2706:2: iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference6342);\n iv_ruleJvmArgumentTypeReference=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmArgumentTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference6352); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:355:1: ( ruleJvmParameterizedTypeReference EOF )\n // InternalCsv.g:356:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3946:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3948:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2063:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // InternalDroneScript.g:2064:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19289:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19291:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19061:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19063:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_138528);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13522:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13524:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_127179);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3961:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3963:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13537:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13539:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_127210);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19076:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19078:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_138559);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19304:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19306:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3995:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3997:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1933:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1934:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference4060);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference4067); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4010:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:4012:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19353:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19355:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19338:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19340:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1988:1: ( ruleJvmTypeReference EOF )\r\n // InternalDroneScript.g:1989:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17857:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17859:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18736:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18738:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17872:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17874:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1620:1: ( ruleJvmParameterizedTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1621:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference3393);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference3400); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13221:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13223:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_126561);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13206:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13208:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_126530);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12559:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12561:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_125201);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18751:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18753:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1849:1: ( ruleJvmTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1850:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3880);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3887); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18898:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18900:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12574:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12576:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_125232);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1564:1: ( ruleJvmTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1565:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3273);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3280); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17804:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17806:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_135953);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13085:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13087:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_126284);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18883:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18885:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18715:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18717:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_137817);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17819:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17821:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_135984);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13070:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13072:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_126253);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18700:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18702:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_137786);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18549:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18551:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_137478);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18564:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18566:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_137509);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmParameterizedTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2620:2: (iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2621:2: iv_ruleJvmParameterizedTypeReference= ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference6155);\n iv_ruleJvmParameterizedTypeReference=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmParameterizedTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference6165); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject ruleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n Token otherlv_3=null;\n Token otherlv_5=null;\n EObject lv_arguments_2_0 = null;\n\n EObject lv_arguments_4_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2631:28: ( ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2634:3: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n\n \t\t\tif (current==null) {\n \t current = createModelElement(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \n }\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleJvmParameterizedTypeReference6213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:2: ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n int alt36=2;\n alt36 = dfa36.predict(input);\n switch (alt36) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>'\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:4: ( '<' )=>otherlv_1= '<'\n {\n otherlv_1=(Token)match(input,56,FOLLOW_56_in_ruleJvmParameterizedTypeReference6234); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0());\n \n }\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2652:2: ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2654:3: lv_arguments_2_0= ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6256);\n lv_arguments_2_0=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"arguments\",\n \t\tlv_arguments_2_0, \n \t\t\"JvmArgumentTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:2: (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )*\n loop35:\n do {\n int alt35=2;\n int LA35_0 = input.LA(1);\n\n if ( (LA35_0==55) ) {\n alt35=1;\n }\n\n\n switch (alt35) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:4: otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t {\n \t otherlv_3=(Token)match(input,55,FOLLOW_55_in_ruleJvmParameterizedTypeReference6269); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0());\n \t \n \t }\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2674:1: ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2676:3: lv_arguments_4_0= ruleJvmArgumentTypeReference\n \t {\n \t if ( state.backtracking==0 ) {\n \t \n \t \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n \t \t \n \t }\n \t pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6290);\n \t lv_arguments_4_0=ruleJvmArgumentTypeReference();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t if (current==null) {\n \t \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t \t }\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"arguments\",\n \t \t\tlv_arguments_4_0, \n \t \t\t\"JvmArgumentTypeReference\");\n \t \t afterParserOrEnumRuleCall();\n \t \t \n \t }\n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop35;\n }\n } while (true);\n\n otherlv_5=(Token)match(input,57,FOLLOW_57_in_ruleJvmParameterizedTypeReference6304); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_5, grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3());\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1973:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1975:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:2: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference4153);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2573:2: (iv_ruleJvmTypeReference= ruleJvmTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2574:2: iv_ruleJvmTypeReference= ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference6009);\n iv_ruleJvmTypeReference=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference6019); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4115:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4117:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19473:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19475:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_2=null;\n Token otherlv_3=null;\n EObject this_JvmParameterizedTypeReference_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2584:28: ( (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2586:5: this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_ruleJvmTypeReference6066);\n this_JvmParameterizedTypeReference_0=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmParameterizedTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:1: ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n loop34:\n do {\n int alt34=2;\n int LA34_0 = input.LA(1);\n\n if ( (LA34_0==46) ) {\n int LA34_2 = input.LA(2);\n\n if ( (LA34_2==47) ) {\n int LA34_3 = input.LA(3);\n\n if ( (synpred11_InternalJavaJRExpression()) ) {\n alt34=1;\n }\n\n\n }\n\n\n }\n\n\n switch (alt34) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:2: ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:5: ( () otherlv_2= '[' otherlv_3= ']' )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: () otherlv_2= '[' otherlv_3= ']'\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: ()\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2598:5: \n \t {\n \t if ( state.backtracking==0 ) {\n\n \t current = forceCreateModelElementAndSet(\n \t grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_1_0_0(),\n \t current);\n \t \n \t }\n\n \t }\n\n \t otherlv_2=(Token)match(input,46,FOLLOW_46_in_ruleJvmTypeReference6104); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_2, grammarAccess.getJvmTypeReferenceAccess().getLeftSquareBracketKeyword_1_0_1());\n \t \n \t }\n \t otherlv_3=(Token)match(input,47,FOLLOW_47_in_ruleJvmTypeReference6116); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmTypeReferenceAccess().getRightSquareBracketKeyword_1_0_2());\n \t \n \t }\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop34;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "List<LightweightTypeReference> getTypeArguments();", "public final void typeArguments() throws RecognitionException {\n int typeArguments_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"typeArguments\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(461, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 57) ) { return ; }\n // Java.g:462:5: ( '<' typeArgument ( ',' typeArgument )* '>' )\n dbg.enterAlt(1);\n\n // Java.g:462:9: '<' typeArgument ( ',' typeArgument )* '>'\n {\n dbg.location(462,9);\n match(input,40,FOLLOW_40_in_typeArguments2231); if (state.failed) return ;\n dbg.location(462,13);\n pushFollow(FOLLOW_typeArgument_in_typeArguments2233);\n typeArgument();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(462,26);\n // Java.g:462:26: ( ',' typeArgument )*\n try { dbg.enterSubRule(74);\n\n loop74:\n do {\n int alt74=2;\n try { dbg.enterDecision(74);\n\n int LA74_0 = input.LA(1);\n\n if ( (LA74_0==41) ) {\n alt74=1;\n }\n\n\n } finally {dbg.exitDecision(74);}\n\n switch (alt74) {\n \tcase 1 :\n \t dbg.enterAlt(1);\n\n \t // Java.g:462:27: ',' typeArgument\n \t {\n \t dbg.location(462,27);\n \t match(input,41,FOLLOW_41_in_typeArguments2236); if (state.failed) return ;\n \t dbg.location(462,31);\n \t pushFollow(FOLLOW_typeArgument_in_typeArguments2238);\n \t typeArgument();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop74;\n }\n } while (true);\n } finally {dbg.exitSubRule(74);}\n\n dbg.location(462,46);\n match(input,42,FOLLOW_42_in_typeArguments2242); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 57, typeArguments_StartIndex); }\n }\n dbg.location(463, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"typeArguments\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2400:1: ( ( ruleJvmParameterizedTypeReference ) | ( ruleXFunctionTypeRef ) )\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==RULE_ID) ) {\n alt22=1;\n }\n else if ( (LA22_0==44||LA22_0==63) ) {\n alt22=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 22, 0, input);\n\n throw nvae;\n }\n switch (alt22) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2402:1: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Alternatives5182);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2408:1: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives5199);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19443:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19445:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19458:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19460:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1801:1: ( ( ruleJvmParameterizedTypeReference ) )\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n {\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n // InternalCsv.g:1803:2: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15238:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n // InternalDroneScript.g:15240:2: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedArgumentOfParameterizedType_cf927() {\n java.lang.String expected = (\"java.util.List<@\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String>\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n com.squareup.javapoet.ClassName list = com.squareup.javapoet.ClassName.get(java.util.List.class);\n java.lang.String actual = com.squareup.javapoet.ParameterizedTypeName.get(list, type).toString();\n // AssertGenerator replace invocation\n boolean o_annotatedArgumentOfParameterizedType_cf927__10 = // StatementAdderMethod cloned existing statement\n type.isBoxedPrimitive();\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedArgumentOfParameterizedType_cf927__10);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16354:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16355:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16355:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16356:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16357:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16357:2: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1_in_rule__JvmParameterizedTypeReference__Group_1__1__Impl33024);\r\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmWildcardTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2745:2: (iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2746:2: iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference6461);\n iv_ruleJvmWildcardTypeReference=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmWildcardTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference6471); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19136:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19138:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_138683);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11505:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11506:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11506:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11507:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11508:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11508:2: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1_in_rule__JvmParameterizedTypeReference__Group_1__1__Impl23088);\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13597:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13599:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_127334);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2341:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) ) )\n // InternalCsv.g:2342:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n {\n // InternalCsv.g:2342:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\n // InternalCsv.g:2343:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n // InternalCsv.g:2344:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\n // InternalCsv.g:2344:3: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3897:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3899:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FullJvmFormalParameter__ParameterTypeAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18706:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:18707:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:18707:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:18708:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFullJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFullJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleAstAnnotationArgument() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2397:1: ( ruleAstAnnotationArgument EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2398:1: ruleAstAnnotationArgument EOF\n {\n before(grammarAccess.getAstAnnotationArgumentRule()); \n pushFollow(FOLLOW_ruleAstAnnotationArgument_in_entryRuleAstAnnotationArgument5054);\n ruleAstAnnotationArgument();\n\n state._fsp--;\n\n after(grammarAccess.getAstAnnotationArgumentRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstAnnotationArgument5061); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19428:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19430:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmFormalParameter__ParameterTypeAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18676:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:18677:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:18677:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:18678:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19151:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19153:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_138714);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedArgumentOfParameterizedType_cf919() {\n java.lang.String expected = (\"java.util.List<@\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String>\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n com.squareup.javapoet.ClassName list = com.squareup.javapoet.ClassName.get(java.util.List.class);\n java.lang.String actual = com.squareup.javapoet.ParameterizedTypeName.get(list, type).toString();\n // StatementAdderOnAssert create null value\n java.lang.Object vc_434 = (java.lang.Object)null;\n // AssertGenerator add assertion\n org.junit.Assert.assertNull(vc_434);\n // AssertGenerator replace invocation\n boolean o_annotatedArgumentOfParameterizedType_cf919__12 = // StatementAdderMethod cloned existing statement\n type.equals(vc_434);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedArgumentOfParameterizedType_cf919__12);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15778:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) ) )\r\n // InternalDroneScript.g:15779:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\r\n {\r\n // InternalDroneScript.g:15779:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 ) )\r\n // InternalDroneScript.g:15780:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \r\n }\r\n // InternalDroneScript.g:15781:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1 )\r\n // InternalDroneScript.g:15781:3: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16480:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16481:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16481:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16482:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16483:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16483:2: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1_in_rule__JvmParameterizedTypeReference__Group_1_2__1__Impl33271);\r\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11631:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11632:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11632:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11633:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11634:1: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11634:2: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1_in_rule__JvmParameterizedTypeReference__Group_1_2__1__Impl23335);\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public Map<String, Object> processArgs(String[] args)\n {\n for (int ii=0; ii<args.length; ii++) {\n String token = args[ii];\n char firstC = token.charAt(0);\n if (firstC != '-' && firstC != '+') {\n return null;\n }\n // look up the token\n token = token.substring(1);\n String type = _meta.get(token);\n if (type == null) {\n return null;\n }\n\n // most types expect a following token - check\n Object argument = null;\n if (StringArg.equals(type) || ListArg.equals(type) || IntegerArg.equals(type)) {\n if (args.length < ii+2) {\n return null;\n }\n if (firstC != '-') {\n // these types all expect a - in front of the token\n return null;\n }\n argument = args[ii+1];\n ii++;\n }\n if (DoubleListArg.equals(type)) {\n if (args.length < ii+3) {\n return null;\n }\n if (firstC != '-') {\n return null;\n }\n String[] a2 = new String[2];\n a2[0] = args[ii+1];\n a2[1] = args[ii+2];\n argument = a2;\n ii += 2;\n }\n\n Object old;\n if (StringArg.equals(type)) {\n old = _result.put(token, argument);\n if (old != null) {\n return null;\n }\n }\n else if (ListArg.equals(type)) {\n List<String> oldList = (List<String>)_result.get(token);\n if (oldList == null) {\n oldList = new ArrayList<String>();\n _result.put(token, oldList);\n }\n oldList.add((String)argument);\n }\n else if (DoubleListArg.equals(type)) {\n List<String[]> oldList = (List<String[]>)_result.get(token);\n if (oldList == null) {\n oldList = new ArrayList<String[]>();\n _result.put(token, oldList);\n }\n oldList.add((String[])argument);\n }\n else if (IntegerArg.equals(type)) {\n Integer val = Integer.parseInt((String)argument);\n old = _result.put(token, val);\n if (old != null) {\n return null;\n }\n }\n else if (FlagArgFalse.equals(type) || FlagArgTrue.equals(type)) {\n // note that we always have a default value for flag args\n Boolean val = (firstC == '-');\n _result.put(token, val);\n }\n }\n\n return _result;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19240:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19242:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmFormalParameter__ParameterTypeAssignment_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13021:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13022:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13022:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13023:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmFormalParameter__ParameterTypeAssignment_026152);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void synpred117_Java_fragment() throws RecognitionException {\n // Java.g:496:9: ( ( nonWildcardTypeArguments )? ( 'this' | 'super' ) arguments ';' )\n dbg.enterAlt(1);\n\n // Java.g:496:9: ( nonWildcardTypeArguments )? ( 'this' | 'super' ) arguments ';'\n {\n dbg.location(496,9);\n // Java.g:496:9: ( nonWildcardTypeArguments )?\n int alt184=2;\n try { dbg.enterSubRule(184);\n try { dbg.enterDecision(184);\n\n int LA184_0 = input.LA(1);\n\n if ( (LA184_0==40) ) {\n alt184=1;\n }\n } finally {dbg.exitDecision(184);}\n\n switch (alt184) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:0:0: nonWildcardTypeArguments\n {\n dbg.location(496,9);\n pushFollow(FOLLOW_nonWildcardTypeArguments_in_synpred117_Java2480);\n nonWildcardTypeArguments();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(184);}\n\n dbg.location(496,35);\n if ( input.LA(1)==65||input.LA(1)==69 ) {\n input.consume();\n state.errorRecovery=false;state.failed=false;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n MismatchedSetException mse = new MismatchedSetException(null,input);\n dbg.recognitionException(mse);\n throw mse;\n }\n\n dbg.location(496,54);\n pushFollow(FOLLOW_arguments_in_synpred117_Java2491);\n arguments();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(496,64);\n match(input,26,FOLLOW_26_in_synpred117_Java2493); if (state.failed) return ;\n\n }\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2000:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2002:3: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2003:3: ( rule__JvmTypeReference__Alternatives )\r\n // InternalDroneScript.g:2003:4: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15729:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15730:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15730:1: ( ruleJvmParameterizedTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15731:1: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Group_0__0__Impl31793);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19121:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19123:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_138652);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13582:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13584:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_127303);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2475:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) ) )\n // InternalCsv.g:2476:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\n {\n // InternalCsv.g:2476:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\n // InternalCsv.g:2477:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \n }\n // InternalCsv.g:2478:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\n // InternalCsv.g:2478:3: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15912:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) ) )\r\n // InternalDroneScript.g:15913:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\r\n {\r\n // InternalDroneScript.g:15913:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\r\n // InternalDroneScript.g:15914:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \r\n }\r\n // InternalDroneScript.g:15915:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\r\n // InternalDroneScript.g:15915:3: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.7845962", "0.7779534", "0.7743714", "0.7321342", "0.7050936", "0.6893736", "0.6846555", "0.6804835", "0.6781808", "0.6766543", "0.673331", "0.6693799", "0.6682533", "0.6680824", "0.6644987", "0.6627325", "0.659124", "0.6582359", "0.6537036", "0.6500599", "0.6487455", "0.6471847", "0.64553505", "0.63898486", "0.6383577", "0.6364739", "0.63312495", "0.6302218", "0.6296375", "0.6291364", "0.6286651", "0.62802607", "0.6279197", "0.6266063", "0.62566835", "0.62509716", "0.6221052", "0.6190978", "0.61893624", "0.61829567", "0.6177111", "0.6159949", "0.6155204", "0.6145108", "0.6136303", "0.6125438", "0.61101526", "0.608669", "0.6082657", "0.6020693", "0.5961572", "0.5919083", "0.5912415", "0.59010637", "0.58669573", "0.5852614", "0.5658538", "0.56408006", "0.5589487", "0.5560973", "0.55599076", "0.55518186", "0.5531457", "0.54704183", "0.54479206", "0.5407908", "0.5325079", "0.5292143", "0.52177954", "0.5206891", "0.5196443", "0.51724565", "0.51470494", "0.5126469", "0.5113996", "0.5106484", "0.50939983", "0.50816166", "0.50523627", "0.50482285", "0.5039509", "0.50388426", "0.50352114", "0.5013452", "0.50103635", "0.5006269", "0.50055546", "0.49308252", "0.4909996", "0.49025226", "0.48871934", "0.48787126", "0.48694357", "0.48399416", "0.48129606", "0.47827595", "0.47569597", "0.47557074", "0.4744474", "0.47430024" ]
0.8087911
0
$ANTLR end "entryRuleJvmArgumentTypeReference" $ANTLR start "ruleJvmArgumentTypeReference" InternalCsv.g:388:1: ruleJvmArgumentTypeReference : ( ( rule__JvmArgumentTypeReference__Alternatives ) ) ;
public final void ruleJvmArgumentTypeReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) ) // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) ) { // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) ) // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); } // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives ) // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives { pushFollow(FOLLOW_2); rule__JvmArgumentTypeReference__Alternatives(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1973:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1975:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:2: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference4153);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmArgumentTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2705:2: (iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2706:2: iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference6342);\n iv_ruleJvmArgumentTypeReference=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmArgumentTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference6352); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2000:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2002:3: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2003:3: ( rule__JvmTypeReference__Alternatives )\r\n // InternalDroneScript.g:2003:4: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1861:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1863:1: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:1: ( rule__JvmTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:2: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3913);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1576:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1578:1: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:1: ( rule__JvmTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:2: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3306);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17857:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17859:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17872:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17874:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18736:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18738:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13221:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13223:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_126561);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18751:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18753:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1988:1: ( ruleJvmTypeReference EOF )\r\n // InternalDroneScript.g:1989:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19289:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19291:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13206:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13208:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_126530);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2400:1: ( ( ruleJvmParameterizedTypeReference ) | ( ruleXFunctionTypeRef ) )\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==RULE_ID) ) {\n alt22=1;\n }\n else if ( (LA22_0==44||LA22_0==63) ) {\n alt22=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 22, 0, input);\n\n throw nvae;\n }\n switch (alt22) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2402:1: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Alternatives5182);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2408:1: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives5199);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13522:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13524:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_127179);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13085:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13087:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_126284);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13537:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13539:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_127210);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3946:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3948:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18898:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18900:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12559:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12561:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_125201);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12574:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12576:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_125232);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19304:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19306:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13070:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13072:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_126253);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3961:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3963:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18883:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18885:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19061:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19063:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_138528);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19353:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19355:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19076:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19078:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_138559);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18715:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18717:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_137817);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18549:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18551:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_137478);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19473:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19475:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17819:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17821:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_135984);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19338:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19340:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17804:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17806:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_135953);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4115:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4117:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18700:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18702:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_137786);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18564:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18566:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_137509);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3995:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3997:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4010:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:4012:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1849:1: ( ruleJvmTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1850:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3880);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3887); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1564:1: ( ruleJvmTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1565:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3273);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3280); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19458:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19460:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19443:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19445:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19151:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19153:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_138714);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19428:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19430:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:355:1: ( ruleJvmParameterizedTypeReference EOF )\n // InternalCsv.g:356:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "List<LightweightTypeReference> getTypeArguments();", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13597:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13599:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_127334);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2573:2: (iv_ruleJvmTypeReference= ruleJvmTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2574:2: iv_ruleJvmTypeReference= ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference6009);\n iv_ruleJvmTypeReference=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference6019); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2063:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // InternalDroneScript.g:2064:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19136:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19138:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_138683);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19240:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19242:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3897:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3899:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3088:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt33=2;\r\n int LA33_0 = input.LA(1);\r\n\r\n if ( (LA33_0==RULE_ID) ) {\r\n alt33=1;\r\n }\r\n else if ( (LA33_0==26||LA33_0==106) ) {\r\n alt33=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 33, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt33) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3090:1: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:1: ( rule__JvmTypeReference__Group_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:2: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0__0_in_rule__JvmTypeReference__Alternatives6706);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3096:1: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives6724);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n Token otherlv_3=null;\n Token otherlv_5=null;\n EObject lv_arguments_2_0 = null;\n\n EObject lv_arguments_4_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2631:28: ( ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2634:3: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n\n \t\t\tif (current==null) {\n \t current = createModelElement(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \n }\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleJvmParameterizedTypeReference6213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:2: ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n int alt36=2;\n alt36 = dfa36.predict(input);\n switch (alt36) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>'\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:4: ( '<' )=>otherlv_1= '<'\n {\n otherlv_1=(Token)match(input,56,FOLLOW_56_in_ruleJvmParameterizedTypeReference6234); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0());\n \n }\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2652:2: ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2654:3: lv_arguments_2_0= ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6256);\n lv_arguments_2_0=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"arguments\",\n \t\tlv_arguments_2_0, \n \t\t\"JvmArgumentTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:2: (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )*\n loop35:\n do {\n int alt35=2;\n int LA35_0 = input.LA(1);\n\n if ( (LA35_0==55) ) {\n alt35=1;\n }\n\n\n switch (alt35) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:4: otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t {\n \t otherlv_3=(Token)match(input,55,FOLLOW_55_in_ruleJvmParameterizedTypeReference6269); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0());\n \t \n \t }\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2674:1: ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2676:3: lv_arguments_4_0= ruleJvmArgumentTypeReference\n \t {\n \t if ( state.backtracking==0 ) {\n \t \n \t \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n \t \t \n \t }\n \t pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6290);\n \t lv_arguments_4_0=ruleJvmArgumentTypeReference();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t if (current==null) {\n \t \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t \t }\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"arguments\",\n \t \t\tlv_arguments_4_0, \n \t \t\t\"JvmArgumentTypeReference\");\n \t \t afterParserOrEnumRuleCall();\n \t \t \n \t }\n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop35;\n }\n } while (true);\n\n otherlv_5=(Token)match(input,57,FOLLOW_57_in_ruleJvmParameterizedTypeReference6304); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_5, grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3());\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3444:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt40=2;\r\n int LA40_0 = input.LA(1);\r\n\r\n if ( (LA40_0==RULE_ID) ) {\r\n alt40=1;\r\n }\r\n else if ( (LA40_0==31||LA40_0==76) ) {\r\n alt40=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 40, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt40) {\r\n case 1 :\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // InternalDroneScript.g:3446:3: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:3447:3: ( rule__JvmTypeReference__Group_0__0 )\r\n // InternalDroneScript.g:3447:4: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n {\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n // InternalDroneScript.g:3452:3: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19225:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19227:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_2=null;\n Token otherlv_3=null;\n EObject this_JvmParameterizedTypeReference_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2584:28: ( (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2586:5: this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_ruleJvmTypeReference6066);\n this_JvmParameterizedTypeReference_0=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmParameterizedTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:1: ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n loop34:\n do {\n int alt34=2;\n int LA34_0 = input.LA(1);\n\n if ( (LA34_0==46) ) {\n int LA34_2 = input.LA(2);\n\n if ( (LA34_2==47) ) {\n int LA34_3 = input.LA(3);\n\n if ( (synpred11_InternalJavaJRExpression()) ) {\n alt34=1;\n }\n\n\n }\n\n\n }\n\n\n switch (alt34) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:2: ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:5: ( () otherlv_2= '[' otherlv_3= ']' )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: () otherlv_2= '[' otherlv_3= ']'\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: ()\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2598:5: \n \t {\n \t if ( state.backtracking==0 ) {\n\n \t current = forceCreateModelElementAndSet(\n \t grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_1_0_0(),\n \t current);\n \t \n \t }\n\n \t }\n\n \t otherlv_2=(Token)match(input,46,FOLLOW_46_in_ruleJvmTypeReference6104); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_2, grammarAccess.getJvmTypeReferenceAccess().getLeftSquareBracketKeyword_1_0_1());\n \t \n \t }\n \t otherlv_3=(Token)match(input,47,FOLLOW_47_in_ruleJvmTypeReference6116); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmTypeReferenceAccess().getRightSquareBracketKeyword_1_0_2());\n \t \n \t }\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop34;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13473:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13475:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_2_127078);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__TypeAssignment_1_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17547:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:17548:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:17548:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:17549:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13582:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13584:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_127303);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13458:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13460:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_127047);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmFormalParameter__ParameterTypeAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18676:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:18677:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:18677:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:18678:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19121:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19123:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_138652);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3882:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3884:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19012:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19013:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19013:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19014:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_138427);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16317:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // InternalDroneScript.g:16319:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:16320:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt125=2;\r\n int LA125_0 = input.LA(1);\r\n\r\n if ( (LA125_0==45||LA125_0==49) ) {\r\n alt125=1;\r\n }\r\n switch (alt125) {\r\n case 1 :\r\n // InternalDroneScript.g:16320:3: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1933:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1934:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference4060);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference4067); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1620:1: ( ruleJvmParameterizedTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1621:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference3393);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference3400); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2880:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // InternalCsv.g:2882:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // InternalCsv.g:2883:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==35||LA23_0==37) ) {\n alt23=1;\n }\n switch (alt23) {\n case 1 :\n // InternalCsv.g:2883:3: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmFormalParameter__ParameterTypeAssignment_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13021:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13022:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13022:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13023:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmFormalParameter__ParameterTypeAssignment_026152);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FullJvmFormalParameter__ParameterTypeAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18706:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:18707:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:18707:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:18708:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFullJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFullJvmFormalParameterAccess().getParameterTypeJvmTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11725:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11727:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==31||LA73_0==65) ) {\n alt73=1;\n }\n switch (alt73) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:2: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl23519);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16574:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16576:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt106=2;\r\n int LA106_0 = input.LA(1);\r\n\r\n if ( (LA106_0==39||LA106_0==126) ) {\r\n alt106=1;\r\n }\r\n switch (alt106) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:2: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl33455);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15238:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n // InternalDroneScript.g:15240:2: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void typeArguments() throws RecognitionException {\n int typeArguments_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"typeArguments\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(461, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 57) ) { return ; }\n // Java.g:462:5: ( '<' typeArgument ( ',' typeArgument )* '>' )\n dbg.enterAlt(1);\n\n // Java.g:462:9: '<' typeArgument ( ',' typeArgument )* '>'\n {\n dbg.location(462,9);\n match(input,40,FOLLOW_40_in_typeArguments2231); if (state.failed) return ;\n dbg.location(462,13);\n pushFollow(FOLLOW_typeArgument_in_typeArguments2233);\n typeArgument();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(462,26);\n // Java.g:462:26: ( ',' typeArgument )*\n try { dbg.enterSubRule(74);\n\n loop74:\n do {\n int alt74=2;\n try { dbg.enterDecision(74);\n\n int LA74_0 = input.LA(1);\n\n if ( (LA74_0==41) ) {\n alt74=1;\n }\n\n\n } finally {dbg.exitDecision(74);}\n\n switch (alt74) {\n \tcase 1 :\n \t dbg.enterAlt(1);\n\n \t // Java.g:462:27: ',' typeArgument\n \t {\n \t dbg.location(462,27);\n \t match(input,41,FOLLOW_41_in_typeArguments2236); if (state.failed) return ;\n \t dbg.location(462,31);\n \t pushFollow(FOLLOW_typeArgument_in_typeArguments2238);\n \t typeArgument();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop74;\n }\n } while (true);\n } finally {dbg.exitSubRule(74);}\n\n dbg.location(462,46);\n match(input,42,FOLLOW_42_in_typeArguments2242); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 57, typeArguments_StartIndex); }\n }\n dbg.location(463, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"typeArguments\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18997:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18998:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18998:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18999:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_038396);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19255:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19257:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public XtypeGrammarAccess.JvmArgumentTypeReferenceElements getJvmArgumentTypeReferenceAccess() {\r\n\t\treturn gaXtype.getJvmArgumentTypeReferenceAccess();\r\n\t}" ]
[ "0.8214573", "0.8196461", "0.8173405", "0.80324227", "0.79226595", "0.7832522", "0.78007364", "0.7728295", "0.7705125", "0.7643483", "0.7598914", "0.7495017", "0.73061544", "0.72836524", "0.7069534", "0.7020846", "0.6974792", "0.67770886", "0.6773697", "0.67658675", "0.67597675", "0.67450345", "0.67387134", "0.6733886", "0.67311007", "0.6724137", "0.6717588", "0.6710003", "0.6708078", "0.67014724", "0.6677983", "0.66500664", "0.6647238", "0.66225797", "0.66205686", "0.66189694", "0.6601186", "0.6573569", "0.6556446", "0.6533785", "0.65272933", "0.6520362", "0.65137774", "0.6492065", "0.649013", "0.6478501", "0.647798", "0.64637953", "0.6447128", "0.6443497", "0.6443081", "0.6428371", "0.6372447", "0.6312605", "0.62560016", "0.6225481", "0.6201721", "0.60396564", "0.6007991", "0.58698654", "0.584627", "0.57607335", "0.57551354", "0.57478", "0.5694371", "0.56901544", "0.56880236", "0.56761545", "0.5629489", "0.5608597", "0.5599036", "0.5586053", "0.55324966", "0.5527845", "0.5488411", "0.54853594", "0.54291195", "0.53989035", "0.53826386", "0.5357149", "0.5342212", "0.53339356", "0.53141445", "0.5287693", "0.52617264", "0.5252846", "0.52524674", "0.5231775", "0.5201861", "0.51517826", "0.5114722", "0.50794524", "0.50721", "0.50718576", "0.50714344", "0.50706434", "0.5057885", "0.50540316", "0.5012421", "0.50035006" ]
0.85144395
0
$ANTLR end "ruleJvmArgumentTypeReference" $ANTLR start "entryRuleJvmWildcardTypeReference" InternalCsv.g:404:1: entryRuleJvmWildcardTypeReference : ruleJvmWildcardTypeReference EOF ;
public final void entryRuleJvmWildcardTypeReference() throws RecognitionException { try { // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF ) // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF { if ( state.backtracking==0 ) { before(grammarAccess.getJvmWildcardTypeReferenceRule()); } pushFollow(FOLLOW_1); ruleJvmWildcardTypeReference(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmWildcardTypeReferenceRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmWildcardTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2745:2: (iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2746:2: iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference6461);\n iv_ruleJvmWildcardTypeReference=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmWildcardTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference6471); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmArgumentTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2705:2: (iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2706:2: iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference6342);\n iv_ruleJvmArgumentTypeReference=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmArgumentTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference6352); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\n try {\n // InternalCsv.g:555:1: ( ruleQualifiedNameWithWildcard EOF )\n // InternalCsv.g:556:1: ruleQualifiedNameWithWildcard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:355:1: ( ruleJvmParameterizedTypeReference EOF )\n // InternalCsv.g:356:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:417:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n {\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n // InternalCsv.g:419:3: ( rule__JvmWildcardTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n // InternalCsv.g:420:3: ( rule__JvmWildcardTypeReference__Group__0 )\n // InternalCsv.g:420:4: rule__JvmWildcardTypeReference__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1988:1: ( ruleJvmTypeReference EOF )\r\n // InternalDroneScript.g:1989:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1849:1: ( ruleJvmTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1850:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3880);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3887); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3946:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3948:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2125:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\r\n // InternalDroneScript.g:2126:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2126:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n // InternalDroneScript.g:2127:3: ( rule__JvmWildcardTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2128:3: ( rule__JvmWildcardTypeReference__Group__0 )\r\n // InternalDroneScript.g:2128:4: rule__JvmWildcardTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1564:1: ( ruleJvmTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1565:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3273);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3280); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13522:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13524:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_127179);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19289:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19291:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19061:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19063:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_138528);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2854:1: ( ( '?' ) )\n // InternalCsv.g:2855:1: ( '?' )\n {\n // InternalCsv.g:2855:1: ( '?' )\n // InternalCsv.g:2856:2: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,34,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2063:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // InternalDroneScript.g:2064:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3961:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3963:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void nonWildcardTypeArguments() throws RecognitionException {\n int nonWildcardTypeArguments_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"nonWildcardTypeArguments\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(886, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 132) ) { return ; }\n // Java.g:887:5: ( '<' typeList '>' )\n dbg.enterAlt(1);\n\n // Java.g:887:9: '<' typeList '>'\n {\n dbg.location(887,9);\n match(input,40,FOLLOW_40_in_nonWildcardTypeArguments5576); if (state.failed) return ;\n dbg.location(887,13);\n pushFollow(FOLLOW_typeList_in_nonWildcardTypeArguments5578);\n typeList();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(887,22);\n match(input,42,FOLLOW_42_in_nonWildcardTypeArguments5580); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 132, nonWildcardTypeArguments_StartIndex); }\n }\n dbg.location(888, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"nonWildcardTypeArguments\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1688:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1689:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1689:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1690:1: ( rule__JvmWildcardTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1691:1: ( rule__JvmWildcardTypeReference__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1691:2: rule__JvmWildcardTypeReference__Group__0\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0_in_ruleJvmWildcardTypeReference3546);\n rule__JvmWildcardTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13537:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13539:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_127210);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17857:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17859:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16544:1: ( ( '?' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16545:1: ( '?' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16545:1: ( '?' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16546:1: '?'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n match(input,125,FOLLOW_125_in_rule__JvmWildcardTypeReference__Group__1__Impl33397); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18736:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18738:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19076:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19078:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_138559);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16291:1: ( ( '?' ) )\r\n // InternalDroneScript.g:16292:1: ( '?' )\r\n {\r\n // InternalDroneScript.g:16292:1: ( '?' )\r\n // InternalDroneScript.g:16293:2: '?'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n match(input,93,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2001:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2002:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2002:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2003:1: ( rule__JvmWildcardTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2004:1: ( rule__JvmWildcardTypeReference__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2004:2: rule__JvmWildcardTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0_in_ruleJvmWildcardTypeReference4213);\r\n rule__JvmWildcardTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16513:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16514:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16514:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16515:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16516:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16518:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1933:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1934:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference4060);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference4067); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12559:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12561:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_125201);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19304:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19306:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17872:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17874:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11695:1: ( ( '?' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11696:1: ( '?' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11696:1: ( '?' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11697:1: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,64,FOLLOW_64_in_rule__JvmWildcardTypeReference__Group__1__Impl23461); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11683:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11684:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1__Impl_in_rule__JvmWildcardTypeReference__Group__123430);\n rule__JvmWildcardTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2_in_rule__JvmWildcardTypeReference__Group__123433);\n rule__JvmWildcardTypeReference__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2238:1: ( ruleQualifiedNameWithWildcard EOF )\r\n // InternalDroneScript.g:2239:1: ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3995:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3997:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2842:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\n // InternalCsv.g:2843:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\n {\n pushFollow(FOLLOW_36);\n rule__JvmWildcardTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12574:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12576:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_125232);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18751:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18753:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n EObject lv_constraints_2_0 = null;\n\n EObject lv_constraints_3_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2756:28: ( ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2758:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,26,FOLLOW_26_in_ruleJvmWildcardTypeReference6517); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:1: ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n int alt38=3;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==58) ) {\n alt38=1;\n }\n else if ( (LA38_0==59) ) {\n alt38=2;\n }\n switch (alt38) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2769:3: lv_constraints_2_0= ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_ruleJvmWildcardTypeReference6539);\n lv_constraints_2_0=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_2_0, \n \t\t\"JvmUpperBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2788:3: lv_constraints_3_0= ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_ruleJvmWildcardTypeReference6566);\n lv_constraints_3_0=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_3_0, \n \t\t\"JvmLowerBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11664:1: ( ( () ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11665:1: ( () )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11665:1: ( () )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11666:1: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11667:1: ()\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11669:1: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17804:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17806:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_135953);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3486:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\r\n int alt42=2;\r\n int LA42_0 = input.LA(1);\r\n\r\n if ( (LA42_0==45) ) {\r\n alt42=1;\r\n }\r\n else if ( (LA42_0==49) ) {\r\n alt42=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt42) {\r\n case 1 :\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n // InternalDroneScript.g:3488:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n // InternalDroneScript.g:3489:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n // InternalDroneScript.g:3489:4: rule__JvmWildcardTypeReference__Group_2_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n {\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n // InternalDroneScript.g:3494:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n // InternalDroneScript.g:3495:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n // InternalDroneScript.g:3495:4: rule__JvmWildcardTypeReference__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4010:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:4012:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13085:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13087:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_126284);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1620:1: ( ruleJvmParameterizedTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1621:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference3393);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference3400); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:802:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==35) ) {\n alt8=1;\n }\n else if ( (LA8_0==37) ) {\n alt8=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n {\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n // InternalCsv.g:804:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n // InternalCsv.g:805:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n // InternalCsv.g:805:4: rule__JvmWildcardTypeReference__Group_2_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n {\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n // InternalCsv.g:810:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n // InternalCsv.g:811:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n // InternalCsv.g:811:4: rule__JvmWildcardTypeReference__Group_2_1__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16532:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16533:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1__Impl_in_rule__JvmWildcardTypeReference__Group__133366);\r\n rule__JvmWildcardTypeReference__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2_in_rule__JvmWildcardTypeReference__Group__133369);\r\n rule__JvmWildcardTypeReference__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17819:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17821:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_135984);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19353:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19355:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19338:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19340:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13070:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13072:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_126253);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public String visit(WildcardType n, Object arg) {\n return null;\n }", "public final void entryRuleAstAnnotationArgument() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2397:1: ( ruleAstAnnotationArgument EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2398:1: ruleAstAnnotationArgument EOF\n {\n before(grammarAccess.getAstAnnotationArgumentRule()); \n pushFollow(FOLLOW_ruleAstAnnotationArgument_in_entryRuleAstAnnotationArgument5054);\n ruleAstAnnotationArgument();\n\n state._fsp--;\n\n after(grammarAccess.getAstAnnotationArgumentRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleAstAnnotationArgument5061); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13221:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13223:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_126561);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13206:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13208:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_126530);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18549:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18551:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_137478);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2815:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // InternalCsv.g:2816:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11725:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11727:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==31||LA73_0==65) ) {\n alt73=1;\n }\n switch (alt73) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:2: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl23519);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16279:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\r\n // InternalDroneScript.g:16280:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\r\n {\r\n pushFollow(FOLLOW_109);\r\n rule__JvmWildcardTypeReference__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void synpred117_Java_fragment() throws RecognitionException {\n // Java.g:496:9: ( ( nonWildcardTypeArguments )? ( 'this' | 'super' ) arguments ';' )\n dbg.enterAlt(1);\n\n // Java.g:496:9: ( nonWildcardTypeArguments )? ( 'this' | 'super' ) arguments ';'\n {\n dbg.location(496,9);\n // Java.g:496:9: ( nonWildcardTypeArguments )?\n int alt184=2;\n try { dbg.enterSubRule(184);\n try { dbg.enterDecision(184);\n\n int LA184_0 = input.LA(1);\n\n if ( (LA184_0==40) ) {\n alt184=1;\n }\n } finally {dbg.exitDecision(184);}\n\n switch (alt184) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:0:0: nonWildcardTypeArguments\n {\n dbg.location(496,9);\n pushFollow(FOLLOW_nonWildcardTypeArguments_in_synpred117_Java2480);\n nonWildcardTypeArguments();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(184);}\n\n dbg.location(496,35);\n if ( input.LA(1)==65||input.LA(1)==69 ) {\n input.consume();\n state.errorRecovery=false;state.failed=false;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n MismatchedSetException mse = new MismatchedSetException(null,input);\n dbg.recognitionException(mse);\n throw mse;\n }\n\n dbg.location(496,54);\n pushFollow(FOLLOW_arguments_in_synpred117_Java2491);\n arguments();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(496,64);\n match(input,26,FOLLOW_26_in_synpred117_Java2493); if (state.failed) return ;\n\n }\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18564:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18566:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_137509);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18898:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18900:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2573:2: (iv_ruleJvmTypeReference= ruleJvmTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2574:2: iv_ruleJvmTypeReference= ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference6009);\n iv_ruleJvmTypeReference=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference6019); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2950:1: ( rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1 )\n // InternalCsv.g:2951:2: rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18883:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18885:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18715:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18717:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_137817);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleWildcardTypeRefCS() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleWildcardTypeRefCS = null;\n\n\n try {\n // InternalMyDsl.g:9943:58: (iv_ruleWildcardTypeRefCS= ruleWildcardTypeRefCS EOF )\n // InternalMyDsl.g:9944:2: iv_ruleWildcardTypeRefCS= ruleWildcardTypeRefCS EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getWildcardTypeRefCSRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleWildcardTypeRefCS=ruleWildcardTypeRefCS();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleWildcardTypeRefCS; \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11652:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11653:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0__Impl_in_rule__JvmWildcardTypeReference__Group__023369);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1_in_rule__JvmWildcardTypeReference__Group__023372);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16501:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16502:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0__Impl_in_rule__JvmWildcardTypeReference__Group__033305);\r\n rule__JvmWildcardTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1_in_rule__JvmWildcardTypeReference__Group__033308);\r\n rule__JvmWildcardTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16387:1: ( rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1 )\r\n // InternalDroneScript.g:16388:2: rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1\r\n {\r\n pushFollow(FOLLOW_110);\r\n rule__JvmWildcardTypeReference__Group_2_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithSuper_cf36379() {\n java.lang.String expected = (\"? super @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.supertypeOf(type).toString();\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithSuper_cf36379__8 = // StatementAdderMethod cloned existing statement\n type.isBoxedPrimitive();\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithSuper_cf36379__8);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18700:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18702:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_137786);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4115:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4117:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16252:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\r\n // InternalDroneScript.g:16253:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_61);\r\n rule__JvmWildcardTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n Token otherlv_3=null;\n Token otherlv_5=null;\n EObject lv_arguments_2_0 = null;\n\n EObject lv_arguments_4_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2631:28: ( ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2634:3: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n\n \t\t\tif (current==null) {\n \t current = createModelElement(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \n }\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleJvmParameterizedTypeReference6213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:2: ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n int alt36=2;\n alt36 = dfa36.predict(input);\n switch (alt36) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>'\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:4: ( '<' )=>otherlv_1= '<'\n {\n otherlv_1=(Token)match(input,56,FOLLOW_56_in_ruleJvmParameterizedTypeReference6234); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0());\n \n }\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2652:2: ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2654:3: lv_arguments_2_0= ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6256);\n lv_arguments_2_0=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"arguments\",\n \t\tlv_arguments_2_0, \n \t\t\"JvmArgumentTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:2: (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )*\n loop35:\n do {\n int alt35=2;\n int LA35_0 = input.LA(1);\n\n if ( (LA35_0==55) ) {\n alt35=1;\n }\n\n\n switch (alt35) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:4: otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t {\n \t otherlv_3=(Token)match(input,55,FOLLOW_55_in_ruleJvmParameterizedTypeReference6269); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0());\n \t \n \t }\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2674:1: ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2676:3: lv_arguments_4_0= ruleJvmArgumentTypeReference\n \t {\n \t if ( state.backtracking==0 ) {\n \t \n \t \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n \t \t \n \t }\n \t pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6290);\n \t lv_arguments_4_0=ruleJvmArgumentTypeReference();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t if (current==null) {\n \t \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t \t }\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"arguments\",\n \t \t\tlv_arguments_4_0, \n \t \t\t\"JvmArgumentTypeReference\");\n \t \t afterParserOrEnumRuleCall();\n \t \t \n \t }\n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop35;\n }\n } while (true);\n\n otherlv_5=(Token)match(input,57,FOLLOW_57_in_ruleJvmParameterizedTypeReference6304); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_5, grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3());\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16574:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16576:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt106=2;\r\n int LA106_0 = input.LA(1);\r\n\r\n if ( (LA106_0==39||LA106_0==126) ) {\r\n alt106=1;\r\n }\r\n switch (alt106) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:2: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl33455);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithSuper_cf36371() {\n java.lang.String expected = (\"? super @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.supertypeOf(type).toString();\n // StatementAdderOnAssert create null value\n java.lang.Object vc_16130 = (java.lang.Object)null;\n // AssertGenerator add assertion\n org.junit.Assert.assertNull(vc_16130);\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithSuper_cf36371__10 = // StatementAdderMethod cloned existing statement\n type.equals(vc_16130);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithSuper_cf36371__10);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16264:1: ( ( () ) )\r\n // InternalDroneScript.g:16265:1: ( () )\r\n {\r\n // InternalDroneScript.g:16265:1: ( () )\r\n // InternalDroneScript.g:16266:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n // InternalDroneScript.g:16267:2: ()\r\n // InternalDroneScript.g:16267:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2880:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // InternalCsv.g:2882:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // InternalCsv.g:2883:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==35||LA23_0==37) ) {\n alt23=1;\n }\n switch (alt23) {\n case 1 :\n // InternalCsv.g:2883:3: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2827:1: ( ( () ) )\n // InternalCsv.g:2828:1: ( () )\n {\n // InternalCsv.g:2828:1: ( () )\n // InternalCsv.g:2829:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n // InternalCsv.g:2830:2: ()\n // InternalCsv.g:2830:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3132:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) ) | ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) ) )\r\n int alt35=2;\r\n int LA35_0 = input.LA(1);\r\n\r\n if ( (LA35_0==126) ) {\r\n alt35=1;\r\n }\r\n else if ( (LA35_0==39) ) {\r\n alt35=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 35, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt35) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3134:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_in_rule__JvmWildcardTypeReference__Alternatives_26805);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3140:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_in_rule__JvmWildcardTypeReference__Alternatives_26823);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithExtends_cf27968() {\n java.lang.String expected = (\"? extends @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.subtypeOf(type).toString();\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithExtends_cf27968__8 = // StatementAdderMethod cloned existing statement\n type.isBoxedPrimitive();\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithExtends_cf27968__8);\n org.junit.Assert.assertEquals(expected, actual);\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithExtends_cf27961() {\n java.lang.String expected = (\"? extends @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.subtypeOf(type).toString();\n // StatementAdderOnAssert create random local variable\n java.lang.Object vc_12387 = new java.lang.Object();\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithExtends_cf27961__10 = // StatementAdderMethod cloned existing statement\n type.equals(vc_12387);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithExtends_cf27961__10);\n org.junit.Assert.assertEquals(expected, actual);\n }" ]
[ "0.7789503", "0.7529075", "0.7323817", "0.7200471", "0.7085277", "0.70432395", "0.70389485", "0.69785404", "0.69515616", "0.6941355", "0.68941855", "0.66817605", "0.65129983", "0.63870585", "0.6091234", "0.598918", "0.58216524", "0.57598436", "0.57088435", "0.56923074", "0.56704175", "0.56469643", "0.56341255", "0.5589571", "0.5572013", "0.55683637", "0.5550324", "0.5519251", "0.5503965", "0.5496106", "0.54898536", "0.5488403", "0.5487154", "0.545397", "0.5453663", "0.54407626", "0.5439554", "0.5435345", "0.54124105", "0.54039454", "0.5396554", "0.539473", "0.5381045", "0.5371338", "0.53663695", "0.5352272", "0.5340446", "0.5335582", "0.5331863", "0.5330703", "0.5330229", "0.5330163", "0.5288976", "0.52687854", "0.5265925", "0.5252879", "0.5244821", "0.5241667", "0.52415174", "0.52305406", "0.5227675", "0.52167577", "0.521358", "0.5207863", "0.5181919", "0.51764905", "0.51424336", "0.5140268", "0.5137541", "0.5133531", "0.5113416", "0.5102887", "0.5100064", "0.5097959", "0.5090127", "0.508432", "0.50626373", "0.50445694", "0.5010907", "0.4997704", "0.49967897", "0.49898916", "0.49885625", "0.49846756", "0.49818277", "0.49810848", "0.49696344", "0.49550834", "0.4944455", "0.49305677", "0.4922284", "0.49204537", "0.4906444", "0.48868108", "0.48835692", "0.4882867", "0.48814616", "0.48653215", "0.48501378", "0.4844115" ]
0.80080795
0
$ANTLR end "entryRuleJvmWildcardTypeReference" $ANTLR start "ruleJvmWildcardTypeReference" InternalCsv.g:413:1: ruleJvmWildcardTypeReference : ( ( rule__JvmWildcardTypeReference__Group__0 ) ) ;
public final void ruleJvmWildcardTypeReference() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:417:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) ) // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) ) { // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) ) // InternalCsv.g:419:3: ( rule__JvmWildcardTypeReference__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); } // InternalCsv.g:420:3: ( rule__JvmWildcardTypeReference__Group__0 ) // InternalCsv.g:420:4: rule__JvmWildcardTypeReference__Group__0 { pushFollow(FOLLOW_2); rule__JvmWildcardTypeReference__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2125:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\r\n // InternalDroneScript.g:2126:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2126:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n // InternalDroneScript.g:2127:3: ( rule__JvmWildcardTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2128:3: ( rule__JvmWildcardTypeReference__Group__0 )\r\n // InternalDroneScript.g:2128:4: rule__JvmWildcardTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1688:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1689:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1689:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1690:1: ( rule__JvmWildcardTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1691:1: ( rule__JvmWildcardTypeReference__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1691:2: rule__JvmWildcardTypeReference__Group__0\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0_in_ruleJvmWildcardTypeReference3546);\n rule__JvmWildcardTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2001:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2002:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2002:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2003:1: ( rule__JvmWildcardTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2004:1: ( rule__JvmWildcardTypeReference__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2004:2: rule__JvmWildcardTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0_in_ruleJvmWildcardTypeReference4213);\r\n rule__JvmWildcardTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2815:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // InternalCsv.g:2816:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11683:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11684:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1__Impl_in_rule__JvmWildcardTypeReference__Group__123430);\n rule__JvmWildcardTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2_in_rule__JvmWildcardTypeReference__Group__123433);\n rule__JvmWildcardTypeReference__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11652:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11653:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0__Impl_in_rule__JvmWildcardTypeReference__Group__023369);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1_in_rule__JvmWildcardTypeReference__Group__023372);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2842:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\n // InternalCsv.g:2843:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\n {\n pushFollow(FOLLOW_36);\n rule__JvmWildcardTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16513:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16514:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16514:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16515:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16516:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16518:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16501:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16502:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0__Impl_in_rule__JvmWildcardTypeReference__Group__033305);\r\n rule__JvmWildcardTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1_in_rule__JvmWildcardTypeReference__Group__033308);\r\n rule__JvmWildcardTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11664:1: ( ( () ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11665:1: ( () )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11665:1: ( () )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11666:1: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11667:1: ()\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11669:1: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16252:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\r\n // InternalDroneScript.g:16253:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_61);\r\n rule__JvmWildcardTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2854:1: ( ( '?' ) )\n // InternalCsv.g:2855:1: ( '?' )\n {\n // InternalCsv.g:2855:1: ( '?' )\n // InternalCsv.g:2856:2: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,34,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16544:1: ( ( '?' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16545:1: ( '?' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16545:1: ( '?' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16546:1: '?'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n match(input,125,FOLLOW_125_in_rule__JvmWildcardTypeReference__Group__1__Impl33397); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11695:1: ( ( '?' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11696:1: ( '?' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11696:1: ( '?' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11697:1: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,64,FOLLOW_64_in_rule__JvmWildcardTypeReference__Group__1__Impl23461); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2896:1: ( rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1 )\n // InternalCsv.g:2897:2: rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2950:1: ( rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1 )\n // InternalCsv.g:2951:2: rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16532:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16533:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1__Impl_in_rule__JvmWildcardTypeReference__Group__133366);\r\n rule__JvmWildcardTypeReference__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2_in_rule__JvmWildcardTypeReference__Group__133369);\r\n rule__JvmWildcardTypeReference__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16333:1: ( rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1 )\r\n // InternalDroneScript.g:16334:2: rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1\r\n {\r\n pushFollow(FOLLOW_110);\r\n rule__JvmWildcardTypeReference__Group_2_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:802:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==35) ) {\n alt8=1;\n }\n else if ( (LA8_0==37) ) {\n alt8=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n {\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n // InternalCsv.g:804:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n // InternalCsv.g:805:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n // InternalCsv.g:805:4: rule__JvmWildcardTypeReference__Group_2_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n {\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n // InternalCsv.g:810:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n // InternalCsv.g:811:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n // InternalCsv.g:811:4: rule__JvmWildcardTypeReference__Group_2_1__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16387:1: ( rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1 )\r\n // InternalDroneScript.g:16388:2: rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1\r\n {\r\n pushFollow(FOLLOW_110);\r\n rule__JvmWildcardTypeReference__Group_2_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16279:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\r\n // InternalDroneScript.g:16280:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\r\n {\r\n pushFollow(FOLLOW_109);\r\n rule__JvmWildcardTypeReference__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2827:1: ( ( () ) )\n // InternalCsv.g:2828:1: ( () )\n {\n // InternalCsv.g:2828:1: ( () )\n // InternalCsv.g:2829:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n // InternalCsv.g:2830:2: ()\n // InternalCsv.g:2830:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3486:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\r\n int alt42=2;\r\n int LA42_0 = input.LA(1);\r\n\r\n if ( (LA42_0==45) ) {\r\n alt42=1;\r\n }\r\n else if ( (LA42_0==49) ) {\r\n alt42=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt42) {\r\n case 1 :\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n // InternalDroneScript.g:3488:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n // InternalDroneScript.g:3489:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n // InternalDroneScript.g:3489:4: rule__JvmWildcardTypeReference__Group_2_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n {\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n // InternalDroneScript.g:3494:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n // InternalDroneScript.g:3495:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n // InternalDroneScript.g:3495:4: rule__JvmWildcardTypeReference__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16264:1: ( ( () ) )\r\n // InternalDroneScript.g:16265:1: ( () )\r\n {\r\n // InternalDroneScript.g:16265:1: ( () )\r\n // InternalDroneScript.g:16266:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n // InternalDroneScript.g:16267:2: ()\r\n // InternalDroneScript.g:16267:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16291:1: ( ( '?' ) )\r\n // InternalDroneScript.g:16292:1: ( '?' )\r\n {\r\n // InternalDroneScript.g:16292:1: ( '?' )\r\n // InternalDroneScript.g:16293:2: '?'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n match(input,93,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmWildcardTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2745:2: (iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2746:2: iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference6461);\n iv_ruleJvmWildcardTypeReference=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmWildcardTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference6471); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11725:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11727:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==31||LA73_0==65) ) {\n alt73=1;\n }\n switch (alt73) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:2: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl23519);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11714:1: ( rule__JvmWildcardTypeReference__Group__2__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11715:2: rule__JvmWildcardTypeReference__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2__Impl_in_rule__JvmWildcardTypeReference__Group__223492);\n rule__JvmWildcardTypeReference__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16563:1: ( rule__JvmWildcardTypeReference__Group__2__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16564:2: rule__JvmWildcardTypeReference__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2__Impl_in_rule__JvmWildcardTypeReference__Group__233428);\r\n rule__JvmWildcardTypeReference__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16306:1: ( rule__JvmWildcardTypeReference__Group__2__Impl )\r\n // InternalDroneScript.g:16307:2: rule__JvmWildcardTypeReference__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2869:1: ( rule__JvmWildcardTypeReference__Group__2__Impl )\n // InternalCsv.g:2870:2: rule__JvmWildcardTypeReference__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1801:1: ( ( ruleJvmParameterizedTypeReference ) )\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n {\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n // InternalCsv.g:1803:2: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16360:1: ( rule__JvmWildcardTypeReference__Group_2_0__1__Impl )\r\n // InternalDroneScript.g:16361:2: rule__JvmWildcardTypeReference__Group_2_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2880:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // InternalCsv.g:2882:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // InternalCsv.g:2883:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==35||LA23_0==37) ) {\n alt23=1;\n }\n switch (alt23) {\n case 1 :\n // InternalCsv.g:2883:3: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16574:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16576:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt106=2;\r\n int LA106_0 = input.LA(1);\r\n\r\n if ( (LA106_0==39||LA106_0==126) ) {\r\n alt106=1;\r\n }\r\n switch (alt106) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:2: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl33455);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2977:1: ( rule__JvmWildcardTypeReference__Group_2_1__1__Impl )\n // InternalCsv.g:2978:2: rule__JvmWildcardTypeReference__Group_2_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16414:1: ( rule__JvmWildcardTypeReference__Group_2_1__1__Impl )\r\n // InternalDroneScript.g:16415:2: rule__JvmWildcardTypeReference__Group_2_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2923:1: ( rule__JvmWildcardTypeReference__Group_2_0__1__Impl )\n // InternalCsv.g:2924:2: rule__JvmWildcardTypeReference__Group_2_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15238:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // InternalDroneScript.g:15239:1: ( ruleJvmParameterizedTypeReference )\r\n // InternalDroneScript.g:15240:2: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:367:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\n // InternalCsv.g:368:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n {\n // InternalCsv.g:368:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n // InternalCsv.g:369:3: ( rule__JvmParameterizedTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n // InternalCsv.g:370:3: ( rule__JvmParameterizedTypeReference__Group__0 )\n // InternalCsv.g:370:4: rule__JvmParameterizedTypeReference__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmTypeReference__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1789:1: ( rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1 )\n // InternalCsv.g:1790:2: rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1870:1: ( rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1 )\n // InternalCsv.g:1871:2: rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16317:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // InternalDroneScript.g:16319:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:16320:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt125=2;\r\n int LA125_0 = input.LA(1);\r\n\r\n if ( (LA125_0==45||LA125_0==49) ) {\r\n alt125=1;\r\n }\r\n switch (alt125) {\r\n case 1 :\r\n // InternalDroneScript.g:16320:3: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15757:1: ( ( ( rule__JvmTypeReference__Group_0_1__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15758:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15758:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15759:1: ( rule__JvmTypeReference__Group_0_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15760:1: ( rule__JvmTypeReference__Group_0_1__0 )*\r\n loop100:\r\n do {\r\n int alt100=2;\r\n int LA100_0 = input.LA(1);\r\n\r\n if ( (LA100_0==104) ) {\r\n int LA100_2 = input.LA(2);\r\n\r\n if ( (LA100_2==103) ) {\r\n int LA100_3 = input.LA(3);\r\n\r\n if ( (synpred157_InternalFin()) ) {\r\n alt100=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt100) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15760:2: rule__JvmTypeReference__Group_0_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__JvmTypeReference__Group_0_1__0_in_rule__JvmTypeReference__Group_0__1__Impl31849);\r\n \t rule__JvmTypeReference__Group_0_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop100;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2934:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* ) )\n // InternalCsv.g:2935:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\n {\n // InternalCsv.g:2935:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\n // InternalCsv.g:2936:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \n }\n // InternalCsv.g:2937:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\n loop24:\n do {\n int alt24=2;\n int LA24_0 = input.LA(1);\n\n if ( (LA24_0==36) ) {\n alt24=1;\n }\n\n\n switch (alt24) {\n \tcase 1 :\n \t // InternalCsv.g:2937:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1\n \t {\n \t pushFollow(FOLLOW_38);\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop24;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15307:1: ( rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1 )\r\n // InternalDroneScript.g:15308:2: rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1\r\n {\r\n pushFollow(FOLLOW_66);\r\n rule__JvmTypeReference__Group_0_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0_1_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15226:1: ( rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1 )\r\n // InternalDroneScript.g:15227:2: rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1\r\n {\r\n pushFollow(FOLLOW_66);\r\n rule__JvmTypeReference__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1827:1: ( ( ( rule__JvmTypeReference__Group_0_1__0 )* ) )\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n {\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n // InternalCsv.g:1829:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n // InternalCsv.g:1830:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n loop14:\n do {\n int alt14=2;\n int LA14_0 = input.LA(1);\n\n if ( (LA14_0==27) ) {\n alt14=1;\n }\n\n\n switch (alt14) {\n \tcase 1 :\n \t // InternalCsv.g:1830:3: rule__JvmTypeReference__Group_0_1__0\n \t {\n \t pushFollow(FOLLOW_24);\n \t rule__JvmTypeReference__Group_0_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop14;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2075:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\r\n // InternalDroneScript.g:2076:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2076:2: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n // InternalDroneScript.g:2077:3: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2078:3: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n // InternalDroneScript.g:2078:4: rule__JvmParameterizedTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2988:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* ) )\n // InternalCsv.g:2989:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\n {\n // InternalCsv.g:2989:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\n // InternalCsv.g:2990:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \n }\n // InternalCsv.g:2991:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\n loop25:\n do {\n int alt25=2;\n int LA25_0 = input.LA(1);\n\n if ( (LA25_0==36) ) {\n alt25=1;\n }\n\n\n switch (alt25) {\n \tcase 1 :\n \t // InternalCsv.g:2991:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1\n \t {\n \t pushFollow(FOLLOW_38);\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop25;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1632:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1633:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1633:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1634:1: ( rule__JvmParameterizedTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1635:1: ( rule__JvmParameterizedTypeReference__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1635:2: rule__JvmParameterizedTypeReference__Group__0\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0_in_ruleJvmParameterizedTypeReference3426);\n rule__JvmParameterizedTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2302:1: ( rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1 )\n // InternalCsv.g:2303:2: rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmParameterizedTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1945:2: ( ( ( rule__JvmParameterizedTypeReference__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1946:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1946:1: ( ( rule__JvmParameterizedTypeReference__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1947:1: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1948:1: ( rule__JvmParameterizedTypeReference__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1948:2: rule__JvmParameterizedTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0_in_ruleJvmParameterizedTypeReference4093);\r\n rule__JvmParameterizedTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15808:1: ( rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15809:2: rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0_1_0__0__Impl_in_rule__JvmTypeReference__Group_0_1_0__031943);\r\n rule__JvmTypeReference__Group_0_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0_1_0__1_in_rule__JvmTypeReference__Group_0_1_0__031946);\r\n rule__JvmTypeReference__Group_0_1_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15717:1: ( rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15718:2: rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0__0__Impl_in_rule__JvmTypeReference__Group_0__031763);\r\n rule__JvmTypeReference__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0__1_in_rule__JvmTypeReference__Group_0__031766);\r\n rule__JvmTypeReference__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11462:1: ( rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11463:2: rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__0__Impl_in_rule__JvmParameterizedTypeReference__Group_1__022994);\n rule__JvmParameterizedTypeReference__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__1_in_rule__JvmParameterizedTypeReference__Group_1__022997);\n rule__JvmParameterizedTypeReference__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2248:1: ( rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1 )\n // InternalCsv.g:2249:2: rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1\n {\n pushFollow(FOLLOW_31);\n rule__JvmParameterizedTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n EObject lv_constraints_2_0 = null;\n\n EObject lv_constraints_3_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2756:28: ( ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2758:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,26,FOLLOW_26_in_ruleJvmWildcardTypeReference6517); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:1: ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n int alt38=3;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==58) ) {\n alt38=1;\n }\n else if ( (LA38_0==59) ) {\n alt38=2;\n }\n switch (alt38) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2769:3: lv_constraints_2_0= ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_ruleJvmWildcardTypeReference6539);\n lv_constraints_2_0=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_2_0, \n \t\t\"JvmUpperBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2788:3: lv_constraints_3_0= ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_ruleJvmWildcardTypeReference6566);\n lv_constraints_3_0=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_3_0, \n \t\t\"JvmLowerBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16311:1: ( rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16312:2: rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__0__Impl_in_rule__JvmParameterizedTypeReference__Group_1__032930);\r\n rule__JvmParameterizedTypeReference__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__1_in_rule__JvmParameterizedTypeReference__Group_1__032933);\r\n rule__JvmParameterizedTypeReference__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15729:1: ( ( ruleJvmParameterizedTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15730:1: ( ruleJvmParameterizedTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15730:1: ( ruleJvmParameterizedTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15731:1: ruleJvmParameterizedTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Group_0__0__Impl31793);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15264:1: ( ( ( rule__JvmTypeReference__Group_0_1__0 )* ) )\r\n // InternalDroneScript.g:15265:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\r\n {\r\n // InternalDroneScript.g:15265:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\r\n // InternalDroneScript.g:15266:2: ( rule__JvmTypeReference__Group_0_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \r\n }\r\n // InternalDroneScript.g:15267:2: ( rule__JvmTypeReference__Group_0_1__0 )*\r\n loop116:\r\n do {\r\n int alt116=2;\r\n int LA116_0 = input.LA(1);\r\n\r\n if ( (LA116_0==73) ) {\r\n int LA116_2 = input.LA(2);\r\n\r\n if ( (LA116_2==74) ) {\r\n int LA116_3 = input.LA(3);\r\n\r\n if ( (synpred165_InternalDroneScript()) ) {\r\n alt116=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt116) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:15267:3: rule__JvmTypeReference__Group_0_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_98);\r\n \t rule__JvmTypeReference__Group_0_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop116;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16371:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* ) )\r\n // InternalDroneScript.g:16372:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\r\n {\r\n // InternalDroneScript.g:16372:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\r\n // InternalDroneScript.g:16373:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \r\n }\r\n // InternalDroneScript.g:16374:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\r\n loop126:\r\n do {\r\n int alt126=2;\r\n int LA126_0 = input.LA(1);\r\n\r\n if ( (LA126_0==94) ) {\r\n alt126=1;\r\n }\r\n\r\n\r\n switch (alt126) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:16374:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1\r\n \t {\r\n \t pushFollow(FOLLOW_111);\r\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop126;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15789:1: ( ( ( rule__JvmTypeReference__Group_0_1_0__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15790:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15790:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15791:1: ( rule__JvmTypeReference__Group_0_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15792:1: ( rule__JvmTypeReference__Group_0_1_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15792:2: rule__JvmTypeReference__Group_0_1_0__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0_1_0__0_in_rule__JvmTypeReference__Group_0_1__0__Impl31911);\r\n rule__JvmTypeReference__Group_0_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2962:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) ) )\n // InternalCsv.g:2963:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\n {\n // InternalCsv.g:2963:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\n // InternalCsv.g:2964:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \n }\n // InternalCsv.g:2965:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\n // InternalCsv.g:2965:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2908:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) ) )\n // InternalCsv.g:2909:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) )\n {\n // InternalCsv.g:2909:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) )\n // InternalCsv.g:2910:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_0()); \n }\n // InternalCsv.g:2911:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 )\n // InternalCsv.g:2911:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2329:1: ( rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2 )\n // InternalCsv.g:2330:2: rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15739:1: ( rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1 )\r\n // InternalDroneScript.g:15740:2: rule__JvmParameterizedTypeReference__Group_1__0__Impl rule__JvmParameterizedTypeReference__Group_1__1\r\n {\r\n pushFollow(FOLLOW_61);\r\n rule__JvmParameterizedTypeReference__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15291:1: ( ( ( rule__JvmTypeReference__Group_0_1_0__0 ) ) )\r\n // InternalDroneScript.g:15292:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:15292:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\r\n // InternalDroneScript.g:15293:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \r\n }\r\n // InternalDroneScript.g:15294:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\r\n // InternalDroneScript.g:15294:3: rule__JvmTypeReference__Group_0_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11441:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11442:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11442:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11443:1: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11444:1: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\n int alt71=2;\n alt71 = dfa71.predict(input);\n switch (alt71) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11444:2: rule__JvmParameterizedTypeReference__Group_1__0\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__0_in_rule__JvmParameterizedTypeReference__Group__1__Impl22959);\n rule__JvmParameterizedTypeReference__Group_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11401:1: ( rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11402:2: rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0__Impl_in_rule__JvmParameterizedTypeReference__Group__022872);\n rule__JvmParameterizedTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__1_in_rule__JvmParameterizedTypeReference__Group__022875);\n rule__JvmParameterizedTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16290:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16291:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16291:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16292:1: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16293:1: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\r\n int alt104=2;\r\n alt104 = dfa104.predict(input);\r\n switch (alt104) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16293:2: rule__JvmParameterizedTypeReference__Group_1__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__0_in_rule__JvmParameterizedTypeReference__Group__1__Impl32895);\r\n rule__JvmParameterizedTypeReference__Group_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16250:1: ( rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16251:2: rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__0__Impl_in_rule__JvmParameterizedTypeReference__Group__032808);\r\n rule__JvmParameterizedTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group__1_in_rule__JvmParameterizedTypeReference__Group__032811);\r\n rule__JvmParameterizedTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11493:1: ( rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11494:2: rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__1__Impl_in_rule__JvmParameterizedTypeReference__Group_1__123058);\n rule__JvmParameterizedTypeReference__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__2_in_rule__JvmParameterizedTypeReference__Group_1__123061);\n rule__JvmParameterizedTypeReference__Group_1__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2383:1: ( rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4 )\n // InternalCsv.g:2384:2: rule__JvmParameterizedTypeReference__Group_1__3__Impl rule__JvmParameterizedTypeReference__Group_1__4\n {\n pushFollow(FOLLOW_34);\n rule__JvmParameterizedTypeReference__Group_1__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16425:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* ) )\r\n // InternalDroneScript.g:16426:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\r\n {\r\n // InternalDroneScript.g:16426:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\r\n // InternalDroneScript.g:16427:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \r\n }\r\n // InternalDroneScript.g:16428:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\r\n loop127:\r\n do {\r\n int alt127=2;\r\n int LA127_0 = input.LA(1);\r\n\r\n if ( (LA127_0==94) ) {\r\n alt127=1;\r\n }\r\n\r\n\r\n switch (alt127) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:16428:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1\r\n \t {\r\n \t pushFollow(FOLLOW_111);\r\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop127;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2286:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? ) )\n // InternalCsv.g:2287:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\n {\n // InternalCsv.g:2287:1: ( ( rule__JvmParameterizedTypeReference__Group_1__0 )? )\n // InternalCsv.g:2288:2: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \n }\n // InternalCsv.g:2289:2: ( rule__JvmParameterizedTypeReference__Group_1__0 )?\n int alt18=2;\n int LA18_0 = input.LA(1);\n\n if ( (LA18_0==31) ) {\n alt18=1;\n }\n switch (alt18) {\n case 1 :\n // InternalCsv.g:2289:3: rule__JvmParameterizedTypeReference__Group_1__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15685:1: ( rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1 )\r\n // InternalDroneScript.g:15686:2: rule__JvmParameterizedTypeReference__Group__0__Impl rule__JvmParameterizedTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_32);\r\n rule__JvmParameterizedTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16342:1: ( rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16343:2: rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__1__Impl_in_rule__JvmParameterizedTypeReference__Group_1__132994);\r\n rule__JvmParameterizedTypeReference__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__2_in_rule__JvmParameterizedTypeReference__Group_1__132997);\r\n rule__JvmParameterizedTypeReference__Group_1__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1854:1: ( ( ( rule__JvmTypeReference__Group_0_1_0__0 ) ) )\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n {\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n // InternalCsv.g:1856:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n // InternalCsv.g:1857:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n // InternalCsv.g:1857:3: rule__JvmTypeReference__Group_0_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16399:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) ) )\r\n // InternalDroneScript.g:16400:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\r\n {\r\n // InternalDroneScript.g:16400:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\r\n // InternalDroneScript.g:16401:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \r\n }\r\n // InternalDroneScript.g:16402:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\r\n // InternalDroneScript.g:16402:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16345:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) ) )\r\n // InternalDroneScript.g:16346:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) )\r\n {\r\n // InternalDroneScript.g:16346:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) )\r\n // InternalDroneScript.g:16347:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_0()); \r\n }\r\n // InternalDroneScript.g:16348:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 )\r\n // InternalDroneScript.g:16348:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16383:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16384:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16384:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16385:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16386:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\r\n loop105:\r\n do {\r\n int alt105=2;\r\n int LA105_0 = input.LA(1);\r\n\r\n if ( (LA105_0==84) ) {\r\n alt105=1;\r\n }\r\n\r\n\r\n switch (alt105) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16386:2: rule__JvmParameterizedTypeReference__Group_1_2__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__0_in_rule__JvmParameterizedTypeReference__Group_1__2__Impl33084);\r\n \t rule__JvmParameterizedTypeReference__Group_1_2__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop105;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2356:1: ( rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3 )\n // InternalCsv.g:2357:2: rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11534:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11535:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11535:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11536:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11537:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n loop72:\n do {\n int alt72=2;\n int LA72_0 = input.LA(1);\n\n if ( (LA72_0==39) ) {\n alt72=1;\n }\n\n\n switch (alt72) {\n \tcase 1 :\n \t // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11537:2: rule__JvmParameterizedTypeReference__Group_1_2__0\n \t {\n \t pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__0_in_rule__JvmParameterizedTypeReference__Group_1__2__Impl23148);\n \t rule__JvmParameterizedTypeReference__Group_1_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop72;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:567:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n {\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n // InternalCsv.g:569:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n // InternalCsv.g:570:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n // InternalCsv.g:570:4: rule__QualifiedNameWithWildcard__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11522:1: ( rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11523:2: rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3\n {\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__2__Impl_in_rule__JvmParameterizedTypeReference__Group_1__223118);\n rule__JvmParameterizedTypeReference__Group_1__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__3_in_rule__JvmParameterizedTypeReference__Group_1__223121);\n rule__JvmParameterizedTypeReference__Group_1__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15766:1: ( rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2 )\r\n // InternalDroneScript.g:15767:2: rule__JvmParameterizedTypeReference__Group_1__1__Impl rule__JvmParameterizedTypeReference__Group_1__2\r\n {\r\n pushFollow(FOLLOW_62);\r\n rule__JvmParameterizedTypeReference__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmParameterizedTypeReference__Group_1__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2368:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* ) )\n // InternalCsv.g:2369:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n {\n // InternalCsv.g:2369:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n // InternalCsv.g:2370:2: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n // InternalCsv.g:2371:2: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n loop19:\n do {\n int alt19=2;\n int LA19_0 = input.LA(1);\n\n if ( (LA19_0==30) ) {\n alt19=1;\n }\n\n\n switch (alt19) {\n \tcase 1 :\n \t // InternalCsv.g:2371:3: rule__JvmParameterizedTypeReference__Group_1_2__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__JvmParameterizedTypeReference__Group_1_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop19;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3328:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\n // InternalCsv.g:3329:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameWithWildcard__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16371:1: ( rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16372:2: rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3\r\n {\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__2__Impl_in_rule__JvmParameterizedTypeReference__Group_1__233054);\r\n rule__JvmParameterizedTypeReference__Group_1__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1__3_in_rule__JvmParameterizedTypeReference__Group_1__233057);\r\n rule__JvmParameterizedTypeReference__Group_1__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.79735804", "0.793294", "0.7899377", "0.7862523", "0.75546736", "0.7537344", "0.7520561", "0.74997276", "0.74574405", "0.743887", "0.74232227", "0.7418683", "0.7410986", "0.74065006", "0.7401976", "0.7400793", "0.7372465", "0.7371366", "0.7364996", "0.7356385", "0.73512506", "0.731689", "0.72998726", "0.7257703", "0.72538674", "0.71983737", "0.7162885", "0.69839936", "0.6969731", "0.68621725", "0.6728776", "0.67276", "0.67262834", "0.6641106", "0.6606717", "0.6529094", "0.65105355", "0.64953846", "0.6493862", "0.644128", "0.64079964", "0.634161", "0.63325727", "0.63253", "0.6287088", "0.62802815", "0.6259178", "0.6144854", "0.61316746", "0.6122761", "0.6110624", "0.60980093", "0.6066821", "0.6064157", "0.6026557", "0.6020982", "0.599458", "0.59913707", "0.598096", "0.5977388", "0.5967417", "0.59467596", "0.5922033", "0.5912405", "0.58982855", "0.588935", "0.5888687", "0.58859134", "0.5884538", "0.58582747", "0.58556795", "0.5821055", "0.5816951", "0.5785441", "0.5770631", "0.57535505", "0.57359076", "0.57335585", "0.57322973", "0.5723631", "0.5715997", "0.5713988", "0.57053274", "0.57006633", "0.5688638", "0.5662646", "0.56580174", "0.5656372", "0.56379986", "0.56318545", "0.5605597", "0.5602478", "0.5597256", "0.55686957", "0.55334026", "0.5527199", "0.55253434", "0.55160445", "0.5513066", "0.5508523" ]
0.82031965
0
$ANTLR end "ruleJvmWildcardTypeReference" $ANTLR start "entryRuleJvmUpperBound" InternalCsv.g:429:1: entryRuleJvmUpperBound : ruleJvmUpperBound EOF ;
public final void entryRuleJvmUpperBound() throws RecognitionException { try { // InternalCsv.g:430:1: ( ruleJvmUpperBound EOF ) // InternalCsv.g:431:1: ruleJvmUpperBound EOF { if ( state.backtracking==0 ) { before(grammarAccess.getJvmUpperBoundRule()); } pushFollow(FOLLOW_1); ruleJvmUpperBound(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmUpperBoundRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1704:1: ( ruleJvmUpperBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1705:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound3573);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound3580); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2138:1: ( ruleJvmUpperBound EOF )\r\n // InternalDroneScript.g:2139:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2017:1: ( ruleJvmUpperBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2018:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound4240);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound4247); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13552:1: ( ( ruleJvmUpperBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13554:1: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_027241);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4025:1: ( ( ruleJvmUpperBound ) )\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n {\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n // InternalCsv.g:4027:3: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19091:1: ( ( ruleJvmUpperBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19093:1: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_038590);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmUpperBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2813:2: (iv_ruleJvmUpperBound= ruleJvmUpperBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2814:2: iv_ruleJvmUpperBound= ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound6604);\n iv_ruleJvmUpperBound=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmUpperBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound6614); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19368:1: ( ( ruleJvmUpperBound ) )\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n {\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n // InternalDroneScript.g:19370:3: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:455:1: ( ruleJvmUpperBoundAnded EOF )\n // InternalCsv.g:456:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject ruleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2824:28: ( (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:3: otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,58,FOLLOW_58_in_ruleJvmUpperBound6651); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2829:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2831:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmUpperBound6672);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmUpperBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject ruleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n EObject lv_constraints_2_0 = null;\n\n EObject lv_constraints_3_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2756:28: ( ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2758:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,26,FOLLOW_26_in_ruleJvmWildcardTypeReference6517); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:1: ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n int alt38=3;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==58) ) {\n alt38=1;\n }\n else if ( (LA38_0==59) ) {\n alt38=2;\n }\n switch (alt38) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2769:3: lv_constraints_2_0= ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_ruleJvmWildcardTypeReference6539);\n lv_constraints_2_0=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_2_0, \n \t\t\"JvmUpperBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2788:3: lv_constraints_3_0= ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_ruleJvmWildcardTypeReference6566);\n lv_constraints_3_0=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_3_0, \n \t\t\"JvmLowerBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:442:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n // InternalCsv.g:444:3: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // InternalCsv.g:445:3: ( rule__JvmUpperBound__Group__0 )\n // InternalCsv.g:445:4: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4040:1: ( ( ruleJvmUpperBoundAnded ) )\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n {\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n // InternalCsv.g:4042:3: ruleJvmUpperBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1732:1: ( ruleJvmUpperBoundAnded EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1733:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded3633);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded3640); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11790:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11792:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:2: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl23645);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2163:1: ( ruleJvmUpperBoundAnded EOF )\r\n // InternalDroneScript.g:2164:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1716:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1718:1: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:1: ( rule__JvmUpperBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:2: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound3606);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19383:1: ( ( ruleJvmUpperBoundAnded ) )\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n {\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n // InternalDroneScript.g:19385:3: ruleJvmUpperBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16639:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16641:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:2: rule__JvmUpperBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl33581);\r\n rule__JvmUpperBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2045:1: ( ruleJvmUpperBoundAnded EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2046:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded4300);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded4307); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2029:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2031:1: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:1: ( rule__JvmUpperBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:2: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound4273);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2150:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // InternalDroneScript.g:2152:3: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2153:3: ( rule__JvmUpperBound__Group__0 )\r\n // InternalDroneScript.g:2153:4: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3042:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3044:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3045:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // InternalCsv.g:3045:3: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13582:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13584:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_127303);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11853:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11854:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11854:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11855:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11856:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11856:2: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__TypeReferenceAssignment_1_in_rule__JvmUpperBoundAnded__Group__1__Impl23768);\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16702:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16703:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16703:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16704:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16705:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16705:2: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__TypeReferenceAssignment_1_in_rule__JvmUpperBoundAnded__Group__1__Impl33704);\r\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16479:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16480:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16480:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16481:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16482:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16482:3: rule__JvmUpperBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3004:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // InternalCsv.g:3005:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19121:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19123:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_138652);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1744:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1746:1: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:1: ( rule__JvmUpperBoundAnded__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:2: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded3666);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16441:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // InternalDroneScript.g:16442:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:467:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // InternalCsv.g:469:3: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:470:3: ( rule__JvmUpperBoundAnded__Group__0 )\n // InternalCsv.g:470:4: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11748:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11749:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__023556);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__023559);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2057:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2059:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:2: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded4333);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16597:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16598:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__033492);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__033495);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11760:1: ( ( 'extends' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11762:1: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,65,FOLLOW_65_in_rule__JvmUpperBound__Group__0__Impl23587); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16609:1: ( ( 'extends' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16611:1: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,126,FOLLOW_126_in_rule__JvmUpperBound__Group__0__Impl33523); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13597:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13599:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_127334);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2175:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2177:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2178:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2178:4: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3031:1: ( rule__JvmUpperBound__Group__1__Impl )\n // InternalCsv.g:3032:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3016:1: ( ( 'extends' ) )\n // InternalCsv.g:3017:1: ( 'extends' )\n {\n // InternalCsv.g:3017:1: ( 'extends' )\n // InternalCsv.g:3018:2: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,35,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // InternalCsv.g:480:1: ( ruleJvmLowerBound EOF )\n // InternalCsv.g:481:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3096:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3097:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3097:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3098:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3099:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3099:3: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11779:1: ( rule__JvmUpperBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11780:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__123618);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmWildcardTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2745:2: (iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2746:2: iv_ruleJvmWildcardTypeReference= ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference6461);\n iv_ruleJvmWildcardTypeReference=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmWildcardTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference6471); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16453:1: ( ( 'extends' ) )\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n // InternalDroneScript.g:16455:2: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16468:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // InternalDroneScript.g:16469:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19136:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19138:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_138683);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16533:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16534:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16534:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16535:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16536:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16536:3: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19428:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19430:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1760:1: ( ruleJvmLowerBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1761:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound3693);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound3700); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\r\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\r\n\t}", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13567:1: ( ( ruleJvmLowerBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13569:1: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_127272);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\n\t}", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\n\t}", "public final void mT__20() throws RecognitionException {\n try {\n int _type = T__20;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:20:7: ( 'UpperBoundType1' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:20:9: 'UpperBoundType1'\n {\n match(\"UpperBoundType1\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16628:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16629:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__133554);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public V getUpperBound();", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mT__21() throws RecognitionException {\n try {\n int _type = T__21;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:21:7: ( 'UpperBoundType' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:21:9: 'UpperBoundType'\n {\n match(\"UpperBoundType\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19106:1: ( ( ruleJvmLowerBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19108:1: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_138621);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2073:1: ( ruleJvmLowerBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2074:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound4360);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound4367); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void addUpperConstraint(String type) {\n\t\tfinal JvmUpperBound constraint = this.jvmTypesFactory.createJvmUpperBound();\n\t\tconstraint.setTypeReference(newTypeRef(this.context, type));\n\t\tgetJvmTypeParameter().getConstraints().add(constraint);\n\t}", "@Override\n\tprotected void setUpperBound() {\n\t\t\n\t}", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2188:1: ( ruleJvmLowerBound EOF )\r\n // InternalDroneScript.g:2189:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11811:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11812:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__023679);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__023682);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:355:1: ( ruleJvmParameterizedTypeReference EOF )\n // InternalCsv.g:356:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4055:1: ( ( ruleJvmLowerBound ) )\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n {\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n // InternalCsv.g:4057:3: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3058:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // InternalCsv.g:3059:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mT__191() throws RecognitionException {\n try {\n int _type = T__191;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:191:8: ( 'upperBound' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:191:10: 'upperBound'\n {\n match(\"upperBound\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19443:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19445:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16660:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16661:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__033615);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__033618);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmLowerBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2856:2: (iv_ruleJvmLowerBound= ruleJvmLowerBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2857:2: iv_ruleJvmLowerBound= ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound6708);\n iv_ruleJvmLowerBound=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmLowerBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound6718); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19398:1: ( ( ruleJvmLowerBound ) )\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n {\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n // InternalDroneScript.g:19400:3: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16495:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16496:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11842:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11843:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__123741);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public boolean isUpperBound(Type argType, Substitution<ReferenceType> subst) {\n ReferenceType boundType = this.boundType.apply(subst);\n if (boundType.equals(JavaTypes.OBJECT_TYPE)) {\n return true;\n }\n if (boundType.isParameterized()) {\n if (!(argType instanceof ClassOrInterfaceType)) {\n return false;\n }\n InstantiatedType boundClassType = (InstantiatedType) boundType.applyCaptureConversion();\n InstantiatedType argSuperType =\n ((ClassOrInterfaceType) argType)\n .getMatchingSupertype(boundClassType.getGenericClassType());\n if (argSuperType == null) {\n return false;\n }\n argSuperType = argSuperType.applyCaptureConversion();\n return argSuperType.isInstantiationOf(boundClassType);\n }\n return argType.isSubtypeOf(boundType);\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1620:1: ( ruleJvmParameterizedTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1621:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_entryRuleJvmParameterizedTypeReference3393);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmParameterizedTypeReference3400); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:505:1: ( ruleJvmLowerBoundAnded EOF )\n // InternalCsv.g:506:1: ruleJvmLowerBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1564:1: ( ruleJvmTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1565:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3273);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3280); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "TrackingToken upperBound();", "private static int getUpperBound(String expression) {\r\n\t\t\r\n\t\texpression = expression.substring(7, expression.length());\r\n\t\t\r\n\t\treturn new Integer(expression);\r\n\t\t\r\n\t}", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16691:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16692:2: rule__JvmUpperBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__133677);\r\n rule__JvmUpperBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3085:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // InternalCsv.g:3086:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tprotected double getUpperBound() {\n\t\treturn 0;\n\t}", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public void setUpperBound(String upper) {\n upperBound = upper;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11823:1: ( ( '&' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11825:1: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,66,FOLLOW_66_in_rule__JvmUpperBoundAnded__Group__0__Impl23710); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2395:1: ( ( '>' ) )\n // InternalCsv.g:2396:1: ( '>' )\n {\n // InternalCsv.g:2396:1: ( '>' )\n // InternalCsv.g:2397:2: '>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n match(input,32,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7651874", "0.7592184", "0.7538803", "0.74668574", "0.74555415", "0.7388423", "0.7363153", "0.7304849", "0.68533456", "0.682209", "0.6769305", "0.66580963", "0.6634889", "0.6631947", "0.65469575", "0.6531092", "0.6525579", "0.65120447", "0.64289796", "0.6426026", "0.64246017", "0.6368926", "0.6252527", "0.60881203", "0.60576206", "0.6055814", "0.6039066", "0.60317594", "0.5970972", "0.5901732", "0.58976424", "0.580906", "0.57942694", "0.5769194", "0.5767191", "0.5760802", "0.57532406", "0.5730365", "0.5695379", "0.5667529", "0.5654135", "0.5637144", "0.56342316", "0.55239683", "0.5516953", "0.55093807", "0.55087584", "0.54977465", "0.54846996", "0.5477471", "0.5439629", "0.53944486", "0.5390508", "0.5369588", "0.53668314", "0.534734", "0.5330624", "0.5321772", "0.5290966", "0.5290966", "0.5289114", "0.52817583", "0.526999", "0.52495354", "0.52260125", "0.5147336", "0.51358896", "0.5127097", "0.5117134", "0.5084157", "0.50805146", "0.5074112", "0.5070197", "0.5039701", "0.5004286", "0.50004584", "0.49920887", "0.4942344", "0.4937736", "0.491894", "0.48811033", "0.48759282", "0.48753735", "0.48639673", "0.4855423", "0.4838777", "0.4834301", "0.48330882", "0.4832762", "0.48139238", "0.48121384", "0.47978535", "0.47861058", "0.4690673", "0.46861005", "0.46830252", "0.46768603", "0.46684495", "0.46660388", "0.46640584" ]
0.77292985
0
$ANTLR end "entryRuleJvmUpperBound" $ANTLR start "ruleJvmUpperBound" InternalCsv.g:438:1: ruleJvmUpperBound : ( ( rule__JvmUpperBound__Group__0 ) ) ;
public final void ruleJvmUpperBound() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:442:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) ) // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) ) { // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) ) // InternalCsv.g:444:3: ( rule__JvmUpperBound__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmUpperBoundAccess().getGroup()); } // InternalCsv.g:445:3: ( rule__JvmUpperBound__Group__0 ) // InternalCsv.g:445:4: rule__JvmUpperBound__Group__0 { pushFollow(FOLLOW_2); rule__JvmUpperBound__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmUpperBoundAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1716:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1718:1: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:1: ( rule__JvmUpperBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:2: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound3606);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2029:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2031:1: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:1: ( rule__JvmUpperBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:2: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound4273);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2150:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // InternalDroneScript.g:2152:3: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2153:3: ( rule__JvmUpperBound__Group__0 )\r\n // InternalDroneScript.g:2153:4: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1704:1: ( ruleJvmUpperBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1705:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound3573);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound3580); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // InternalCsv.g:430:1: ( ruleJvmUpperBound EOF )\n // InternalCsv.g:431:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2017:1: ( ruleJvmUpperBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2018:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound4240);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound4247); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2138:1: ( ruleJvmUpperBound EOF )\r\n // InternalDroneScript.g:2139:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmUpperBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2813:2: (iv_ruleJvmUpperBound= ruleJvmUpperBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2814:2: iv_ruleJvmUpperBound= ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound6604);\n iv_ruleJvmUpperBound=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmUpperBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound6614); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16441:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // InternalDroneScript.g:16442:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3004:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // InternalCsv.g:3005:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11748:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11749:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__023556);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__023559);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16597:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16598:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__033492);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__033495);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4025:1: ( ( ruleJvmUpperBound ) )\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n {\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n // InternalCsv.g:4027:3: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19368:1: ( ( ruleJvmUpperBound ) )\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n {\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n // InternalDroneScript.g:19370:3: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:467:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // InternalCsv.g:469:3: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:470:3: ( rule__JvmUpperBoundAnded__Group__0 )\n // InternalCsv.g:470:4: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13552:1: ( ( ruleJvmUpperBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13554:1: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_027241);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1744:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1746:1: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:1: ( rule__JvmUpperBoundAnded__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:2: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded3666);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2057:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2059:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:2: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded4333);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19091:1: ( ( ruleJvmUpperBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19093:1: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_038590);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2175:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2177:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2178:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2178:4: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11760:1: ( ( 'extends' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11762:1: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,65,FOLLOW_65_in_rule__JvmUpperBound__Group__0__Impl23587); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11779:1: ( rule__JvmUpperBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11780:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__123618);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16609:1: ( ( 'extends' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16611:1: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,126,FOLLOW_126_in_rule__JvmUpperBound__Group__0__Impl33523); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16468:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // InternalDroneScript.g:16469:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3031:1: ( rule__JvmUpperBound__Group__1__Impl )\n // InternalCsv.g:3032:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11790:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11792:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:2: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl23645);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16628:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16629:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__133554);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3016:1: ( ( 'extends' ) )\n // InternalCsv.g:3017:1: ( 'extends' )\n {\n // InternalCsv.g:3017:1: ( 'extends' )\n // InternalCsv.g:3018:2: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,35,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16453:1: ( ( 'extends' ) )\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n // InternalDroneScript.g:16455:2: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2824:28: ( (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:3: otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,58,FOLLOW_58_in_ruleJvmUpperBound6651); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2829:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2831:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmUpperBound6672);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmUpperBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11811:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11812:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__023679);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__023682);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:455:1: ( ruleJvmUpperBoundAnded EOF )\n // InternalCsv.g:456:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16495:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16496:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16639:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16641:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:2: rule__JvmUpperBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl33581);\r\n rule__JvmUpperBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16660:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16661:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__033615);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__033618);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3058:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // InternalCsv.g:3059:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1732:1: ( ruleJvmUpperBoundAnded EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1733:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded3633);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded3640); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3042:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3044:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3045:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // InternalCsv.g:3045:3: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2163:1: ( ruleJvmUpperBoundAnded EOF )\r\n // InternalDroneScript.g:2164:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2045:1: ( ruleJvmUpperBoundAnded EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2046:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded4300);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded4307); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11842:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11843:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__123741);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16479:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16480:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16480:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16481:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16482:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16482:3: rule__JvmUpperBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11853:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11854:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11854:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11855:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11856:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11856:2: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__TypeReferenceAssignment_1_in_rule__JvmUpperBoundAnded__Group__1__Impl23768);\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public V getUpperBound();", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16691:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16692:2: rule__JvmUpperBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__133677);\r\n rule__JvmUpperBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16702:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16703:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16703:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16704:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16705:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16705:2: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__TypeReferenceAssignment_1_in_rule__JvmUpperBoundAnded__Group__1__Impl33704);\r\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\r\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\r\n\t}", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19383:1: ( ( ruleJvmUpperBoundAnded ) )\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n {\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n // InternalDroneScript.g:19385:3: ruleJvmUpperBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16522:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\r\n // InternalDroneScript.g:16523:2: rule__JvmUpperBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3085:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // InternalCsv.g:3086:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11823:1: ( ( '&' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11825:1: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,66,FOLLOW_66_in_rule__JvmUpperBoundAnded__Group__0__Impl23710); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\n\t}", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\n\t}", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4040:1: ( ( ruleJvmUpperBoundAnded ) )\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n {\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n // InternalCsv.g:4042:3: ruleJvmUpperBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getUpperBound() {\n\t\treturn upperBound;\n\t}", "@Override\n\tprotected void setUpperBound() {\n\t\t\n\t}", "public int getUpperBound() {\n\t\treturn this.upperBound;\n\t}", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16672:1: ( ( '&' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16673:1: ( '&' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16673:1: ( '&' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16674:1: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,127,FOLLOW_127_in_rule__JvmUpperBoundAnded__Group__0__Impl33646); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public int getUpperBound() {\r\n return upperBound;\r\n }", "public final EObject ruleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n EObject lv_constraints_2_0 = null;\n\n EObject lv_constraints_3_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2756:28: ( ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2758:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,26,FOLLOW_26_in_ruleJvmWildcardTypeReference6517); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:1: ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n int alt38=3;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==58) ) {\n alt38=1;\n }\n else if ( (LA38_0==59) ) {\n alt38=2;\n }\n switch (alt38) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2769:3: lv_constraints_2_0= ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_ruleJvmWildcardTypeReference6539);\n lv_constraints_2_0=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_2_0, \n \t\t\"JvmUpperBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2788:3: lv_constraints_3_0= ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_ruleJvmWildcardTypeReference6566);\n lv_constraints_3_0=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_3_0, \n \t\t\"JvmLowerBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3096:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3097:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3097:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3098:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3099:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3099:3: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3070:1: ( ( '&' ) )\n // InternalCsv.g:3071:1: ( '&' )\n {\n // InternalCsv.g:3071:1: ( '&' )\n // InternalCsv.g:3072:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tprotected double getUpperBound() {\n\t\treturn 0;\n\t}", "public void setUpperBound(String upper) {\n upperBound = upper;\n }", "public void setUpperBound(final int upperBound) {\r\n this.upperBound = upperBound;\r\n }", "public void addUpperConstraint(String type) {\n\t\tfinal JvmUpperBound constraint = this.jvmTypesFactory.createJvmUpperBound();\n\t\tconstraint.setTypeReference(newTypeRef(this.context, type));\n\t\tgetJvmTypeParameter().getConstraints().add(constraint);\n\t}", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // InternalCsv.g:480:1: ( ruleJvmLowerBound EOF )\n // InternalCsv.g:481:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public CategoryBuilder setUpperBound(float upperBound)\n {\n fUpperBound = upperBound;\n return this;\n }", "public final EObject ruleMaximumFunction() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n Token otherlv_3=null;\r\n Token otherlv_5=null;\r\n EObject lv_operator_0_0 = null;\r\n\r\n EObject lv_values_2_0 = null;\r\n\r\n EObject lv_values_4_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3094:28: ( ( ( (lv_operator_0_0= ruleMaxOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')' ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3095:1: ( ( (lv_operator_0_0= ruleMaxOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')' )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3095:1: ( ( (lv_operator_0_0= ruleMaxOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')' )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3095:2: ( (lv_operator_0_0= ruleMaxOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')'\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3095:2: ( (lv_operator_0_0= ruleMaxOperator ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3096:1: (lv_operator_0_0= ruleMaxOperator )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3096:1: (lv_operator_0_0= ruleMaxOperator )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3097:3: lv_operator_0_0= ruleMaxOperator\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getMaximumFunctionAccess().getOperatorMaxOperatorParserRuleCall_0_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleMaxOperator_in_ruleMaximumFunction6654);\r\n lv_operator_0_0=ruleMaxOperator();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getMaximumFunctionRule());\r\n \t }\r\n \t\tset(\r\n \t\t\tcurrent, \r\n \t\t\t\"operator\",\r\n \t\tlv_operator_0_0, \r\n \t\t\"MaxOperator\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,43,FOLLOW_43_in_ruleMaximumFunction6666); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getMaximumFunctionAccess().getLeftParenthesisKeyword_1());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3117:1: ( (lv_values_2_0= ruleNumberExpression ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3118:1: (lv_values_2_0= ruleNumberExpression )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3118:1: (lv_values_2_0= ruleNumberExpression )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3119:3: lv_values_2_0= ruleNumberExpression\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getMaximumFunctionAccess().getValuesNumberExpressionParserRuleCall_2_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleNumberExpression_in_ruleMaximumFunction6687);\r\n lv_values_2_0=ruleNumberExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getMaximumFunctionRule());\r\n \t }\r\n \t\tadd(\r\n \t\t\tcurrent, \r\n \t\t\t\"values\",\r\n \t\tlv_values_2_0, \r\n \t\t\"NumberExpression\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3135:2: (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )*\r\n loop42:\r\n do {\r\n int alt42=2;\r\n int LA42_0 = input.LA(1);\r\n\r\n if ( (LA42_0==20) ) {\r\n alt42=1;\r\n }\r\n\r\n\r\n switch (alt42) {\r\n \tcase 1 :\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3135:4: otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) )\r\n \t {\r\n \t otherlv_3=(Token)match(input,20,FOLLOW_20_in_ruleMaximumFunction6700); if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t \tnewLeafNode(otherlv_3, grammarAccess.getMaximumFunctionAccess().getCommaKeyword_3_0());\r\n \t \r\n \t }\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3139:1: ( (lv_values_4_0= ruleNumberExpression ) )\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3140:1: (lv_values_4_0= ruleNumberExpression )\r\n \t {\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3140:1: (lv_values_4_0= ruleNumberExpression )\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3141:3: lv_values_4_0= ruleNumberExpression\r\n \t {\r\n \t if ( state.backtracking==0 ) {\r\n \t \r\n \t \t newCompositeNode(grammarAccess.getMaximumFunctionAccess().getValuesNumberExpressionParserRuleCall_3_1_0()); \r\n \t \t \r\n \t }\r\n \t pushFollow(FOLLOW_ruleNumberExpression_in_ruleMaximumFunction6721);\r\n \t lv_values_4_0=ruleNumberExpression();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t \t if (current==null) {\r\n \t \t current = createModelElementForParent(grammarAccess.getMaximumFunctionRule());\r\n \t \t }\r\n \t \t\tadd(\r\n \t \t\t\tcurrent, \r\n \t \t\t\t\"values\",\r\n \t \t\tlv_values_4_0, \r\n \t \t\t\"NumberExpression\");\r\n \t \t afterParserOrEnumRuleCall();\r\n \t \t \r\n \t }\r\n\r\n \t }\r\n\r\n\r\n \t }\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop42;\r\n }\r\n } while (true);\r\n\r\n otherlv_5=(Token)match(input,44,FOLLOW_44_in_ruleMaximumFunction6735); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_5, grammarAccess.getMaximumFunctionAccess().getRightParenthesisKeyword_4());\r\n \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16533:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16534:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16534:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16535:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16536:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16536:3: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mT__21() throws RecognitionException {\n try {\n int _type = T__21;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:21:7: ( 'UpperBoundType' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:21:9: 'UpperBoundType'\n {\n match(\"UpperBoundType\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public abstract double[] getUpperBound();", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2395:1: ( ( '>' ) )\n // InternalCsv.g:2396:1: ( '>' )\n {\n // InternalCsv.g:2396:1: ( '>' )\n // InternalCsv.g:2397:2: '>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n match(input,32,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public float getUpperBound()\n {\n return fUpperBound;\n }", "private static int getUpperBound(String expression) {\r\n\t\t\r\n\t\texpression = expression.substring(7, expression.length());\r\n\t\t\r\n\t\treturn new Integer(expression);\r\n\t\t\r\n\t}", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1760:1: ( ruleJvmLowerBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1761:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound3693);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound3700); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject entryRuleGreaterThanOperator() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGreaterThanOperator = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4632:2: (iv_ruleGreaterThanOperator= ruleGreaterThanOperator EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4633:2: iv_ruleGreaterThanOperator= ruleGreaterThanOperator EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGreaterThanOperatorRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGreaterThanOperator_in_entryRuleGreaterThanOperator10233);\r\n iv_ruleGreaterThanOperator=ruleGreaterThanOperator();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGreaterThanOperator; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGreaterThanOperator10243); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void mT__20() throws RecognitionException {\n try {\n int _type = T__20;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:20:7: ( 'UpperBoundType1' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:20:9: 'UpperBoundType1'\n {\n match(\"UpperBoundType1\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13582:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13584:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_127303);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15832:1: ( ( '>' ) )\r\n // InternalDroneScript.g:15833:1: ( '>' )\r\n {\r\n // InternalDroneScript.g:15833:1: ( '>' )\r\n // InternalDroneScript.g:15834:2: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n match(input,26,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "double getUpperThreshold();", "public UpperBoundTypeElements getUpperBoundTypeAccess() {\n\t\treturn pUpperBoundType;\n\t}", "TrackingToken upperBound();", "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1772:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1774:1: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:1: ( rule__JvmLowerBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:2: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound3726);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2745:1: ( ( '>' ) )\n // InternalCsv.g:2746:1: ( '>' )\n {\n // InternalCsv.g:2746:1: ( '>' )\n // InternalCsv.g:2747:2: '>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_4_2_3()); \n }\n match(input,32,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_4_2_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleMaxOperator() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleMaxOperator = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4911:2: (iv_ruleMaxOperator= ruleMaxOperator EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4912:2: iv_ruleMaxOperator= ruleMaxOperator EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getMaxOperatorRule()); \r\n }\r\n pushFollow(FOLLOW_ruleMaxOperator_in_entryRuleMaxOperator11061);\r\n iv_ruleMaxOperator=ruleMaxOperator();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleMaxOperator; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleMaxOperator11071); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2073:1: ( ruleJvmLowerBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2074:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound4360);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound4367); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "int getGroupIdUpperBound();", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16182:1: ( ( '>' ) )\r\n // InternalDroneScript.g:16183:1: ( '>' )\r\n {\r\n // InternalDroneScript.g:16183:1: ( '>' )\r\n // InternalDroneScript.g:16184:2: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_4_2_3()); \r\n }\r\n match(input,26,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_4_2_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:492:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n // InternalCsv.g:494:3: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // InternalCsv.g:495:3: ( rule__JvmLowerBound__Group__0 )\n // InternalCsv.g:495:4: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16507:1: ( ( '&' ) )\r\n // InternalDroneScript.g:16508:1: ( '&' )\r\n {\r\n // InternalDroneScript.g:16508:1: ( '&' )\r\n // InternalDroneScript.g:16509:2: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,94,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16411:1: ( ( '>' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16412:1: ( '>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16412:1: ( '>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16413:1: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n match(input,22,FOLLOW_22_in_rule__JvmParameterizedTypeReference__Group_1__3__Impl33143); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mT__191() throws RecognitionException {\n try {\n int _type = T__191;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:191:8: ( 'upperBound' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:191:10: 'upperBound'\n {\n match(\"upperBound\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "@In Integer max();", "@In Integer max();", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2188:1: ( ruleJvmLowerBound EOF )\r\n // InternalDroneScript.g:2189:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2085:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2087:1: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:1: ( rule__JvmLowerBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:2: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound4393);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11562:1: ( ( '>' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11563:1: ( '>' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11563:1: ( '>' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11564:1: '>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n match(input,19,FOLLOW_19_in_rule__JvmParameterizedTypeReference__Group_1__3__Impl23207); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "boolean impliedByUpperBound(InfinitNumber ubound) {\n\t\treturn ubound.lesseq(mBound);\n\t}", "public final EObject ruleMaxOperator() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4922:28: ( ( () otherlv_1= 'max' ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4923:1: ( () otherlv_1= 'max' )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4923:1: ( () otherlv_1= 'max' )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4923:2: () otherlv_1= 'max'\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4923:2: ()\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4924:5: \r\n {\r\n if ( state.backtracking==0 ) {\r\n\r\n current = forceCreateModelElement(\r\n grammarAccess.getMaxOperatorAccess().getMaxOperatorAction_0(),\r\n current);\r\n \r\n }\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,68,FOLLOW_68_in_ruleMaxOperator11117); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getMaxOperatorAccess().getMaxKeyword_1());\r\n \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }" ]
[ "0.8401834", "0.8363505", "0.8344352", "0.7944331", "0.7929878", "0.7874285", "0.7859059", "0.7821965", "0.7788797", "0.77549714", "0.7664795", "0.76368743", "0.7419149", "0.7389376", "0.73201406", "0.73148346", "0.7282669", "0.720371", "0.71810937", "0.7158142", "0.71437055", "0.70941854", "0.7081242", "0.70628923", "0.7021093", "0.69230807", "0.69025785", "0.6895394", "0.6878243", "0.67184997", "0.67011595", "0.66836977", "0.6638245", "0.6614726", "0.6601768", "0.65965194", "0.658327", "0.6490341", "0.6483241", "0.635863", "0.6241425", "0.62116563", "0.615142", "0.6084371", "0.6050686", "0.6018657", "0.5990396", "0.5983014", "0.59591645", "0.5952463", "0.5946176", "0.5935396", "0.5935396", "0.58902615", "0.57892036", "0.57419276", "0.5721713", "0.57061505", "0.57016134", "0.56179494", "0.5556481", "0.55467594", "0.5485532", "0.5446253", "0.54386896", "0.5391188", "0.5341257", "0.5334043", "0.5328036", "0.5309067", "0.5308282", "0.5299899", "0.5292367", "0.52742666", "0.52661747", "0.52420473", "0.5214892", "0.521013", "0.520262", "0.51875085", "0.5113928", "0.5102592", "0.50713176", "0.50661016", "0.5060901", "0.5054959", "0.5042991", "0.50288135", "0.50287026", "0.50190866", "0.49821326", "0.4973634", "0.49671486", "0.4962031", "0.4962031", "0.4959828", "0.49526623", "0.49521688", "0.49406525", "0.49250084" ]
0.8564759
0
$ANTLR end "ruleJvmUpperBound" $ANTLR start "entryRuleJvmUpperBoundAnded" InternalCsv.g:454:1: entryRuleJvmUpperBoundAnded : ruleJvmUpperBoundAnded EOF ;
public final void entryRuleJvmUpperBoundAnded() throws RecognitionException { try { // InternalCsv.g:455:1: ( ruleJvmUpperBoundAnded EOF ) // InternalCsv.g:456:1: ruleJvmUpperBoundAnded EOF { if ( state.backtracking==0 ) { before(grammarAccess.getJvmUpperBoundAndedRule()); } pushFollow(FOLLOW_1); ruleJvmUpperBoundAnded(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmUpperBoundAndedRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // InternalCsv.g:430:1: ( ruleJvmUpperBound EOF )\n // InternalCsv.g:431:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1704:1: ( ruleJvmUpperBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1705:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound3573);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound3580); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2138:1: ( ruleJvmUpperBound EOF )\r\n // InternalDroneScript.g:2139:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2163:1: ( ruleJvmUpperBoundAnded EOF )\r\n // InternalDroneScript.g:2164:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1732:1: ( ruleJvmUpperBoundAnded EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1733:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded3633);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded3640); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2017:1: ( ruleJvmUpperBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2018:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound4240);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound4247); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2045:1: ( ruleJvmUpperBoundAnded EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2046:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded4300);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded4307); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmUpperBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2813:2: (iv_ruleJvmUpperBound= ruleJvmUpperBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2814:2: iv_ruleJvmUpperBound= ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound6604);\n iv_ruleJvmUpperBound=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmUpperBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound6614); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:442:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n // InternalCsv.g:444:3: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // InternalCsv.g:445:3: ( rule__JvmUpperBound__Group__0 )\n // InternalCsv.g:445:4: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1744:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1746:1: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:1: ( rule__JvmUpperBoundAnded__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:2: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded3666);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:467:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // InternalCsv.g:469:3: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:470:3: ( rule__JvmUpperBoundAnded__Group__0 )\n // InternalCsv.g:470:4: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2057:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2059:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:2: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded4333);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1716:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1718:1: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:1: ( rule__JvmUpperBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:2: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound3606);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2175:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2177:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2178:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2178:4: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2150:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // InternalDroneScript.g:2152:3: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2153:3: ( rule__JvmUpperBound__Group__0 )\r\n // InternalDroneScript.g:2153:4: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4025:1: ( ( ruleJvmUpperBound ) )\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n {\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n // InternalCsv.g:4027:3: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2029:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2031:1: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:1: ( rule__JvmUpperBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:2: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound4273);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19368:1: ( ( ruleJvmUpperBound ) )\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n {\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n // InternalDroneScript.g:19370:3: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13552:1: ( ( ruleJvmUpperBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13554:1: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_027241);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19091:1: ( ( ruleJvmUpperBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19093:1: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_038590);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19383:1: ( ( ruleJvmUpperBoundAnded ) )\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n {\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n // InternalDroneScript.g:19385:3: ruleJvmUpperBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4040:1: ( ( ruleJvmUpperBoundAnded ) )\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n {\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n // InternalCsv.g:4042:3: ruleJvmUpperBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2824:28: ( (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:3: otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,58,FOLLOW_58_in_ruleJvmUpperBound6651); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2829:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2831:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmUpperBound6672);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmUpperBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3004:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // InternalCsv.g:3005:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16441:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // InternalDroneScript.g:16442:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11748:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11749:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__023556);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__023559);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11811:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11812:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__023679);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__023682);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11853:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11854:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11854:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11855:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11856:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11856:2: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__TypeReferenceAssignment_1_in_rule__JvmUpperBoundAnded__Group__1__Impl23768);\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3058:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // InternalCsv.g:3059:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16597:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16598:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__033492);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__033495);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16660:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16661:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__033615);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__033618);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:505:1: ( ruleJvmLowerBoundAnded EOF )\n // InternalCsv.g:506:1: ruleJvmLowerBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11790:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11792:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:2: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl23645);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11760:1: ( ( 'extends' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11762:1: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,65,FOLLOW_65_in_rule__JvmUpperBound__Group__0__Impl23587); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16609:1: ( ( 'extends' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16611:1: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,126,FOLLOW_126_in_rule__JvmUpperBound__Group__0__Impl33523); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16495:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16496:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16702:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16703:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16703:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16704:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16705:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16705:2: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__TypeReferenceAssignment_1_in_rule__JvmUpperBoundAnded__Group__1__Impl33704);\r\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\r\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\r\n\t}", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16453:1: ( ( 'extends' ) )\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n // InternalDroneScript.g:16455:2: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\n\t}", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\n\t}", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3016:1: ( ( 'extends' ) )\n // InternalCsv.g:3017:1: ( 'extends' )\n {\n // InternalCsv.g:3017:1: ( 'extends' )\n // InternalCsv.g:3018:2: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,35,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3031:1: ( rule__JvmUpperBound__Group__1__Impl )\n // InternalCsv.g:3032:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11779:1: ( rule__JvmUpperBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11780:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__123618);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11842:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11843:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__123741);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11823:1: ( ( '&' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11825:1: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,66,FOLLOW_66_in_rule__JvmUpperBoundAnded__Group__0__Impl23710); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16639:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16641:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:2: rule__JvmUpperBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl33581);\r\n rule__JvmUpperBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16468:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // InternalDroneScript.g:16469:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // InternalCsv.g:480:1: ( ruleJvmLowerBound EOF )\n // InternalCsv.g:481:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16672:1: ( ( '&' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16673:1: ( '&' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16673:1: ( '&' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16674:1: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,127,FOLLOW_127_in_rule__JvmUpperBoundAnded__Group__0__Impl33646); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16691:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16692:2: rule__JvmUpperBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__133677);\r\n rule__JvmUpperBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2213:1: ( ruleJvmLowerBoundAnded EOF )\r\n // InternalDroneScript.g:2214:1: ruleJvmLowerBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16628:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16629:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__133554);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3042:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3044:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3045:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // InternalCsv.g:3045:3: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3085:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // InternalCsv.g:3086:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3070:1: ( ( '&' ) )\n // InternalCsv.g:3071:1: ( '&' )\n {\n // InternalCsv.g:3071:1: ( '&' )\n // InternalCsv.g:3072:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public V getUpperBound();", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1760:1: ( ruleJvmLowerBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1761:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound3693);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound3700); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3096:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3097:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3097:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3098:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3099:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3099:3: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n EObject lv_constraints_2_0 = null;\n\n EObject lv_constraints_3_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2756:28: ( ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2758:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,26,FOLLOW_26_in_ruleJvmWildcardTypeReference6517); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:1: ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n int alt38=3;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==58) ) {\n alt38=1;\n }\n else if ( (LA38_0==59) ) {\n alt38=2;\n }\n switch (alt38) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2769:3: lv_constraints_2_0= ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_ruleJvmWildcardTypeReference6539);\n lv_constraints_2_0=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_2_0, \n \t\t\"JvmUpperBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2788:3: lv_constraints_3_0= ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_ruleJvmWildcardTypeReference6566);\n lv_constraints_3_0=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_3_0, \n \t\t\"JvmLowerBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16522:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\r\n // InternalDroneScript.g:16523:2: rule__JvmUpperBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16479:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16480:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16480:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16481:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16482:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16482:3: rule__JvmUpperBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n\tprotected void setUpperBound() {\n\t\t\n\t}", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16533:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16534:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16534:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16535:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16536:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16536:3: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2073:1: ( ruleJvmLowerBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2074:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound4360);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound4367); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2188:1: ( ruleJvmLowerBound EOF )\r\n // InternalDroneScript.g:2189:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13597:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13599:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_127334);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13582:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13584:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_127303);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16507:1: ( ( '&' ) )\r\n // InternalDroneScript.g:16508:1: ( '&' )\r\n {\r\n // InternalDroneScript.g:16508:1: ( '&' )\r\n // InternalDroneScript.g:16509:2: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,94,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void addUpperConstraint(String type) {\n\t\tfinal JvmUpperBound constraint = this.jvmTypesFactory.createJvmUpperBound();\n\t\tconstraint.setTypeReference(newTypeRef(this.context, type));\n\t\tgetJvmTypeParameter().getConstraints().add(constraint);\n\t}", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19136:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19138:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_138683);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setUpperBound(String upper) {\n upperBound = upper;\n }", "TrackingToken upperBound();", "public final void mT__21() throws RecognitionException {\n try {\n int _type = T__21;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:21:7: ( 'UpperBoundType' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:21:9: 'UpperBoundType'\n {\n match(\"UpperBoundType\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "@Override\n\tprotected double getUpperBound() {\n\t\treturn 0;\n\t}", "public final EObject entryRuleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmLowerBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2856:2: (iv_ruleJvmLowerBound= ruleJvmLowerBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2857:2: iv_ruleJvmLowerBound= ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound6708);\n iv_ruleJvmLowerBound=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmLowerBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound6718); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void mT__20() throws RecognitionException {\n try {\n int _type = T__20;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:20:7: ( 'UpperBoundType1' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:20:9: 'UpperBoundType1'\n {\n match(\"UpperBoundType1\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getUpperBound() {\n\t\treturn upperBound;\n\t}", "public int getUpperBound() {\r\n return upperBound;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19121:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19123:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_138652);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public abstract double[] getUpperBound();", "public int getUpperBound() {\n\t\treturn this.upperBound;\n\t}", "private static int getUpperBound(String expression) {\r\n\t\t\r\n\t\texpression = expression.substring(7, expression.length());\r\n\t\t\r\n\t\treturn new Integer(expression);\r\n\t\t\r\n\t}", "boolean impliedByUpperBound(InfinitNumber ubound) {\n\t\treturn ubound.lesseq(mBound);\n\t}", "public final EObject entryRuleGreaterThanOperator() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleGreaterThanOperator = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4632:2: (iv_ruleGreaterThanOperator= ruleGreaterThanOperator EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4633:2: iv_ruleGreaterThanOperator= ruleGreaterThanOperator EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getGreaterThanOperatorRule()); \r\n }\r\n pushFollow(FOLLOW_ruleGreaterThanOperator_in_entryRuleGreaterThanOperator10233);\r\n iv_ruleGreaterThanOperator=ruleGreaterThanOperator();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleGreaterThanOperator; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleGreaterThanOperator10243); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleMaxOperator() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleMaxOperator = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4911:2: (iv_ruleMaxOperator= ruleMaxOperator EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4912:2: iv_ruleMaxOperator= ruleMaxOperator EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getMaxOperatorRule()); \r\n }\r\n pushFollow(FOLLOW_ruleMaxOperator_in_entryRuleMaxOperator11061);\r\n iv_ruleMaxOperator=ruleMaxOperator();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleMaxOperator; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleMaxOperator11071); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public void setUpperBound(final int upperBound) {\r\n this.upperBound = upperBound;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void mT__191() throws RecognitionException {\n try {\n int _type = T__191;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:191:8: ( 'upperBound' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:191:10: 'upperBound'\n {\n match(\"upperBound\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public static void main(String[] args)\r\n\t\t\t{\n\t\t\t\tprintLowerAndUpperBound();\r\n\t\t\t}", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19443:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19445:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private void getMaxValue(){\n maxValue = array[0];\n for(int preIndex = -1; preIndex<number; preIndex++){\n for(int sufIndex = preIndex+1; sufIndex<=number;sufIndex++){\n long maxTmp = getPrefixValue(preIndex)^getSuffixCValue(sufIndex);\n if(maxTmp>maxValue){\n maxValue = maxTmp;\n }\n }\n }\n System.out.println(maxValue);\n }", "@In Integer max();", "@In Integer max();", "public final EObject ruleMaximumFunction() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n Token otherlv_3=null;\r\n Token otherlv_5=null;\r\n EObject lv_operator_0_0 = null;\r\n\r\n EObject lv_values_2_0 = null;\r\n\r\n EObject lv_values_4_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3094:28: ( ( ( (lv_operator_0_0= ruleMaxOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')' ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3095:1: ( ( (lv_operator_0_0= ruleMaxOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')' )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3095:1: ( ( (lv_operator_0_0= ruleMaxOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')' )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3095:2: ( (lv_operator_0_0= ruleMaxOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')'\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3095:2: ( (lv_operator_0_0= ruleMaxOperator ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3096:1: (lv_operator_0_0= ruleMaxOperator )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3096:1: (lv_operator_0_0= ruleMaxOperator )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3097:3: lv_operator_0_0= ruleMaxOperator\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getMaximumFunctionAccess().getOperatorMaxOperatorParserRuleCall_0_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleMaxOperator_in_ruleMaximumFunction6654);\r\n lv_operator_0_0=ruleMaxOperator();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getMaximumFunctionRule());\r\n \t }\r\n \t\tset(\r\n \t\t\tcurrent, \r\n \t\t\t\"operator\",\r\n \t\tlv_operator_0_0, \r\n \t\t\"MaxOperator\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,43,FOLLOW_43_in_ruleMaximumFunction6666); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getMaximumFunctionAccess().getLeftParenthesisKeyword_1());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3117:1: ( (lv_values_2_0= ruleNumberExpression ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3118:1: (lv_values_2_0= ruleNumberExpression )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3118:1: (lv_values_2_0= ruleNumberExpression )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3119:3: lv_values_2_0= ruleNumberExpression\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getMaximumFunctionAccess().getValuesNumberExpressionParserRuleCall_2_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleNumberExpression_in_ruleMaximumFunction6687);\r\n lv_values_2_0=ruleNumberExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getMaximumFunctionRule());\r\n \t }\r\n \t\tadd(\r\n \t\t\tcurrent, \r\n \t\t\t\"values\",\r\n \t\tlv_values_2_0, \r\n \t\t\"NumberExpression\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3135:2: (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )*\r\n loop42:\r\n do {\r\n int alt42=2;\r\n int LA42_0 = input.LA(1);\r\n\r\n if ( (LA42_0==20) ) {\r\n alt42=1;\r\n }\r\n\r\n\r\n switch (alt42) {\r\n \tcase 1 :\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3135:4: otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) )\r\n \t {\r\n \t otherlv_3=(Token)match(input,20,FOLLOW_20_in_ruleMaximumFunction6700); if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t \tnewLeafNode(otherlv_3, grammarAccess.getMaximumFunctionAccess().getCommaKeyword_3_0());\r\n \t \r\n \t }\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3139:1: ( (lv_values_4_0= ruleNumberExpression ) )\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3140:1: (lv_values_4_0= ruleNumberExpression )\r\n \t {\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3140:1: (lv_values_4_0= ruleNumberExpression )\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3141:3: lv_values_4_0= ruleNumberExpression\r\n \t {\r\n \t if ( state.backtracking==0 ) {\r\n \t \r\n \t \t newCompositeNode(grammarAccess.getMaximumFunctionAccess().getValuesNumberExpressionParserRuleCall_3_1_0()); \r\n \t \t \r\n \t }\r\n \t pushFollow(FOLLOW_ruleNumberExpression_in_ruleMaximumFunction6721);\r\n \t lv_values_4_0=ruleNumberExpression();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t \t if (current==null) {\r\n \t \t current = createModelElementForParent(grammarAccess.getMaximumFunctionRule());\r\n \t \t }\r\n \t \t\tadd(\r\n \t \t\t\tcurrent, \r\n \t \t\t\t\"values\",\r\n \t \t\tlv_values_4_0, \r\n \t \t\t\"NumberExpression\");\r\n \t \t afterParserOrEnumRuleCall();\r\n \t \t \r\n \t }\r\n\r\n \t }\r\n\r\n\r\n \t }\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop42;\r\n }\r\n } while (true);\r\n\r\n otherlv_5=(Token)match(input,44,FOLLOW_44_in_ruleMaximumFunction6735); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_5, grammarAccess.getMaximumFunctionAccess().getRightParenthesisKeyword_4());\r\n \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:517:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n // InternalCsv.g:519:3: ( rule__JvmLowerBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:520:3: ( rule__JvmLowerBoundAnded__Group__0 )\n // InternalCsv.g:520:4: rule__JvmLowerBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19428:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19430:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.7961147", "0.79026204", "0.7895086", "0.78634256", "0.7862682", "0.780414", "0.77141535", "0.75695544", "0.7119448", "0.7094742", "0.7084445", "0.70117414", "0.69723743", "0.6915495", "0.6901467", "0.68976116", "0.6847576", "0.6804156", "0.67669374", "0.663464", "0.6633983", "0.65402025", "0.65302837", "0.6330662", "0.61836714", "0.6146274", "0.6136915", "0.6099594", "0.6092847", "0.60754085", "0.6043212", "0.6028625", "0.6020448", "0.60134614", "0.6011607", "0.59858304", "0.5958919", "0.59202725", "0.59045476", "0.5894678", "0.5894678", "0.58898354", "0.5823891", "0.57967824", "0.5788005", "0.5787176", "0.5773045", "0.5715696", "0.5709494", "0.56832576", "0.5616861", "0.5604627", "0.55967295", "0.5574527", "0.55588096", "0.5552898", "0.5503647", "0.5500634", "0.5479678", "0.5460448", "0.5437283", "0.541324", "0.53620845", "0.53278065", "0.5304909", "0.5278045", "0.5277516", "0.5182496", "0.51511014", "0.5101202", "0.50603175", "0.50321704", "0.5008567", "0.49930292", "0.49664196", "0.49575934", "0.49571657", "0.49321443", "0.4924235", "0.4922288", "0.48987415", "0.48737815", "0.48377523", "0.48311087", "0.47840226", "0.47701132", "0.47499427", "0.47132474", "0.4709766", "0.47046778", "0.46908888", "0.4677065", "0.4627425", "0.460547", "0.4596448", "0.4596448", "0.45955122", "0.4570226", "0.4561482", "0.45549408" ]
0.80571073
0
$ANTLR end "entryRuleJvmUpperBoundAnded" $ANTLR start "ruleJvmUpperBoundAnded" InternalCsv.g:463:1: ruleJvmUpperBoundAnded : ( ( rule__JvmUpperBoundAnded__Group__0 ) ) ;
public final void ruleJvmUpperBoundAnded() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:467:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) ) // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) ) { // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) ) // InternalCsv.g:469:3: ( rule__JvmUpperBoundAnded__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); } // InternalCsv.g:470:3: ( rule__JvmUpperBoundAnded__Group__0 ) // InternalCsv.g:470:4: rule__JvmUpperBoundAnded__Group__0 { pushFollow(FOLLOW_2); rule__JvmUpperBoundAnded__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1744:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1746:1: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:1: ( rule__JvmUpperBoundAnded__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:2: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded3666);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:442:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n // InternalCsv.g:444:3: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // InternalCsv.g:445:3: ( rule__JvmUpperBound__Group__0 )\n // InternalCsv.g:445:4: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2057:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2059:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:2: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded4333);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2175:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2177:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2178:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2178:4: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1716:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1718:1: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:1: ( rule__JvmUpperBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:2: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound3606);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2029:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2031:1: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:1: ( rule__JvmUpperBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:2: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound4273);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2150:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // InternalDroneScript.g:2152:3: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2153:3: ( rule__JvmUpperBound__Group__0 )\r\n // InternalDroneScript.g:2153:4: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3004:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // InternalCsv.g:3005:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3058:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // InternalCsv.g:3059:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11811:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11812:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__023679);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__023682);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16441:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // InternalDroneScript.g:16442:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16495:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16496:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11748:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11749:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__023556);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__023559);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16660:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16661:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__033615);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__033618);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16597:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16598:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__033492);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__033495);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:455:1: ( ruleJvmUpperBoundAnded EOF )\n // InternalCsv.g:456:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // InternalCsv.g:430:1: ( ruleJvmUpperBound EOF )\n // InternalCsv.g:431:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1732:1: ( ruleJvmUpperBoundAnded EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1733:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded3633);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded3640); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1704:1: ( ruleJvmUpperBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1705:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound3573);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound3580); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2163:1: ( ruleJvmUpperBoundAnded EOF )\r\n // InternalDroneScript.g:2164:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2138:1: ( ruleJvmUpperBound EOF )\r\n // InternalDroneScript.g:2139:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2017:1: ( ruleJvmUpperBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2018:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound4240);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound4247); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2045:1: ( ruleJvmUpperBoundAnded EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2046:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded4300);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded4307); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11842:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11843:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__123741);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11823:1: ( ( '&' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11825:1: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,66,FOLLOW_66_in_rule__JvmUpperBoundAnded__Group__0__Impl23710); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3031:1: ( rule__JvmUpperBound__Group__1__Impl )\n // InternalCsv.g:3032:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11779:1: ( rule__JvmUpperBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11780:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__123618);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmUpperBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2813:2: (iv_ruleJvmUpperBound= ruleJvmUpperBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2814:2: iv_ruleJvmUpperBound= ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound6604);\n iv_ruleJvmUpperBound=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmUpperBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound6614); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11760:1: ( ( 'extends' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11762:1: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,65,FOLLOW_65_in_rule__JvmUpperBound__Group__0__Impl23587); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16468:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // InternalDroneScript.g:16469:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16691:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16692:2: rule__JvmUpperBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__133677);\r\n rule__JvmUpperBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16672:1: ( ( '&' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16673:1: ( '&' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16673:1: ( '&' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16674:1: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,127,FOLLOW_127_in_rule__JvmUpperBoundAnded__Group__0__Impl33646); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16609:1: ( ( 'extends' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16611:1: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,126,FOLLOW_126_in_rule__JvmUpperBound__Group__0__Impl33523); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3085:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // InternalCsv.g:3086:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3016:1: ( ( 'extends' ) )\n // InternalCsv.g:3017:1: ( 'extends' )\n {\n // InternalCsv.g:3017:1: ( 'extends' )\n // InternalCsv.g:3018:2: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,35,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3070:1: ( ( '&' ) )\n // InternalCsv.g:3071:1: ( '&' )\n {\n // InternalCsv.g:3071:1: ( '&' )\n // InternalCsv.g:3072:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4025:1: ( ( ruleJvmUpperBound ) )\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n {\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n // InternalCsv.g:4027:3: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16628:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16629:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__133554);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16453:1: ( ( 'extends' ) )\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n // InternalDroneScript.g:16455:2: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11853:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11854:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11854:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11855:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11856:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11856:2: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__TypeReferenceAssignment_1_in_rule__JvmUpperBoundAnded__Group__1__Impl23768);\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16522:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\r\n // InternalDroneScript.g:16523:2: rule__JvmUpperBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19368:1: ( ( ruleJvmUpperBound ) )\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n {\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n // InternalDroneScript.g:19370:3: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11790:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11792:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:2: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl23645);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16702:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16703:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16703:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16704:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16705:1: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16705:2: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__TypeReferenceAssignment_1_in_rule__JvmUpperBoundAnded__Group__1__Impl33704);\r\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13552:1: ( ( ruleJvmUpperBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13554:1: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_027241);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3042:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3044:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3045:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // InternalCsv.g:3045:3: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19383:1: ( ( ruleJvmUpperBoundAnded ) )\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n {\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n // InternalDroneScript.g:19385:3: ruleJvmUpperBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4040:1: ( ( ruleJvmUpperBoundAnded ) )\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n {\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n // InternalCsv.g:4042:3: ruleJvmUpperBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19091:1: ( ( ruleJvmUpperBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19093:1: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_038590);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3096:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3097:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3097:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3098:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3099:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3099:3: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16639:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16641:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:2: rule__JvmUpperBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl33581);\r\n rule__JvmUpperBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16507:1: ( ( '&' ) )\r\n // InternalDroneScript.g:16508:1: ( '&' )\r\n {\r\n // InternalDroneScript.g:16508:1: ( '&' )\r\n // InternalDroneScript.g:16509:2: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,94,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2824:28: ( (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:3: otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,58,FOLLOW_58_in_ruleJvmUpperBound6651); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2829:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2831:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmUpperBound6672);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmUpperBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\r\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\r\n\t}", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\n\t}", "public XtypeGrammarAccess.JvmUpperBoundAndedElements getJvmUpperBoundAndedAccess() {\n\t\treturn gaXtype.getJvmUpperBoundAndedAccess();\n\t}", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16479:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16480:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16480:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16481:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16482:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16482:3: rule__JvmUpperBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16533:1: ( ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16534:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16534:1: ( ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16535:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16536:2: ( rule__JvmUpperBoundAnded__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16536:3: rule__JvmUpperBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:517:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n // InternalCsv.g:519:3: ( rule__JvmLowerBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:520:3: ( rule__JvmLowerBoundAnded__Group__0 )\n // InternalCsv.g:520:4: rule__JvmLowerBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3166:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\n // InternalCsv.g:3167:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tprotected void setUpperBound() {\n\t\t\n\t}", "public V getUpperBound();", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:505:1: ( ruleJvmLowerBoundAnded EOF )\n // InternalCsv.g:506:1: ruleJvmLowerBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2225:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2227:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2228:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2228:4: rule__JvmLowerBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16603:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16604:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmLowerBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2395:1: ( ( '>' ) )\n // InternalCsv.g:2396:1: ( '>' )\n {\n // InternalCsv.g:2396:1: ( '>' )\n // InternalCsv.g:2397:2: '>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n match(input,32,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3178:1: ( ( '&' ) )\n // InternalCsv.g:3179:1: ( '&' )\n {\n // InternalCsv.g:3179:1: ( '&' )\n // InternalCsv.g:3180:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "int getGroupIdUpperBound();", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15832:1: ( ( '>' ) )\r\n // InternalDroneScript.g:15833:1: ( '>' )\r\n {\r\n // InternalDroneScript.g:15833:1: ( '>' )\r\n // InternalDroneScript.g:15834:2: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n match(input,26,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2745:1: ( ( '>' ) )\n // InternalCsv.g:2746:1: ( '>' )\n {\n // InternalCsv.g:2746:1: ( '>' )\n // InternalCsv.g:2747:2: '>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_4_2_3()); \n }\n match(input,32,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_4_2_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:492:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n // InternalCsv.g:494:3: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // InternalCsv.g:495:3: ( rule__JvmLowerBound__Group__0 )\n // InternalCsv.g:495:4: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // InternalCsv.g:480:1: ( ruleJvmLowerBound EOF )\n // InternalCsv.g:481:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3112:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // InternalCsv.g:3113:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3193:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\n // InternalCsv.g:3194:2: rule__JvmLowerBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16182:1: ( ( '>' ) )\r\n // InternalDroneScript.g:16183:1: ( '>' )\r\n {\r\n // InternalDroneScript.g:16183:1: ( '>' )\r\n // InternalDroneScript.g:16184:2: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_4_2_3()); \r\n }\r\n match(input,26,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_4_2_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public int getUpperBound() {\n\t\treturn upperBound;\n\t}", "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1772:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1774:1: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:1: ( rule__JvmLowerBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:2: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound3726);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tprotected double getUpperBound() {\n\t\treturn 0;\n\t}", "public final EObject ruleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n EObject lv_constraints_2_0 = null;\n\n EObject lv_constraints_3_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2756:28: ( ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2758:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,26,FOLLOW_26_in_ruleJvmWildcardTypeReference6517); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:1: ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n int alt38=3;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==58) ) {\n alt38=1;\n }\n else if ( (LA38_0==59) ) {\n alt38=2;\n }\n switch (alt38) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2769:3: lv_constraints_2_0= ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_ruleJvmWildcardTypeReference6539);\n lv_constraints_2_0=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_2_0, \n \t\t\"JvmUpperBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2788:3: lv_constraints_3_0= ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_ruleJvmWildcardTypeReference6566);\n lv_constraints_3_0=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_3_0, \n \t\t\"JvmLowerBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11874:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11875:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__023802);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__023805);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getUpperBound() {\r\n return upperBound;\r\n }", "public void setUpperBound(String upper) {\n upperBound = upper;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2085:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2087:1: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:1: ( rule__JvmLowerBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:2: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound4393);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2213:1: ( ruleJvmLowerBoundAnded EOF )\r\n // InternalDroneScript.g:2214:1: ruleJvmLowerBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public int getUpperBound() {\n\t\treturn this.upperBound;\n\t}", "public void addUpperConstraint(String type) {\n\t\tfinal JvmUpperBound constraint = this.jvmTypesFactory.createJvmUpperBound();\n\t\tconstraint.setTypeReference(newTypeRef(this.context, type));\n\t\tgetJvmTypeParameter().getConstraints().add(constraint);\n\t}", "TrackingToken upperBound();", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16411:1: ( ( '>' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16412:1: ( '>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16412:1: ( '>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16413:1: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n match(input,22,FOLLOW_22_in_rule__JvmParameterizedTypeReference__Group_1__3__Impl33143); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1760:1: ( ruleJvmLowerBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1761:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound3693);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound3700); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Arguments__Group_2__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5465:1: ( ( '>' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5466:1: ( '>' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5466:1: ( '>' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5467:1: '>'\n {\n before(grammarAccess.getArgumentsAccess().getGreaterThanSignKeyword_2_4()); \n match(input,17,FOLLOW_17_in_rule__Arguments__Group_2__4__Impl10737); \n after(grammarAccess.getArgumentsAccess().getGreaterThanSignKeyword_2_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11562:1: ( ( '>' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11563:1: ( '>' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11563:1: ( '>' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11564:1: '>'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n match(input,19,FOLLOW_19_in_rule__JvmParameterizedTypeReference__Group_1__3__Impl23207); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16723:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16724:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__033738);\r\n rule__JvmLowerBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__033741);\r\n rule__JvmLowerBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public CategoryBuilder setUpperBound(float upperBound)\n {\n fUpperBound = upperBound;\n return this;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2200:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // InternalDroneScript.g:2202:3: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2203:3: ( rule__JvmLowerBound__Group__0 )\r\n // InternalDroneScript.g:2203:4: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public abstract double[] getUpperBound();", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13597:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13599:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_127334);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mT__21() throws RecognitionException {\n try {\n int _type = T__21;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:21:7: ( 'UpperBoundType' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:21:9: 'UpperBoundType'\n {\n match(\"UpperBoundType\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16630:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\r\n // InternalDroneScript.g:16631:2: rule__JvmLowerBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public UpperBoundTypeElements getUpperBoundTypeAccess() {\n\t\treturn pUpperBoundType;\n\t}", "public final void mT__20() throws RecognitionException {\n try {\n int _type = T__20;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:20:7: ( 'UpperBoundType1' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:20:9: 'UpperBoundType1'\n {\n match(\"UpperBoundType1\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }" ]
[ "0.82372075", "0.8230419", "0.8209027", "0.81427777", "0.80366397", "0.7992552", "0.7969103", "0.7833023", "0.77553904", "0.76944774", "0.7665391", "0.7621062", "0.76166195", "0.7608995", "0.7553886", "0.7498853", "0.7409121", "0.73277855", "0.7313605", "0.722391", "0.72130287", "0.7190906", "0.71460307", "0.7130355", "0.7103923", "0.708034", "0.70690787", "0.701812", "0.6990959", "0.6985736", "0.6942672", "0.6941403", "0.69408256", "0.6919231", "0.6919036", "0.6901547", "0.6875865", "0.6873079", "0.68456167", "0.68352413", "0.6817383", "0.6705267", "0.66600454", "0.6643746", "0.65862375", "0.6468189", "0.6452562", "0.6431991", "0.64205825", "0.6403941", "0.6340613", "0.6305954", "0.615915", "0.61405927", "0.61071444", "0.61071444", "0.6033446", "0.60253286", "0.58948636", "0.5702301", "0.54886943", "0.54616034", "0.54437983", "0.54430467", "0.5329603", "0.53221047", "0.524081", "0.519718", "0.5187689", "0.5178276", "0.5125639", "0.5113367", "0.51015496", "0.5099178", "0.5086076", "0.5077242", "0.50769687", "0.50665873", "0.5054949", "0.5043699", "0.5038971", "0.5037911", "0.49863145", "0.49804112", "0.49716088", "0.4959692", "0.49561873", "0.49494618", "0.4939573", "0.49186316", "0.49106127", "0.4881349", "0.486955", "0.4862243", "0.4855526", "0.48547757", "0.4853954", "0.48449796", "0.48125935", "0.4801091" ]
0.8374056
0
$ANTLR end "ruleJvmUpperBoundAnded" $ANTLR start "entryRuleJvmLowerBound" InternalCsv.g:479:1: entryRuleJvmLowerBound : ruleJvmLowerBound EOF ;
public final void entryRuleJvmLowerBound() throws RecognitionException { try { // InternalCsv.g:480:1: ( ruleJvmLowerBound EOF ) // InternalCsv.g:481:1: ruleJvmLowerBound EOF { if ( state.backtracking==0 ) { before(grammarAccess.getJvmLowerBoundRule()); } pushFollow(FOLLOW_1); ruleJvmLowerBound(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmLowerBoundRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1760:1: ( ruleJvmLowerBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1761:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound3693);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound3700); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2073:1: ( ruleJvmLowerBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2074:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound4360);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound4367); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2188:1: ( ruleJvmLowerBound EOF )\r\n // InternalDroneScript.g:2189:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmLowerBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2856:2: (iv_ruleJvmLowerBound= ruleJvmLowerBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2857:2: iv_ruleJvmLowerBound= ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound6708);\n iv_ruleJvmLowerBound=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmLowerBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound6718); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:505:1: ( ruleJvmLowerBoundAnded EOF )\n // InternalCsv.g:506:1: ruleJvmLowerBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2213:1: ( ruleJvmLowerBoundAnded EOF )\r\n // InternalDroneScript.g:2214:1: ruleJvmLowerBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2138:1: ( ruleJvmUpperBound EOF )\r\n // InternalDroneScript.g:2139:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // InternalCsv.g:430:1: ( ruleJvmUpperBound EOF )\n // InternalCsv.g:431:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:492:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n // InternalCsv.g:494:3: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // InternalCsv.g:495:3: ( rule__JvmLowerBound__Group__0 )\n // InternalCsv.g:495:4: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1772:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1774:1: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:1: ( rule__JvmLowerBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:2: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound3726);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19398:1: ( ( ruleJvmLowerBound ) )\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n {\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n // InternalDroneScript.g:19400:3: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2085:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2087:1: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:1: ( rule__JvmLowerBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:2: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound4393);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1704:1: ( ruleJvmUpperBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1705:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound3573);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound3580); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4055:1: ( ( ruleJvmLowerBound ) )\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n {\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n // InternalCsv.g:4057:3: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2017:1: ( ruleJvmUpperBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2018:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound4240);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound4247); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19106:1: ( ( ruleJvmLowerBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19108:1: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_138621);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13567:1: ( ( ruleJvmLowerBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13569:1: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_127272);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2200:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // InternalDroneScript.g:2202:3: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2203:3: ( rule__JvmLowerBound__Group__0 )\r\n // InternalDroneScript.g:2203:4: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:455:1: ( ruleJvmUpperBoundAnded EOF )\n // InternalCsv.g:456:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2163:1: ( ruleJvmUpperBoundAnded EOF )\r\n // InternalDroneScript.g:2164:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2867:28: ( (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:1: (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:1: (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:3: otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,59,FOLLOW_59_in_ruleJvmLowerBound6755); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2872:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2873:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2873:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2874:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmLowerBound6776);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmLowerBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3112:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // InternalCsv.g:3113:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19413:1: ( ( ruleJvmLowerBoundAnded ) )\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n {\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n // InternalDroneScript.g:19415:3: ruleJvmLowerBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:517:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n // InternalCsv.g:519:3: ( rule__JvmLowerBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:520:3: ( rule__JvmLowerBoundAnded__Group__0 )\n // InternalCsv.g:520:4: rule__JvmLowerBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmUpperBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2813:2: (iv_ruleJvmUpperBound= ruleJvmUpperBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2814:2: iv_ruleJvmUpperBound= ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound6604);\n iv_ruleJvmUpperBound=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmUpperBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound6614); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1732:1: ( ruleJvmUpperBoundAnded EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1733:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded3633);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded3640); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4070:1: ( ( ruleJvmLowerBoundAnded ) )\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n {\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n // InternalCsv.g:4072:3: ruleJvmLowerBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2045:1: ( ruleJvmUpperBoundAnded EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2046:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded4300);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded4307); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16549:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\r\n // InternalDroneScript.g:16550:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmLowerBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3139:1: ( rule__JvmLowerBound__Group__1__Impl )\n // InternalCsv.g:3140:2: rule__JvmLowerBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11874:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11875:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__023802);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__023805);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16723:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16724:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__033738);\r\n rule__JvmLowerBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__033741);\r\n rule__JvmLowerBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2225:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2227:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2228:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2228:4: rule__JvmLowerBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11905:1: ( rule__JvmLowerBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11906:2: rule__JvmLowerBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1__Impl_in_rule__JvmLowerBound__Group__123864);\n rule__JvmLowerBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4025:1: ( ( ruleJvmUpperBound ) )\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n {\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n // InternalCsv.g:4027:3: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3166:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\n // InternalCsv.g:3167:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16576:1: ( rule__JvmLowerBound__Group__1__Impl )\r\n // InternalDroneScript.g:16577:2: rule__JvmLowerBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11916:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11917:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11917:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11918:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11919:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11919:2: rule__JvmLowerBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__TypeReferenceAssignment_1_in_rule__JvmLowerBound__Group__1__Impl23891);\n rule__JvmLowerBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16754:1: ( rule__JvmLowerBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16755:2: rule__JvmLowerBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1__Impl_in_rule__JvmLowerBound__Group__133800);\r\n rule__JvmLowerBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19368:1: ( ( ruleJvmUpperBound ) )\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n {\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n // InternalDroneScript.g:19370:3: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16735:1: ( ( 'super' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16736:1: ( 'super' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16736:1: ( 'super' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16737:1: 'super'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n match(input,39,FOLLOW_39_in_rule__JvmLowerBound__Group__0__Impl33769); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:442:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n // InternalCsv.g:444:3: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // InternalCsv.g:445:3: ( rule__JvmUpperBound__Group__0 )\n // InternalCsv.g:445:4: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11886:1: ( ( 'super' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11887:1: ( 'super' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11887:1: ( 'super' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11888:1: 'super'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n match(input,31,FOLLOW_31_in_rule__JvmLowerBound__Group__0__Impl23833); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1716:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1718:1: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:1: ( rule__JvmUpperBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:2: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound3606);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3124:1: ( ( 'super' ) )\n // InternalCsv.g:3125:1: ( 'super' )\n {\n // InternalCsv.g:3125:1: ( 'super' )\n // InternalCsv.g:3126:2: 'super'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n match(input,37,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16603:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16604:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmLowerBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3150:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3151:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3151:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3152:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3153:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n // InternalCsv.g:3153:3: rule__JvmLowerBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16765:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16766:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16766:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16767:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16768:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16768:2: rule__JvmLowerBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__TypeReferenceAssignment_1_in_rule__JvmLowerBound__Group__1__Impl33827);\r\n rule__JvmLowerBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2150:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // InternalDroneScript.g:2152:3: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2153:3: ( rule__JvmUpperBound__Group__0 )\r\n // InternalDroneScript.g:2153:4: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3193:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\n // InternalCsv.g:3194:2: rule__JvmLowerBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2029:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2031:1: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:1: ( rule__JvmUpperBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:2: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound4273);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public V getLowerBound();", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13552:1: ( ( ruleJvmUpperBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13553:1: ( ruleJvmUpperBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13554:1: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_027241);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19383:1: ( ( ruleJvmUpperBoundAnded ) )\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n {\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n // InternalDroneScript.g:19385:3: ruleJvmUpperBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2824:28: ( (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:3: otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,58,FOLLOW_58_in_ruleJvmUpperBound6651); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2829:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2831:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmUpperBound6672);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmUpperBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16561:1: ( ( 'super' ) )\r\n // InternalDroneScript.g:16562:1: ( 'super' )\r\n {\r\n // InternalDroneScript.g:16562:1: ( 'super' )\r\n // InternalDroneScript.g:16563:2: 'super'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n match(input,49,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4040:1: ( ( ruleJvmUpperBoundAnded ) )\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n {\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n // InternalCsv.g:4042:3: ruleJvmUpperBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19091:1: ( ( ruleJvmUpperBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19092:1: ( ruleJvmUpperBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19093:1: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_038590);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\r\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\r\n\t}", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\n\t}", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\n\t}", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16630:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\r\n // InternalDroneScript.g:16631:2: rule__JvmLowerBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16587:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16588:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16588:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16589:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16590:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16590:3: rule__JvmLowerBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3016:1: ( ( 'extends' ) )\n // InternalCsv.g:3017:1: ( 'extends' )\n {\n // InternalCsv.g:3017:1: ( 'extends' )\n // InternalCsv.g:3018:2: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,35,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public int getLowerBound ();", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16453:1: ( ( 'extends' ) )\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n // InternalDroneScript.g:16455:2: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11760:1: ( ( 'extends' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11762:1: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,65,FOLLOW_65_in_rule__JvmUpperBound__Group__0__Impl23587); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1744:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1746:1: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:1: ( rule__JvmUpperBoundAnded__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:2: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded3666);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tprotected void setLowerBound() {\n\t\t\n\t}", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3004:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // InternalCsv.g:3005:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16609:1: ( ( 'extends' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16611:1: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,126,FOLLOW_126_in_rule__JvmUpperBound__Group__0__Impl33523); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:467:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // InternalCsv.g:469:3: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:470:3: ( rule__JvmUpperBoundAnded__Group__0 )\n // InternalCsv.g:470:4: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2057:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2059:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:2: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded4333);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setLowerBound(String lower) {\n lowerBound = lower;\n }", "public void setLowerBound (int lowerBound) throws ModelException;", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11790:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11792:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:2: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl23645);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n EObject lv_constraints_2_0 = null;\n\n EObject lv_constraints_3_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2756:28: ( ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2758:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,26,FOLLOW_26_in_ruleJvmWildcardTypeReference6517); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:1: ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n int alt38=3;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==58) ) {\n alt38=1;\n }\n else if ( (LA38_0==59) ) {\n alt38=2;\n }\n switch (alt38) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2769:3: lv_constraints_2_0= ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_ruleJvmWildcardTypeReference6539);\n lv_constraints_2_0=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_2_0, \n \t\t\"JvmUpperBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2788:3: lv_constraints_3_0= ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_ruleJvmWildcardTypeReference6566);\n lv_constraints_3_0=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_3_0, \n \t\t\"JvmLowerBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public void addLowerConstraint(String type) {\n\t\tfinal JvmLowerBound constraint = this.jvmTypesFactory.createJvmLowerBound();\n\t\tconstraint.setTypeReference(newTypeRef(this.context, type));\n\t\tgetJvmTypeParameter().getConstraints().add(constraint);\n\t}", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3031:1: ( rule__JvmUpperBound__Group__1__Impl )\n // InternalCsv.g:3032:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2175:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2177:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2178:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2178:4: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11779:1: ( rule__JvmUpperBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11780:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__123618);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3178:1: ( ( '&' ) )\n // InternalCsv.g:3179:1: ( '&' )\n {\n // InternalCsv.g:3179:1: ( '&' )\n // InternalCsv.g:3180:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11748:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11749:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__023556);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__023559);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16441:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // InternalDroneScript.g:16442:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3204:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3206:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3207:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3207:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16468:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // InternalDroneScript.g:16469:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16597:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16598:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__033492);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__033495);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n\tprotected double getLowerBound() {\n\t\treturn 0;\n\t}", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16628:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16629:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__133554);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16639:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16640:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16641:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16642:2: rule__JvmUpperBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl33581);\r\n rule__JvmUpperBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\r\n public Integer minLowerBound() {\r\n return this.getImpl().minLowerBound();\r\n }", "public final EObject ruleRange() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n AntlrDatatypeRuleToken lv_LOWER_BOUND_0_0 = null;\n\n AntlrDatatypeRuleToken lv_HIGHER_BOUND_2_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:3362:2: ( ( ( (lv_LOWER_BOUND_0_0= ruleNUMBER ) ) otherlv_1= ':' ( (lv_HIGHER_BOUND_2_0= ruleNUMBER ) ) ) )\n // InternalMyDsl.g:3363:2: ( ( (lv_LOWER_BOUND_0_0= ruleNUMBER ) ) otherlv_1= ':' ( (lv_HIGHER_BOUND_2_0= ruleNUMBER ) ) )\n {\n // InternalMyDsl.g:3363:2: ( ( (lv_LOWER_BOUND_0_0= ruleNUMBER ) ) otherlv_1= ':' ( (lv_HIGHER_BOUND_2_0= ruleNUMBER ) ) )\n // InternalMyDsl.g:3364:3: ( (lv_LOWER_BOUND_0_0= ruleNUMBER ) ) otherlv_1= ':' ( (lv_HIGHER_BOUND_2_0= ruleNUMBER ) )\n {\n // InternalMyDsl.g:3364:3: ( (lv_LOWER_BOUND_0_0= ruleNUMBER ) )\n // InternalMyDsl.g:3365:4: (lv_LOWER_BOUND_0_0= ruleNUMBER )\n {\n // InternalMyDsl.g:3365:4: (lv_LOWER_BOUND_0_0= ruleNUMBER )\n // InternalMyDsl.g:3366:5: lv_LOWER_BOUND_0_0= ruleNUMBER\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getRangeAccess().getLOWER_BOUNDNUMBERParserRuleCall_0_0());\n \t\t\t\t\n }\n pushFollow(FOLLOW_28);\n lv_LOWER_BOUND_0_0=ruleNUMBER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getRangeRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"LOWER_BOUND\",\n \t\t\t\t\t\tlv_LOWER_BOUND_0_0,\n \t\t\t\t\t\t\"org.xtext.example.mydsl.MyDsl.NUMBER\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n }\n\n }\n\n\n }\n\n otherlv_1=(Token)match(input,42,FOLLOW_25); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(otherlv_1, grammarAccess.getRangeAccess().getColonKeyword_1());\n \t\t\n }\n // InternalMyDsl.g:3387:3: ( (lv_HIGHER_BOUND_2_0= ruleNUMBER ) )\n // InternalMyDsl.g:3388:4: (lv_HIGHER_BOUND_2_0= ruleNUMBER )\n {\n // InternalMyDsl.g:3388:4: (lv_HIGHER_BOUND_2_0= ruleNUMBER )\n // InternalMyDsl.g:3389:5: lv_HIGHER_BOUND_2_0= ruleNUMBER\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getRangeAccess().getHIGHER_BOUNDNUMBERParserRuleCall_2_0());\n \t\t\t\t\n }\n pushFollow(FOLLOW_2);\n lv_HIGHER_BOUND_2_0=ruleNUMBER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getRangeRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"HIGHER_BOUND\",\n \t\t\t\t\t\tlv_HIGHER_BOUND_2_0,\n \t\t\t\t\t\t\"org.xtext.example.mydsl.MyDsl.NUMBER\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16641:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16642:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16642:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16643:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16644:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16644:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleMultiplicityBoundsCS() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n AntlrDatatypeRuleToken lv_lowerBound_0_0 = null;\n\n AntlrDatatypeRuleToken lv_upperBound_2_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:9315:2: ( ( ( (lv_lowerBound_0_0= ruleLOWER ) ) (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )? ) )\n // InternalMyDsl.g:9316:2: ( ( (lv_lowerBound_0_0= ruleLOWER ) ) (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )? )\n {\n // InternalMyDsl.g:9316:2: ( ( (lv_lowerBound_0_0= ruleLOWER ) ) (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )? )\n // InternalMyDsl.g:9317:3: ( (lv_lowerBound_0_0= ruleLOWER ) ) (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )?\n {\n // InternalMyDsl.g:9317:3: ( (lv_lowerBound_0_0= ruleLOWER ) )\n // InternalMyDsl.g:9318:4: (lv_lowerBound_0_0= ruleLOWER )\n {\n // InternalMyDsl.g:9318:4: (lv_lowerBound_0_0= ruleLOWER )\n // InternalMyDsl.g:9319:5: lv_lowerBound_0_0= ruleLOWER\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getMultiplicityBoundsCSAccess().getLowerBoundLOWERParserRuleCall_0_0());\n \t\t\t\t\n }\n pushFollow(FOLLOW_68);\n lv_lowerBound_0_0=ruleLOWER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getMultiplicityBoundsCSRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"lowerBound\",\n \t\t\t\t\t\tlv_lowerBound_0_0,\n \t\t\t\t\t\t\"org.eclipse.ocl.xtext.base.Base.LOWER\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n }\n\n }\n\n\n }\n\n // InternalMyDsl.g:9336:3: (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )?\n int alt136=2;\n int LA136_0 = input.LA(1);\n\n if ( (LA136_0==101) ) {\n alt136=1;\n }\n switch (alt136) {\n case 1 :\n // InternalMyDsl.g:9337:4: otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) )\n {\n otherlv_1=(Token)match(input,101,FOLLOW_97); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_1, grammarAccess.getMultiplicityBoundsCSAccess().getFullStopFullStopKeyword_1_0());\n \t\t\t\n }\n // InternalMyDsl.g:9341:4: ( (lv_upperBound_2_0= ruleUPPER ) )\n // InternalMyDsl.g:9342:5: (lv_upperBound_2_0= ruleUPPER )\n {\n // InternalMyDsl.g:9342:5: (lv_upperBound_2_0= ruleUPPER )\n // InternalMyDsl.g:9343:6: lv_upperBound_2_0= ruleUPPER\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewCompositeNode(grammarAccess.getMultiplicityBoundsCSAccess().getUpperBoundUPPERParserRuleCall_1_1_0());\n \t\t\t\t\t\n }\n pushFollow(FOLLOW_2);\n lv_upperBound_2_0=ruleUPPER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getMultiplicityBoundsCSRule());\n \t\t\t\t\t\t}\n \t\t\t\t\t\tset(\n \t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\"upperBound\",\n \t\t\t\t\t\t\tlv_upperBound_2_0,\n \t\t\t\t\t\t\t\"org.eclipse.ocl.xtext.base.Base.UPPER\");\n \t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public int getLowerBound() {\r\n return lowerBound;\r\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3042:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3043:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3044:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3045:2: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // InternalCsv.g:3045:3: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public abstract DoublePredicate lowerPredicate(double lowerBound);" ]
[ "0.7869484", "0.78356254", "0.7780231", "0.75341904", "0.7335393", "0.7140702", "0.6853932", "0.684204", "0.6838992", "0.6704399", "0.66857404", "0.6627052", "0.660854", "0.66080546", "0.659794", "0.6546801", "0.6527905", "0.6524964", "0.6503201", "0.6330094", "0.63262135", "0.62709284", "0.62459666", "0.6213761", "0.6192514", "0.6158204", "0.6046324", "0.6031579", "0.60059154", "0.5968996", "0.5946553", "0.5902886", "0.5894571", "0.5778935", "0.57351315", "0.57273364", "0.5709248", "0.5687655", "0.567705", "0.5664208", "0.5652195", "0.5614581", "0.5612758", "0.55741125", "0.55622417", "0.5521787", "0.5506518", "0.5467178", "0.5457538", "0.54339415", "0.5430736", "0.54198927", "0.54138386", "0.5402514", "0.5402108", "0.5385325", "0.5381507", "0.5353686", "0.5315899", "0.5309521", "0.5309521", "0.52884656", "0.5263142", "0.5246098", "0.5240954", "0.52165484", "0.5207044", "0.52065855", "0.52058923", "0.51933736", "0.51545346", "0.512614", "0.50908726", "0.50648165", "0.50630337", "0.50611293", "0.50380754", "0.5037542", "0.503252", "0.50212264", "0.49674493", "0.49619073", "0.49587664", "0.49576366", "0.49428314", "0.49151886", "0.4905139", "0.49015874", "0.48564908", "0.47990385", "0.4784152", "0.4781202", "0.4772094", "0.47424638", "0.47367135", "0.47225195", "0.46937624", "0.46867648", "0.46766865", "0.4671728" ]
0.80125886
0
$ANTLR end "entryRuleJvmLowerBound" $ANTLR start "ruleJvmLowerBound" InternalCsv.g:488:1: ruleJvmLowerBound : ( ( rule__JvmLowerBound__Group__0 ) ) ;
public final void ruleJvmLowerBound() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:492:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) ) // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) ) { // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) ) // InternalCsv.g:494:3: ( rule__JvmLowerBound__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmLowerBoundAccess().getGroup()); } // InternalCsv.g:495:3: ( rule__JvmLowerBound__Group__0 ) // InternalCsv.g:495:4: rule__JvmLowerBound__Group__0 { pushFollow(FOLLOW_2); rule__JvmLowerBound__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmLowerBoundAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1772:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1774:1: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:1: ( rule__JvmLowerBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:2: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound3726);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2085:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2087:1: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:1: ( rule__JvmLowerBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:2: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound4393);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2200:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // InternalDroneScript.g:2202:3: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2203:3: ( rule__JvmLowerBound__Group__0 )\r\n // InternalDroneScript.g:2203:4: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3112:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // InternalCsv.g:3113:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16549:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\r\n // InternalDroneScript.g:16550:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmLowerBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11874:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11875:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__023802);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__023805);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16723:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16724:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__033738);\r\n rule__JvmLowerBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__033741);\r\n rule__JvmLowerBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1760:1: ( ruleJvmLowerBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1761:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound3693);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound3700); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2073:1: ( ruleJvmLowerBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2074:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound4360);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound4367); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // InternalCsv.g:480:1: ( ruleJvmLowerBound EOF )\n // InternalCsv.g:481:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2188:1: ( ruleJvmLowerBound EOF )\r\n // InternalDroneScript.g:2189:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmLowerBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2856:2: (iv_ruleJvmLowerBound= ruleJvmLowerBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2857:2: iv_ruleJvmLowerBound= ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound6708);\n iv_ruleJvmLowerBound=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmLowerBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound6718); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3139:1: ( rule__JvmLowerBound__Group__1__Impl )\n // InternalCsv.g:3140:2: rule__JvmLowerBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11905:1: ( rule__JvmLowerBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11906:2: rule__JvmLowerBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1__Impl_in_rule__JvmLowerBound__Group__123864);\n rule__JvmLowerBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16576:1: ( rule__JvmLowerBound__Group__1__Impl )\r\n // InternalDroneScript.g:16577:2: rule__JvmLowerBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16754:1: ( rule__JvmLowerBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16755:2: rule__JvmLowerBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1__Impl_in_rule__JvmLowerBound__Group__133800);\r\n rule__JvmLowerBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:517:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n // InternalCsv.g:519:3: ( rule__JvmLowerBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:520:3: ( rule__JvmLowerBoundAnded__Group__0 )\n // InternalCsv.g:520:4: rule__JvmLowerBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2225:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2227:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2228:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2228:4: rule__JvmLowerBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16603:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16604:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmLowerBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3166:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\n // InternalCsv.g:3167:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16735:1: ( ( 'super' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16736:1: ( 'super' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16736:1: ( 'super' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16737:1: 'super'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n match(input,39,FOLLOW_39_in_rule__JvmLowerBound__Group__0__Impl33769); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11886:1: ( ( 'super' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11887:1: ( 'super' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11887:1: ( 'super' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11888:1: 'super'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n match(input,31,FOLLOW_31_in_rule__JvmLowerBound__Group__0__Impl23833); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19398:1: ( ( ruleJvmLowerBound ) )\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n {\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n // InternalDroneScript.g:19400:3: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3124:1: ( ( 'super' ) )\n // InternalCsv.g:3125:1: ( 'super' )\n {\n // InternalCsv.g:3125:1: ( 'super' )\n // InternalCsv.g:3126:2: 'super'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n match(input,37,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16561:1: ( ( 'super' ) )\r\n // InternalDroneScript.g:16562:1: ( 'super' )\r\n {\r\n // InternalDroneScript.g:16562:1: ( 'super' )\r\n // InternalDroneScript.g:16563:2: 'super'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n match(input,49,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4055:1: ( ( ruleJvmLowerBound ) )\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n {\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n // InternalCsv.g:4057:3: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11916:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11917:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11917:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11918:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11919:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11919:2: rule__JvmLowerBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__TypeReferenceAssignment_1_in_rule__JvmLowerBound__Group__1__Impl23891);\n rule__JvmLowerBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3150:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3151:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3151:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3152:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3153:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n // InternalCsv.g:3153:3: rule__JvmLowerBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16630:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\r\n // InternalDroneScript.g:16631:2: rule__JvmLowerBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19106:1: ( ( ruleJvmLowerBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19108:1: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_138621);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13567:1: ( ( ruleJvmLowerBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13569:1: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_127272);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3193:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\n // InternalCsv.g:3194:2: rule__JvmLowerBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16765:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16766:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16766:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16767:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16768:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16768:2: rule__JvmLowerBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__TypeReferenceAssignment_1_in_rule__JvmLowerBound__Group__1__Impl33827);\r\n rule__JvmLowerBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2213:1: ( ruleJvmLowerBoundAnded EOF )\r\n // InternalDroneScript.g:2214:1: ruleJvmLowerBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:505:1: ( ruleJvmLowerBoundAnded EOF )\n // InternalCsv.g:506:1: ruleJvmLowerBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject ruleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2867:28: ( (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:1: (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:1: (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:3: otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,59,FOLLOW_59_in_ruleJvmLowerBound6755); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2872:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2873:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2873:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2874:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmLowerBound6776);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmLowerBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16587:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16588:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16588:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16589:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16590:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16590:3: rule__JvmLowerBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19413:1: ( ( ruleJvmLowerBoundAnded ) )\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n {\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n // InternalDroneScript.g:19415:3: ruleJvmLowerBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4070:1: ( ( ruleJvmLowerBoundAnded ) )\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n {\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n // InternalCsv.g:4072:3: ruleJvmLowerBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\r\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\r\n\t}", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\n\t}", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\n\t}", "public final void rule__JvmLowerBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3178:1: ( ( '&' ) )\n // InternalCsv.g:3179:1: ( '&' )\n {\n // InternalCsv.g:3179:1: ( '&' )\n // InternalCsv.g:3180:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public V getLowerBound();", "@Override\r\n public Integer minLowerBound() {\r\n return this.getImpl().minLowerBound();\r\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3204:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3206:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3207:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3207:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setLowerBound(String lower) {\n lowerBound = lower;\n }", "public void addLowerConstraint(String type) {\n\t\tfinal JvmLowerBound constraint = this.jvmTypesFactory.createJvmLowerBound();\n\t\tconstraint.setTypeReference(newTypeRef(this.context, type));\n\t\tgetJvmTypeParameter().getConstraints().add(constraint);\n\t}", "public int getLowerBound ();", "@Override\n\tprotected void setLowerBound() {\n\t\t\n\t}", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1716:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1718:1: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:1: ( rule__JvmUpperBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:2: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound3606);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setLowerBound (int lowerBound) throws ModelException;", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:442:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n // InternalCsv.g:444:3: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // InternalCsv.g:445:3: ( rule__JvmUpperBound__Group__0 )\n // InternalCsv.g:445:4: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3004:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // InternalCsv.g:3005:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16641:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16642:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16642:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16643:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16644:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16644:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2150:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // InternalDroneScript.g:2152:3: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2153:3: ( rule__JvmUpperBound__Group__0 )\r\n // InternalDroneScript.g:2153:4: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2029:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2031:1: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:1: ( rule__JvmUpperBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:2: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound4273);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16441:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // InternalDroneScript.g:16442:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11779:1: ( rule__JvmUpperBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11780:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__123618);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11748:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11749:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__023556);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__023559);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2138:1: ( ruleJvmUpperBound EOF )\r\n // InternalDroneScript.g:2139:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16615:1: ( ( '&' ) )\r\n // InternalDroneScript.g:16616:1: ( '&' )\r\n {\r\n // InternalDroneScript.g:16616:1: ( '&' )\r\n // InternalDroneScript.g:16617:2: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,94,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3031:1: ( rule__JvmUpperBound__Group__1__Impl )\n // InternalCsv.g:3032:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16468:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // InternalDroneScript.g:16469:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // InternalCsv.g:430:1: ( ruleJvmUpperBound EOF )\n // InternalCsv.g:431:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16453:1: ( ( 'extends' ) )\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n // InternalDroneScript.g:16455:2: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3016:1: ( ( 'extends' ) )\n // InternalCsv.g:3017:1: ( 'extends' )\n {\n // InternalCsv.g:3017:1: ( 'extends' )\n // InternalCsv.g:3018:2: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,35,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16597:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16598:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__033492);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__033495);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11760:1: ( ( 'extends' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11762:1: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,65,FOLLOW_65_in_rule__JvmUpperBound__Group__0__Impl23587); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16628:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16629:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__133554);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setLowerBound(final int lowerBound) {\r\n this.lowerBound = lowerBound;\r\n }", "public int getLowerBound() {\r\n return lowerBound;\r\n }", "public final EObject ruleMinimumFunction() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n Token otherlv_3=null;\r\n Token otherlv_5=null;\r\n EObject lv_operator_0_0 = null;\r\n\r\n EObject lv_values_2_0 = null;\r\n\r\n EObject lv_values_4_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3181:28: ( ( ( (lv_operator_0_0= ruleMinOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')' ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3182:1: ( ( (lv_operator_0_0= ruleMinOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')' )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3182:1: ( ( (lv_operator_0_0= ruleMinOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')' )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3182:2: ( (lv_operator_0_0= ruleMinOperator ) ) otherlv_1= '(' ( (lv_values_2_0= ruleNumberExpression ) ) (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )* otherlv_5= ')'\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3182:2: ( (lv_operator_0_0= ruleMinOperator ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3183:1: (lv_operator_0_0= ruleMinOperator )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3183:1: (lv_operator_0_0= ruleMinOperator )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3184:3: lv_operator_0_0= ruleMinOperator\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getMinimumFunctionAccess().getOperatorMinOperatorParserRuleCall_0_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleMinOperator_in_ruleMinimumFunction6827);\r\n lv_operator_0_0=ruleMinOperator();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getMinimumFunctionRule());\r\n \t }\r\n \t\tset(\r\n \t\t\tcurrent, \r\n \t\t\t\"operator\",\r\n \t\tlv_operator_0_0, \r\n \t\t\"MinOperator\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,43,FOLLOW_43_in_ruleMinimumFunction6839); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getMinimumFunctionAccess().getLeftParenthesisKeyword_1());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3204:1: ( (lv_values_2_0= ruleNumberExpression ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3205:1: (lv_values_2_0= ruleNumberExpression )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3205:1: (lv_values_2_0= ruleNumberExpression )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3206:3: lv_values_2_0= ruleNumberExpression\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getMinimumFunctionAccess().getValuesNumberExpressionParserRuleCall_2_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleNumberExpression_in_ruleMinimumFunction6860);\r\n lv_values_2_0=ruleNumberExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getMinimumFunctionRule());\r\n \t }\r\n \t\tadd(\r\n \t\t\tcurrent, \r\n \t\t\t\"values\",\r\n \t\tlv_values_2_0, \r\n \t\t\"NumberExpression\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3222:2: (otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) ) )*\r\n loop43:\r\n do {\r\n int alt43=2;\r\n int LA43_0 = input.LA(1);\r\n\r\n if ( (LA43_0==20) ) {\r\n alt43=1;\r\n }\r\n\r\n\r\n switch (alt43) {\r\n \tcase 1 :\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3222:4: otherlv_3= ',' ( (lv_values_4_0= ruleNumberExpression ) )\r\n \t {\r\n \t otherlv_3=(Token)match(input,20,FOLLOW_20_in_ruleMinimumFunction6873); if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t \tnewLeafNode(otherlv_3, grammarAccess.getMinimumFunctionAccess().getCommaKeyword_3_0());\r\n \t \r\n \t }\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3226:1: ( (lv_values_4_0= ruleNumberExpression ) )\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3227:1: (lv_values_4_0= ruleNumberExpression )\r\n \t {\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3227:1: (lv_values_4_0= ruleNumberExpression )\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:3228:3: lv_values_4_0= ruleNumberExpression\r\n \t {\r\n \t if ( state.backtracking==0 ) {\r\n \t \r\n \t \t newCompositeNode(grammarAccess.getMinimumFunctionAccess().getValuesNumberExpressionParserRuleCall_3_1_0()); \r\n \t \t \r\n \t }\r\n \t pushFollow(FOLLOW_ruleNumberExpression_in_ruleMinimumFunction6894);\r\n \t lv_values_4_0=ruleNumberExpression();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t \t if (current==null) {\r\n \t \t current = createModelElementForParent(grammarAccess.getMinimumFunctionRule());\r\n \t \t }\r\n \t \t\tadd(\r\n \t \t\t\tcurrent, \r\n \t \t\t\t\"values\",\r\n \t \t\tlv_values_4_0, \r\n \t \t\t\"NumberExpression\");\r\n \t \t afterParserOrEnumRuleCall();\r\n \t \t \r\n \t }\r\n\r\n \t }\r\n\r\n\r\n \t }\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop43;\r\n }\r\n } while (true);\r\n\r\n otherlv_5=(Token)match(input,44,FOLLOW_44_in_ruleMinimumFunction6908); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_5, grammarAccess.getMinimumFunctionAccess().getRightParenthesisKeyword_4());\r\n \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "@Override\n\tprotected double getLowerBound() {\n\t\treturn 0;\n\t}", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16609:1: ( ( 'extends' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16611:1: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,126,FOLLOW_126_in_rule__JvmUpperBound__Group__0__Impl33523); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2314:1: ( ( ( '<' ) ) )\n // InternalCsv.g:2315:1: ( ( '<' ) )\n {\n // InternalCsv.g:2315:1: ( ( '<' ) )\n // InternalCsv.g:2316:2: ( '<' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \n }\n // InternalCsv.g:2317:2: ( '<' )\n // InternalCsv.g:2317:3: '<'\n {\n match(input,31,FOLLOW_2); if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2017:1: ( ruleJvmUpperBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2018:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound4240);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound4247); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1704:1: ( ruleJvmUpperBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1705:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound3573);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound3580); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15751:1: ( ( ( '<' ) ) )\r\n // InternalDroneScript.g:15752:1: ( ( '<' ) )\r\n {\r\n // InternalDroneScript.g:15752:1: ( ( '<' ) )\r\n // InternalDroneScript.g:15753:2: ( '<' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n // InternalDroneScript.g:15754:2: ( '<' )\r\n // InternalDroneScript.g:15754:3: '<'\r\n {\r\n match(input,27,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__Group_1_1_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:8508:1: ( ( '<' ) )\r\n // InternalDroneScript.g:8509:1: ( '<' )\r\n {\r\n // InternalDroneScript.g:8509:1: ( '<' )\r\n // InternalDroneScript.g:8510:2: '<'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getLessThanSignKeyword_1_1_1_0()); \r\n }\r\n match(input,27,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getLessThanSignKeyword_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mT__190() throws RecognitionException {\n try {\n int _type = T__190;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:190:8: ( 'lowerBound' )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:190:10: 'lowerBound'\n {\n match(\"lowerBound\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public JwComparator<AcActionAutoCorrectedLog> getSourceGroupComparatorNullsLower()\n {\n return SourceGroupComparatorNullsLower;\n }", "public final EObject ruleMinOperator() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4953:28: ( ( () otherlv_1= 'min' ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4954:1: ( () otherlv_1= 'min' )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4954:1: ( () otherlv_1= 'min' )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4954:2: () otherlv_1= 'min'\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4954:2: ()\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:4955:5: \r\n {\r\n if ( state.backtracking==0 ) {\r\n\r\n current = forceCreateModelElement(\r\n grammarAccess.getMinOperatorAccess().getMinOperatorAction_0(),\r\n current);\r\n \r\n }\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,69,FOLLOW_69_in_ruleMinOperator11209); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getMinOperatorAccess().getMinKeyword_1());\r\n \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11474:1: ( ( ( '<' ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11475:1: ( ( '<' ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11475:1: ( ( '<' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11476:1: ( '<' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11477:1: ( '<' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11478:2: '<'\n {\n match(input,20,FOLLOW_20_in_rule__JvmParameterizedTypeReference__Group_1__0__Impl23026); if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public abstract double[] getLowerBound();", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1744:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1746:1: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:1: ( rule__JvmUpperBoundAnded__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:2: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded3666);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setLowerThreshold(int lowerThreshold) {\n this.lowerThreshold = lowerThreshold;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16323:1: ( ( ( '<' ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16324:1: ( ( '<' ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16324:1: ( ( '<' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16325:1: ( '<' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16326:1: ( '<' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16327:2: '<'\r\n {\r\n match(input,23,FOLLOW_23_in_rule__JvmParameterizedTypeReference__Group_1__0__Impl32962); if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11790:1: ( ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11791:1: ( ( rule__JvmUpperBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11792:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:1: ( rule__JvmUpperBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11793:2: rule__JvmUpperBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__TypeReferenceAssignment_1_in_rule__JvmUpperBound__Group__1__Impl23645);\n rule__JvmUpperBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "ComparableExpression<T> min();", "public final void rule__OpCompare__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6699:1: ( ( '<' ) )\r\n // InternalDroneScript.g:6700:1: ( '<' )\r\n {\r\n // InternalDroneScript.g:6700:1: ( '<' )\r\n // InternalDroneScript.g:6701:2: '<'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n match(input,27,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2175:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2177:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2178:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2178:4: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:467:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // InternalCsv.g:469:3: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:470:3: ( rule__JvmUpperBoundAnded__Group__0 )\n // InternalCsv.g:470:4: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3058:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // InternalCsv.g:3059:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:855:1: ( ( '<:' ) )\n // InternalBSQL2Java.g:856:1: ( '<:' )\n {\n // InternalBSQL2Java.g:856:1: ( '<:' )\n // InternalBSQL2Java.g:857:2: '<:'\n {\n before(grammarAccess.getBTableAccess().getLessThanSignColonKeyword_1()); \n match(input,20,FOLLOW_2); \n after(grammarAccess.getBTableAccess().getLessThanSignColonKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmUpperBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2813:2: (iv_ruleJvmUpperBound= ruleJvmUpperBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2814:2: iv_ruleJvmUpperBound= ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound6604);\n iv_ruleJvmUpperBound=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmUpperBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound6614); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject ruleMultiplicityBoundsCS() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n AntlrDatatypeRuleToken lv_lowerBound_0_0 = null;\n\n AntlrDatatypeRuleToken lv_upperBound_2_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:9315:2: ( ( ( (lv_lowerBound_0_0= ruleLOWER ) ) (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )? ) )\n // InternalMyDsl.g:9316:2: ( ( (lv_lowerBound_0_0= ruleLOWER ) ) (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )? )\n {\n // InternalMyDsl.g:9316:2: ( ( (lv_lowerBound_0_0= ruleLOWER ) ) (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )? )\n // InternalMyDsl.g:9317:3: ( (lv_lowerBound_0_0= ruleLOWER ) ) (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )?\n {\n // InternalMyDsl.g:9317:3: ( (lv_lowerBound_0_0= ruleLOWER ) )\n // InternalMyDsl.g:9318:4: (lv_lowerBound_0_0= ruleLOWER )\n {\n // InternalMyDsl.g:9318:4: (lv_lowerBound_0_0= ruleLOWER )\n // InternalMyDsl.g:9319:5: lv_lowerBound_0_0= ruleLOWER\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getMultiplicityBoundsCSAccess().getLowerBoundLOWERParserRuleCall_0_0());\n \t\t\t\t\n }\n pushFollow(FOLLOW_68);\n lv_lowerBound_0_0=ruleLOWER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getMultiplicityBoundsCSRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"lowerBound\",\n \t\t\t\t\t\tlv_lowerBound_0_0,\n \t\t\t\t\t\t\"org.eclipse.ocl.xtext.base.Base.LOWER\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n }\n\n }\n\n\n }\n\n // InternalMyDsl.g:9336:3: (otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) ) )?\n int alt136=2;\n int LA136_0 = input.LA(1);\n\n if ( (LA136_0==101) ) {\n alt136=1;\n }\n switch (alt136) {\n case 1 :\n // InternalMyDsl.g:9337:4: otherlv_1= '..' ( (lv_upperBound_2_0= ruleUPPER ) )\n {\n otherlv_1=(Token)match(input,101,FOLLOW_97); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_1, grammarAccess.getMultiplicityBoundsCSAccess().getFullStopFullStopKeyword_1_0());\n \t\t\t\n }\n // InternalMyDsl.g:9341:4: ( (lv_upperBound_2_0= ruleUPPER ) )\n // InternalMyDsl.g:9342:5: (lv_upperBound_2_0= ruleUPPER )\n {\n // InternalMyDsl.g:9342:5: (lv_upperBound_2_0= ruleUPPER )\n // InternalMyDsl.g:9343:6: lv_upperBound_2_0= ruleUPPER\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewCompositeNode(grammarAccess.getMultiplicityBoundsCSAccess().getUpperBoundUPPERParserRuleCall_1_1_0());\n \t\t\t\t\t\n }\n pushFollow(FOLLOW_2);\n lv_upperBound_2_0=ruleUPPER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getMultiplicityBoundsCSRule());\n \t\t\t\t\t\t}\n \t\t\t\t\t\tset(\n \t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\"upperBound\",\n \t\t\t\t\t\t\tlv_upperBound_2_0,\n \t\t\t\t\t\t\t\"org.eclipse.ocl.xtext.base.Base.UPPER\");\n \t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "double getLowerThreshold();", "public int getLowerBound ()\n\t{\n\t\treturn getRelationshipImpl().getLowerBound();\n\t}" ]
[ "0.84804577", "0.84508467", "0.84381706", "0.814409", "0.8077567", "0.79219717", "0.79109716", "0.7762789", "0.775489", "0.7745167", "0.7713671", "0.7617168", "0.75432557", "0.75337654", "0.75285214", "0.7462007", "0.7414556", "0.72161275", "0.71741295", "0.7134815", "0.71140045", "0.7099546", "0.70215523", "0.7020207", "0.68656605", "0.68178827", "0.67763335", "0.674584", "0.6737158", "0.67225724", "0.6688119", "0.6653641", "0.65078866", "0.6484768", "0.64796585", "0.6478866", "0.63909554", "0.6174663", "0.5861223", "0.5845379", "0.5818266", "0.5818266", "0.57824683", "0.5777533", "0.5707774", "0.56965107", "0.5554289", "0.55455965", "0.5513034", "0.5460275", "0.54496473", "0.54389924", "0.5398445", "0.53975785", "0.53732306", "0.5370263", "0.53382283", "0.52809054", "0.52764297", "0.5269085", "0.52584565", "0.52446675", "0.5243754", "0.5243019", "0.52034485", "0.5196749", "0.51864237", "0.5149455", "0.5130705", "0.5106386", "0.50931877", "0.5070361", "0.50564027", "0.50547856", "0.4984983", "0.49780244", "0.49629065", "0.49589238", "0.4895652", "0.48840111", "0.48285624", "0.48161474", "0.48131445", "0.47613353", "0.47509664", "0.47420228", "0.47168094", "0.471035", "0.46815273", "0.46785292", "0.46726015", "0.46636766", "0.46483886", "0.46463028", "0.46368927", "0.46342593", "0.46315497", "0.4624254", "0.46188805", "0.46136084" ]
0.86429656
0
$ANTLR end "ruleJvmLowerBound" $ANTLR start "entryRuleJvmLowerBoundAnded" InternalCsv.g:504:1: entryRuleJvmLowerBoundAnded : ruleJvmLowerBoundAnded EOF ;
public final void entryRuleJvmLowerBoundAnded() throws RecognitionException { try { // InternalCsv.g:505:1: ( ruleJvmLowerBoundAnded EOF ) // InternalCsv.g:506:1: ruleJvmLowerBoundAnded EOF { if ( state.backtracking==0 ) { before(grammarAccess.getJvmLowerBoundAndedRule()); } pushFollow(FOLLOW_1); ruleJvmLowerBoundAnded(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmLowerBoundAndedRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // InternalCsv.g:480:1: ( ruleJvmLowerBound EOF )\n // InternalCsv.g:481:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2213:1: ( ruleJvmLowerBoundAnded EOF )\r\n // InternalDroneScript.g:2214:1: ruleJvmLowerBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1760:1: ( ruleJvmLowerBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1761:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound3693);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound3700); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2188:1: ( ruleJvmLowerBound EOF )\r\n // InternalDroneScript.g:2189:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2073:1: ( ruleJvmLowerBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2074:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound4360);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound4367); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmLowerBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2856:2: (iv_ruleJvmLowerBound= ruleJvmLowerBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2857:2: iv_ruleJvmLowerBound= ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound6708);\n iv_ruleJvmLowerBound=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmLowerBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound6718); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:517:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n // InternalCsv.g:519:3: ( rule__JvmLowerBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:520:3: ( rule__JvmLowerBoundAnded__Group__0 )\n // InternalCsv.g:520:4: rule__JvmLowerBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:492:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n // InternalCsv.g:494:3: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // InternalCsv.g:495:3: ( rule__JvmLowerBound__Group__0 )\n // InternalCsv.g:495:4: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1772:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1774:1: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:1: ( rule__JvmLowerBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:2: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound3726);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2225:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2227:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2228:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2228:4: rule__JvmLowerBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19413:1: ( ( ruleJvmLowerBoundAnded ) )\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n {\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n // InternalDroneScript.g:19415:3: ruleJvmLowerBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2200:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // InternalDroneScript.g:2202:3: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2203:3: ( rule__JvmLowerBound__Group__0 )\r\n // InternalDroneScript.g:2203:4: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2085:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2087:1: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:1: ( rule__JvmLowerBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:2: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound4393);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19398:1: ( ( ruleJvmLowerBound ) )\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n {\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n // InternalDroneScript.g:19400:3: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4055:1: ( ( ruleJvmLowerBound ) )\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n {\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n // InternalCsv.g:4057:3: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4070:1: ( ( ruleJvmLowerBoundAnded ) )\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n {\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n // InternalCsv.g:4072:3: ruleJvmLowerBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3112:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // InternalCsv.g:3113:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3166:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\n // InternalCsv.g:3167:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19106:1: ( ( ruleJvmLowerBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19108:1: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_138621);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13567:1: ( ( ruleJvmLowerBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13569:1: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_127272);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:455:1: ( ruleJvmUpperBoundAnded EOF )\n // InternalCsv.g:456:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2163:1: ( ruleJvmUpperBoundAnded EOF )\r\n // InternalDroneScript.g:2164:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16603:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16604:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmLowerBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2867:28: ( (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:1: (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:1: (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:3: otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,59,FOLLOW_59_in_ruleJvmLowerBound6755); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2872:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2873:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2873:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2874:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmLowerBound6776);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmLowerBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16549:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\r\n // InternalDroneScript.g:16550:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmLowerBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11874:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11875:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__023802);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__023805);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3139:1: ( rule__JvmLowerBound__Group__1__Impl )\n // InternalCsv.g:3140:2: rule__JvmLowerBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16723:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16724:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__033738);\r\n rule__JvmLowerBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__033741);\r\n rule__JvmLowerBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1732:1: ( ruleJvmUpperBoundAnded EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1733:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded3633);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded3640); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3193:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\n // InternalCsv.g:3194:2: rule__JvmLowerBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11905:1: ( rule__JvmLowerBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11906:2: rule__JvmLowerBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1__Impl_in_rule__JvmLowerBound__Group__123864);\n rule__JvmLowerBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2045:1: ( ruleJvmUpperBoundAnded EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2046:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded4300);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded4307); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16630:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\r\n // InternalDroneScript.g:16631:2: rule__JvmLowerBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2138:1: ( ruleJvmUpperBound EOF )\r\n // InternalDroneScript.g:2139:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16754:1: ( rule__JvmLowerBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16755:2: rule__JvmLowerBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1__Impl_in_rule__JvmLowerBound__Group__133800);\r\n rule__JvmLowerBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16576:1: ( rule__JvmLowerBound__Group__1__Impl )\r\n // InternalDroneScript.g:16577:2: rule__JvmLowerBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // InternalCsv.g:430:1: ( ruleJvmUpperBound EOF )\n // InternalCsv.g:431:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\n\t}", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\n\t}", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\r\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\r\n\t}", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11916:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11917:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11917:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11918:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11919:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11919:2: rule__JvmLowerBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__TypeReferenceAssignment_1_in_rule__JvmLowerBound__Group__1__Impl23891);\n rule__JvmLowerBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16735:1: ( ( 'super' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16736:1: ( 'super' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16736:1: ( 'super' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16737:1: 'super'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n match(input,39,FOLLOW_39_in_rule__JvmLowerBound__Group__0__Impl33769); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11886:1: ( ( 'super' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11887:1: ( 'super' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11887:1: ( 'super' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11888:1: 'super'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n match(input,31,FOLLOW_31_in_rule__JvmLowerBound__Group__0__Impl23833); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3124:1: ( ( 'super' ) )\n // InternalCsv.g:3125:1: ( 'super' )\n {\n // InternalCsv.g:3125:1: ( 'super' )\n // InternalCsv.g:3126:2: 'super'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n match(input,37,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3178:1: ( ( '&' ) )\n // InternalCsv.g:3179:1: ( '&' )\n {\n // InternalCsv.g:3179:1: ( '&' )\n // InternalCsv.g:3180:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3150:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3151:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3151:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3152:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3153:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n // InternalCsv.g:3153:3: rule__JvmLowerBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1704:1: ( ruleJvmUpperBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1705:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound3573);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound3580); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16561:1: ( ( 'super' ) )\r\n // InternalDroneScript.g:16562:1: ( 'super' )\r\n {\r\n // InternalDroneScript.g:16562:1: ( 'super' )\r\n // InternalDroneScript.g:16563:2: 'super'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n match(input,49,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2017:1: ( ruleJvmUpperBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2018:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound4240);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound4247); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3204:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3206:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3207:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3207:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16765:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16766:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16766:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16767:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16768:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16768:2: rule__JvmLowerBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__TypeReferenceAssignment_1_in_rule__JvmLowerBound__Group__1__Impl33827);\r\n rule__JvmLowerBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16587:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16588:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16588:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16589:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16590:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16590:3: rule__JvmLowerBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16641:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16642:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16642:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16643:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16644:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16644:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16615:1: ( ( '&' ) )\r\n // InternalDroneScript.g:16616:1: ( '&' )\r\n {\r\n // InternalDroneScript.g:16616:1: ( '&' )\r\n // InternalDroneScript.g:16617:2: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,94,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void addLowerConstraint(String type) {\n\t\tfinal JvmLowerBound constraint = this.jvmTypesFactory.createJvmLowerBound();\n\t\tconstraint.setTypeReference(newTypeRef(this.context, type));\n\t\tgetJvmTypeParameter().getConstraints().add(constraint);\n\t}", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19383:1: ( ( ruleJvmUpperBoundAnded ) )\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n {\r\n // InternalDroneScript.g:19384:2: ( ruleJvmUpperBoundAnded )\r\n // InternalDroneScript.g:19385:3: ruleJvmUpperBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4040:1: ( ( ruleJvmUpperBoundAnded ) )\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n {\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n // InternalCsv.g:4042:3: ruleJvmUpperBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmFormalParameter() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1530:1: ( ruleJvmFormalParameter EOF )\r\n // InternalDroneScript.g:1531:1: ruleJvmFormalParameter EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmFormalParameterRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmFormalParameter();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmFormalParameterRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public V getLowerBound();", "public final EObject entryRuleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmUpperBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2813:2: (iv_ruleJvmUpperBound= ruleJvmUpperBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2814:2: iv_ruleJvmUpperBound= ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_entryRuleJvmUpperBound6604);\n iv_ruleJvmUpperBound=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmUpperBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBound6614); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public void setLowerBound(String lower) {\n lowerBound = lower;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Override\n\tprotected void setLowerBound() {\n\t\t\n\t}", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1744:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1746:1: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:1: ( rule__JvmUpperBoundAnded__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:2: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded3666);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:467:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // InternalCsv.g:469:3: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:470:3: ( rule__JvmUpperBoundAnded__Group__0 )\n // InternalCsv.g:470:4: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2175:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2177:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2178:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2178:4: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2057:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2059:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:2: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded4333);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4115:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4117:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmFormalParameter() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1165:1: ( ruleJvmFormalParameter EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1166:1: ruleJvmFormalParameter EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmFormalParameterRule()); \n }\n pushFollow(FOLLOW_ruleJvmFormalParameter_in_entryRuleJvmFormalParameter2416);\n ruleJvmFormalParameter();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmFormalParameterRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmFormalParameter2423); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public int getLowerBound ();", "public final String entryRuleLOWER() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleLOWER = null;\n\n\n try {\n // InternalMyDsl.g:10062:45: (iv_ruleLOWER= ruleLOWER EOF )\n // InternalMyDsl.g:10063:2: iv_ruleLOWER= ruleLOWER EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getLOWERRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleLOWER=ruleLOWER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleLOWER.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public void setLowerBound (int lowerBound) throws ModelException;", "public final void entryRuleJvmFormalParameter() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1358:1: ( ruleJvmFormalParameter EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1359:1: ruleJvmFormalParameter EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmFormalParameterRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmFormalParameter_in_entryRuleJvmFormalParameter2834);\r\n ruleJvmFormalParameter();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmFormalParameterRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmFormalParameter2841); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19151:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19153:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_138714);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmArgumentTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2705:2: (iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2706:2: iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference6342);\n iv_ruleJvmArgumentTypeReference=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmArgumentTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference6352); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "@Override\r\n public Integer minLowerBound() {\r\n return this.getImpl().minLowerBound();\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19473:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19475:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4025:1: ( ( ruleJvmUpperBound ) )\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n {\n // InternalCsv.g:4026:2: ( ruleJvmUpperBound )\n // InternalCsv.g:4027:3: ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleFullJvmFormalParameter() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1555:1: ( ruleFullJvmFormalParameter EOF )\r\n // InternalDroneScript.g:1556:1: ruleFullJvmFormalParameter EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFullJvmFormalParameterRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleFullJvmFormalParameter();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFullJvmFormalParameterRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public static void main(String[] args) {\n\t\tint[] values = {1,3,1,4,1,5};\r\n\t\tDynamicSolution1039 s = new DynamicSolution1039();\r\n\t\tSystem.out.println(s.minScoreTriangulation(values));\r\n\t}", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19368:1: ( ( ruleJvmUpperBound ) )\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n {\r\n // InternalDroneScript.g:19369:2: ( ruleJvmUpperBound )\r\n // InternalDroneScript.g:19370:3: ruleJvmUpperBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public abstract DoublePredicate lowerPredicate(double lowerBound);", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1716:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1718:1: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:1: ( rule__JvmUpperBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:2: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound3606);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:442:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n // InternalCsv.g:444:3: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // InternalCsv.g:445:3: ( rule__JvmUpperBound__Group__0 )\n // InternalCsv.g:445:4: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19458:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19460:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mLOWER() throws RecognitionException {\n\t\ttry {\n\t\t\t// /Users/probst/workspace/MiniJava_A6/src/compiler/Frontend/MiniJava.g:311:16: ( ( 'a' .. 'z' ) )\n\t\t\t// /Users/probst/workspace/MiniJava_A6/src/compiler/Frontend/MiniJava.g:\n\t\t\t{\n\t\t\tif ( (input.LA(1) >= 'a' && input.LA(1) <= 'z') ) {\n\t\t\t\tinput.consume();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tMismatchedSetException mse = new MismatchedSetException(null,input);\n\t\t\t\trecover(mse);\n\t\t\t\tthrow mse;\n\t\t\t}\n\t\t\t}\n\n\t\t}\n\t\tfinally {\n\t\t\t// do for sure before leaving\n\t\t}\n\t}", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2150:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // InternalDroneScript.g:2152:3: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2153:3: ( rule__JvmUpperBound__Group__0 )\r\n // InternalDroneScript.g:2153:4: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n\tprotected double getLowerBound() {\n\t\treturn 0;\n\t}", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3058:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // InternalCsv.g:3059:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16453:1: ( ( 'extends' ) )\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n // InternalDroneScript.g:16455:2: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmUpperBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2824:28: ( (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:1: (otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2825:3: otherlv_0= 'extends' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,58,FOLLOW_58_in_ruleJvmUpperBound6651); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2829:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2830:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2831:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmUpperBound6672);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmUpperBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3016:1: ( ( 'extends' ) )\n // InternalCsv.g:3017:1: ( 'extends' )\n {\n // InternalCsv.g:3017:1: ( 'extends' )\n // InternalCsv.g:3018:2: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,35,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.79692197", "0.7954241", "0.78254366", "0.78104556", "0.77885616", "0.7389188", "0.7007643", "0.696317", "0.6780837", "0.67460793", "0.671427", "0.6692896", "0.6689903", "0.6599208", "0.65192324", "0.6475893", "0.6392785", "0.63328946", "0.6322322", "0.6320608", "0.6268895", "0.6196398", "0.6147211", "0.612713", "0.61070144", "0.6063899", "0.60338455", "0.6007765", "0.59182936", "0.5904153", "0.589428", "0.58252114", "0.5802322", "0.5779502", "0.5777899", "0.57764393", "0.571886", "0.5668497", "0.5668497", "0.5664486", "0.5633313", "0.56007576", "0.5562612", "0.5557579", "0.55080014", "0.54671305", "0.54487", "0.543057", "0.5422701", "0.54126465", "0.53710943", "0.52297026", "0.52054334", "0.5122882", "0.5100188", "0.5036389", "0.49981344", "0.494061", "0.490107", "0.4896334", "0.48876968", "0.48874277", "0.4872726", "0.48495567", "0.4842839", "0.48354065", "0.48183373", "0.48048663", "0.47620285", "0.47443968", "0.469865", "0.4690102", "0.46824774", "0.46467742", "0.4629141", "0.4618245", "0.45762292", "0.45582667", "0.4542736", "0.4528585", "0.45168057", "0.4508841", "0.45075265", "0.44994625", "0.44918436", "0.4438471", "0.44183734", "0.43970835", "0.43796822", "0.43776175", "0.43524325", "0.43426883", "0.431619", "0.43067482", "0.4293312", "0.42690232", "0.4256292", "0.42484897", "0.42449728", "0.42270663" ]
0.8084957
0
$ANTLR end "entryRuleJvmLowerBoundAnded" $ANTLR start "ruleJvmLowerBoundAnded" InternalCsv.g:513:1: ruleJvmLowerBoundAnded : ( ( rule__JvmLowerBoundAnded__Group__0 ) ) ;
public final void ruleJvmLowerBoundAnded() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:517:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) ) // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) ) { // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) ) // InternalCsv.g:519:3: ( rule__JvmLowerBoundAnded__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); } // InternalCsv.g:520:3: ( rule__JvmLowerBoundAnded__Group__0 ) // InternalCsv.g:520:4: rule__JvmLowerBoundAnded__Group__0 { pushFollow(FOLLOW_2); rule__JvmLowerBoundAnded__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:492:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // InternalCsv.g:493:2: ( ( rule__JvmLowerBound__Group__0 ) )\n // InternalCsv.g:494:3: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // InternalCsv.g:495:3: ( rule__JvmLowerBound__Group__0 )\n // InternalCsv.g:495:4: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2225:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2226:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2227:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2228:3: ( rule__JvmLowerBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2228:4: rule__JvmLowerBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1772:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1773:1: ( ( rule__JvmLowerBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1774:1: ( rule__JvmLowerBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:1: ( rule__JvmLowerBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1775:2: rule__JvmLowerBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound3726);\n rule__JvmLowerBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2200:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2201:2: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // InternalDroneScript.g:2202:3: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2203:3: ( rule__JvmLowerBound__Group__0 )\r\n // InternalDroneScript.g:2203:4: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmLowerBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2085:2: ( ( ( rule__JvmLowerBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2086:1: ( ( rule__JvmLowerBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2087:1: ( rule__JvmLowerBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:1: ( rule__JvmLowerBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2088:2: rule__JvmLowerBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0_in_ruleJvmLowerBound4393);\r\n rule__JvmLowerBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3112:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // InternalCsv.g:3113:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3166:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\n // InternalCsv.g:3167:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmLowerBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16603:1: ( rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16604:2: rule__JvmLowerBoundAnded__Group__0__Impl rule__JvmLowerBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmLowerBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16549:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\r\n // InternalDroneScript.g:16550:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmLowerBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11874:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11875:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__023802);\n rule__JvmLowerBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__023805);\n rule__JvmLowerBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16723:1: ( rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16724:2: rule__JvmLowerBound__Group__0__Impl rule__JvmLowerBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__0__Impl_in_rule__JvmLowerBound__Group__033738);\r\n rule__JvmLowerBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1_in_rule__JvmLowerBound__Group__033741);\r\n rule__JvmLowerBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3139:1: ( rule__JvmLowerBound__Group__1__Impl )\n // InternalCsv.g:3140:2: rule__JvmLowerBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3193:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\n // InternalCsv.g:3194:2: rule__JvmLowerBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16630:1: ( rule__JvmLowerBoundAnded__Group__1__Impl )\r\n // InternalDroneScript.g:16631:2: rule__JvmLowerBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:505:1: ( ruleJvmLowerBoundAnded EOF )\n // InternalCsv.g:506:1: ruleJvmLowerBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11905:1: ( rule__JvmLowerBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11906:2: rule__JvmLowerBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1__Impl_in_rule__JvmLowerBound__Group__123864);\n rule__JvmLowerBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // InternalCsv.g:480:1: ( ruleJvmLowerBound EOF )\n // InternalCsv.g:481:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16576:1: ( rule__JvmLowerBound__Group__1__Impl )\r\n // InternalDroneScript.g:16577:2: rule__JvmLowerBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16754:1: ( rule__JvmLowerBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16755:2: rule__JvmLowerBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__Group__1__Impl_in_rule__JvmLowerBound__Group__133800);\r\n rule__JvmLowerBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2213:1: ( ruleJvmLowerBoundAnded EOF )\r\n // InternalDroneScript.g:2214:1: ruleJvmLowerBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1760:1: ( ruleJvmLowerBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1761:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound3693);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound3700); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2073:1: ( ruleJvmLowerBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2074:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound4360);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound4367); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2188:1: ( ruleJvmLowerBound EOF )\r\n // InternalDroneScript.g:2189:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16735:1: ( ( 'super' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16736:1: ( 'super' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16736:1: ( 'super' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16737:1: 'super'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n match(input,39,FOLLOW_39_in_rule__JvmLowerBound__Group__0__Impl33769); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3124:1: ( ( 'super' ) )\n // InternalCsv.g:3125:1: ( 'super' )\n {\n // InternalCsv.g:3125:1: ( 'super' )\n // InternalCsv.g:3126:2: 'super'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n match(input,37,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11886:1: ( ( 'super' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11887:1: ( 'super' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11887:1: ( 'super' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11888:1: 'super'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n match(input,31,FOLLOW_31_in_rule__JvmLowerBound__Group__0__Impl23833); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmLowerBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2856:2: (iv_ruleJvmLowerBound= ruleJvmLowerBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2857:2: iv_ruleJvmLowerBound= ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound6708);\n iv_ruleJvmLowerBound=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmLowerBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound6718); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3178:1: ( ( '&' ) )\n // InternalCsv.g:3179:1: ( '&' )\n {\n // InternalCsv.g:3179:1: ( '&' )\n // InternalCsv.g:3180:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16561:1: ( ( 'super' ) )\r\n // InternalDroneScript.g:16562:1: ( 'super' )\r\n {\r\n // InternalDroneScript.g:16562:1: ( 'super' )\r\n // InternalDroneScript.g:16563:2: 'super'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n match(input,49,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19413:1: ( ( ruleJvmLowerBoundAnded ) )\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n {\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n // InternalDroneScript.g:19415:3: ruleJvmLowerBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19398:1: ( ( ruleJvmLowerBound ) )\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n {\r\n // InternalDroneScript.g:19399:2: ( ruleJvmLowerBound )\r\n // InternalDroneScript.g:19400:3: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3150:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3151:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3151:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3152:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3153:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n // InternalCsv.g:3153:3: rule__JvmLowerBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4055:1: ( ( ruleJvmLowerBound ) )\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n {\n // InternalCsv.g:4056:2: ( ruleJvmLowerBound )\n // InternalCsv.g:4057:3: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3204:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3206:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3207:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3207:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16615:1: ( ( '&' ) )\r\n // InternalDroneScript.g:16616:1: ( '&' )\r\n {\r\n // InternalDroneScript.g:16616:1: ( '&' )\r\n // InternalDroneScript.g:16617:2: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,94,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11916:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11917:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11917:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11918:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11919:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11919:2: rule__JvmLowerBound__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_rule__JvmLowerBound__TypeReferenceAssignment_1_in_rule__JvmLowerBound__Group__1__Impl23891);\n rule__JvmLowerBound__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4070:1: ( ( ruleJvmLowerBoundAnded ) )\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n {\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n // InternalCsv.g:4072:3: ruleJvmLowerBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19106:1: ( ( ruleJvmLowerBound ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19107:1: ( ruleJvmLowerBound )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19108:1: ruleJvmLowerBound\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_138621);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13567:1: ( ( ruleJvmLowerBound ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13568:1: ( ruleJvmLowerBound )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13569:1: ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_127272);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\r\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\r\n\t}", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\n\t}", "public XtypeGrammarAccess.JvmLowerBoundAndedElements getJvmLowerBoundAndedAccess() {\n\t\treturn gaXtype.getJvmLowerBoundAndedAccess();\n\t}", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16765:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16766:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16766:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16767:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16768:1: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16768:2: rule__JvmLowerBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmLowerBound__TypeReferenceAssignment_1_in_rule__JvmLowerBound__Group__1__Impl33827);\r\n rule__JvmLowerBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16587:1: ( ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16588:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16588:1: ( ( rule__JvmLowerBound__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16589:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16590:2: ( rule__JvmLowerBound__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16590:3: rule__JvmLowerBound__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBound__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n EObject lv_typeReference_1_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2867:28: ( (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:1: (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:1: (otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2868:3: otherlv_0= 'super' ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n {\n otherlv_0=(Token)match(input,59,FOLLOW_59_in_ruleJvmLowerBound6755); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_0, grammarAccess.getJvmLowerBoundAccess().getSuperKeyword_0());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2872:1: ( (lv_typeReference_1_0= ruleJvmTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2873:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2873:1: (lv_typeReference_1_0= ruleJvmTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2874:3: lv_typeReference_1_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmLowerBound6776);\n lv_typeReference_1_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmLowerBoundRule());\n \t }\n \t\tset(\n \t\t\tcurrent, \n \t\t\t\"typeReference\",\n \t\tlv_typeReference_1_0, \n \t\t\"JvmTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16641:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\r\n // InternalDroneScript.g:16642:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\r\n {\r\n // InternalDroneScript.g:16642:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\r\n // InternalDroneScript.g:16643:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n // InternalDroneScript.g:16644:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\r\n // InternalDroneScript.g:16644:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:467:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:468:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // InternalCsv.g:469:3: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:470:3: ( rule__JvmUpperBoundAnded__Group__0 )\n // InternalCsv.g:470:4: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1744:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1745:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1746:1: ( rule__JvmUpperBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:1: ( rule__JvmUpperBoundAnded__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1747:2: rule__JvmUpperBoundAnded__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded3666);\n rule__JvmUpperBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3058:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // InternalCsv.g:3059:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2175:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2176:2: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // InternalDroneScript.g:2177:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2178:3: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // InternalDroneScript.g:2178:4: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBoundAnded() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2057:2: ( ( ( rule__JvmUpperBoundAnded__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2058:1: ( ( rule__JvmUpperBoundAnded__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2059:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:1: ( rule__JvmUpperBoundAnded__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2060:2: rule__JvmUpperBoundAnded__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0_in_ruleJvmUpperBoundAnded4333);\r\n rule__JvmUpperBoundAnded__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3004:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // InternalCsv.g:3005:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_27);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11811:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11812:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__023679);\n rule__JvmUpperBoundAnded__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__023682);\n rule__JvmUpperBoundAnded__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16495:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // InternalDroneScript.g:16496:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:455:1: ( ruleJvmUpperBoundAnded EOF )\n // InternalCsv.g:456:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11842:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11843:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__123741);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3085:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\n // InternalCsv.g:3086:2: rule__JvmUpperBoundAnded__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBoundAnded__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16660:1: ( rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16661:2: rule__JvmUpperBoundAnded__Group__0__Impl rule__JvmUpperBoundAnded__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__0__Impl_in_rule__JvmUpperBoundAnded__Group__033615);\r\n rule__JvmUpperBoundAnded__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1_in_rule__JvmUpperBoundAnded__Group__033618);\r\n rule__JvmUpperBoundAnded__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11748:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11749:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__023556);\n rule__JvmUpperBound__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__023559);\n rule__JvmUpperBound__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:442:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // InternalCsv.g:443:2: ( ( rule__JvmUpperBound__Group__0 ) )\n // InternalCsv.g:444:3: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // InternalCsv.g:445:3: ( rule__JvmUpperBound__Group__0 )\n // InternalCsv.g:445:4: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1716:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1717:1: ( ( rule__JvmUpperBound__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1718:1: ( rule__JvmUpperBound__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:1: ( rule__JvmUpperBound__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1719:2: rule__JvmUpperBound__Group__0\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound3606);\n rule__JvmUpperBound__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tprotected void setLowerBound() {\n\t\t\n\t}", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3031:1: ( rule__JvmUpperBound__Group__1__Impl )\n // InternalCsv.g:3032:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16441:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // InternalDroneScript.g:16442:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_42);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2163:1: ( ruleJvmUpperBoundAnded EOF )\r\n // InternalDroneScript.g:2164:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16522:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\r\n // InternalDroneScript.g:16523:2: rule__JvmUpperBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11779:1: ( rule__JvmUpperBound__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11780:2: rule__JvmUpperBound__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__123618);\n rule__JvmUpperBound__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3016:1: ( ( 'extends' ) )\n // InternalCsv.g:3017:1: ( 'extends' )\n {\n // InternalCsv.g:3017:1: ( 'extends' )\n // InternalCsv.g:3018:2: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,35,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2150:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2151:2: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // InternalDroneScript.g:2152:3: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2153:3: ( rule__JvmUpperBound__Group__0 )\r\n // InternalDroneScript.g:2153:4: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16691:1: ( rule__JvmUpperBoundAnded__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16692:2: rule__JvmUpperBoundAnded__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBoundAnded__Group__1__Impl_in_rule__JvmUpperBoundAnded__Group__133677);\r\n rule__JvmUpperBoundAnded__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public V getLowerBound();", "@Override\r\n public Integer minLowerBound() {\r\n return this.getImpl().minLowerBound();\r\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16453:1: ( ( 'extends' ) )\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:16454:1: ( 'extends' )\r\n // InternalDroneScript.g:16455:2: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmUpperBound() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2029:2: ( ( ( rule__JvmUpperBound__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2030:1: ( ( rule__JvmUpperBound__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2031:1: ( rule__JvmUpperBound__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:1: ( rule__JvmUpperBound__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2032:2: rule__JvmUpperBound__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0_in_ruleJvmUpperBound4273);\r\n rule__JvmUpperBound__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16597:1: ( rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16598:2: rule__JvmUpperBound__Group__0__Impl rule__JvmUpperBound__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__0__Impl_in_rule__JvmUpperBound__Group__033492);\r\n rule__JvmUpperBound__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1_in_rule__JvmUpperBound__Group__033495);\r\n rule__JvmUpperBound__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16468:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // InternalDroneScript.g:16469:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setLowerBound(String lower) {\n lowerBound = lower;\n }", "public int getLowerBound ();", "public final void rule__XMemberFeatureCall__Group_1_1_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:8508:1: ( ( '<' ) )\r\n // InternalDroneScript.g:8509:1: ( '<' )\r\n {\r\n // InternalDroneScript.g:8509:1: ( '<' )\r\n // InternalDroneScript.g:8510:2: '<'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getLessThanSignKeyword_1_1_1_0()); \r\n }\r\n match(input,27,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getLessThanSignKeyword_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16628:1: ( rule__JvmUpperBound__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16629:2: rule__JvmUpperBound__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmUpperBound__Group__1__Impl_in_rule__JvmUpperBound__Group__133554);\r\n rule__JvmUpperBound__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1732:1: ( ruleJvmUpperBoundAnded EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1733:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded3633);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded3640); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11760:1: ( ( 'extends' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11761:1: ( 'extends' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11762:1: 'extends'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n match(input,65,FOLLOW_65_in_rule__JvmUpperBound__Group__0__Impl23587); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3070:1: ( ( '&' ) )\n // InternalCsv.g:3071:1: ( '&' )\n {\n // InternalCsv.g:3071:1: ( '&' )\n // InternalCsv.g:3072:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2314:1: ( ( ( '<' ) ) )\n // InternalCsv.g:2315:1: ( ( '<' ) )\n {\n // InternalCsv.g:2315:1: ( ( '<' ) )\n // InternalCsv.g:2316:2: ( '<' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \n }\n // InternalCsv.g:2317:2: ( '<' )\n // InternalCsv.g:2317:3: '<'\n {\n match(input,31,FOLLOW_2); if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11823:1: ( ( '&' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11824:1: ( '&' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11825:1: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,66,FOLLOW_66_in_rule__JvmUpperBoundAnded__Group__0__Impl23710); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2045:1: ( ruleJvmUpperBoundAnded EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2046:1: ruleJvmUpperBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmUpperBoundAnded_in_entryRuleJvmUpperBoundAnded4300);\r\n ruleJvmUpperBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmUpperBoundAnded4307); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\n try {\n // InternalCsv.g:430:1: ( ruleJvmUpperBound EOF )\n // InternalCsv.g:431:1: ruleJvmUpperBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmUpperBound__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16609:1: ( ( 'extends' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16610:1: ( 'extends' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16611:1: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n match(input,126,FOLLOW_126_in_rule__JvmUpperBound__Group__0__Impl33523); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getExtendsKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public JwComparator<AcActionAutoCorrectedLog> getSourceGroupComparatorNullsLower()\n {\n return SourceGroupComparatorNullsLower;\n }", "public final void entryRuleJvmUpperBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2138:1: ( ruleJvmUpperBound EOF )\r\n // InternalDroneScript.g:2139:1: ruleJvmUpperBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmUpperBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public void setLowerBound (int lowerBound) throws ModelException;", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16672:1: ( ( '&' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16673:1: ( '&' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16673:1: ( '&' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16674:1: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,127,FOLLOW_127_in_rule__JvmUpperBoundAnded__Group__0__Impl33646); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:12990:1: ( ( '<' ) )\r\n // InternalDroneScript.g:12991:1: ( '<' )\r\n {\r\n // InternalDroneScript.g:12991:1: ( '<' )\r\n // InternalDroneScript.g:12992:2: '<'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n match(input,27,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void addLowerConstraint(String type) {\n\t\tfinal JvmLowerBound constraint = this.jvmTypesFactory.createJvmLowerBound();\n\t\tconstraint.setTypeReference(newTypeRef(this.context, type));\n\t\tgetJvmTypeParameter().getConstraints().add(constraint);\n\t}", "public final void rule__BTable__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:855:1: ( ( '<:' ) )\n // InternalBSQL2Java.g:856:1: ( '<:' )\n {\n // InternalBSQL2Java.g:856:1: ( '<:' )\n // InternalBSQL2Java.g:857:2: '<:'\n {\n before(grammarAccess.getBTableAccess().getLessThanSignColonKeyword_1()); \n match(input,20,FOLLOW_2); \n after(grammarAccess.getBTableAccess().getLessThanSignColonKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15751:1: ( ( ( '<' ) ) )\r\n // InternalDroneScript.g:15752:1: ( ( '<' ) )\r\n {\r\n // InternalDroneScript.g:15752:1: ( ( '<' ) )\r\n // InternalDroneScript.g:15753:2: ( '<' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n // InternalDroneScript.g:15754:2: ( '<' )\r\n // InternalDroneScript.g:15754:3: '<'\r\n {\r\n match(input,27,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n\tprotected double getLowerBound() {\n\t\treturn 0;\n\t}", "public final void rule__XMemberFeatureCall__Group_1_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6049:1: ( ( '<' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6050:1: ( '<' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6050:1: ( '<' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6051:1: '<'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getLessThanSignKeyword_1_1_1_0()); \n }\n match(input,20,FOLLOW_20_in_rule__XMemberFeatureCall__Group_1_1_1__0__Impl12370); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getLessThanSignKeyword_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmFormalParameter() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1542:2: ( ( ( rule__JvmFormalParameter__Group__0 ) ) )\r\n // InternalDroneScript.g:1543:2: ( ( rule__JvmFormalParameter__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1543:2: ( ( rule__JvmFormalParameter__Group__0 ) )\r\n // InternalDroneScript.g:1544:3: ( rule__JvmFormalParameter__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmFormalParameterAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1545:3: ( rule__JvmFormalParameter__Group__0 )\r\n // InternalDroneScript.g:1545:4: rule__JvmFormalParameter__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmFormalParameter__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmFormalParameterAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16507:1: ( ( '&' ) )\r\n // InternalDroneScript.g:16508:1: ( '&' )\r\n {\r\n // InternalDroneScript.g:16508:1: ( '&' )\r\n // InternalDroneScript.g:16509:2: '&'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n match(input,94,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getAmpersandKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.839798", "0.8206412", "0.81450784", "0.81413627", "0.8137714", "0.8104995", "0.8071465", "0.7966276", "0.78907883", "0.77990645", "0.778853", "0.74271244", "0.73476493", "0.7344736", "0.73430985", "0.7340974", "0.731359", "0.7296643", "0.7266496", "0.7240183", "0.7224255", "0.7205624", "0.7193903", "0.7091345", "0.70745945", "0.7027952", "0.69326764", "0.6926947", "0.69089663", "0.65411776", "0.65041673", "0.6451314", "0.6443987", "0.63451016", "0.63408035", "0.63243735", "0.6322694", "0.6114317", "0.6099932", "0.6083182", "0.60651684", "0.60651684", "0.60235447", "0.5971465", "0.59026724", "0.5875187", "0.5758045", "0.5719981", "0.5717701", "0.5699233", "0.56590956", "0.5543364", "0.5516099", "0.54835707", "0.53818125", "0.53781193", "0.53502214", "0.5345543", "0.53038806", "0.5301267", "0.52955675", "0.5287476", "0.527617", "0.52712", "0.52591664", "0.52468854", "0.5230844", "0.5229789", "0.5227632", "0.52036977", "0.5200011", "0.51949656", "0.5193218", "0.5191807", "0.51769423", "0.5170151", "0.5126433", "0.5103666", "0.50947374", "0.50726295", "0.50488025", "0.5037272", "0.5029066", "0.49989662", "0.49665442", "0.49473256", "0.49328616", "0.493142", "0.490531", "0.48977345", "0.48772296", "0.48316976", "0.48256466", "0.48161006", "0.4807115", "0.4796423", "0.47393125", "0.47285414", "0.472618", "0.4674545" ]
0.84855586
0
$ANTLR end "ruleJvmLowerBoundAnded" $ANTLR start "entryRuleQualifiedName" InternalCsv.g:529:1: entryRuleQualifiedName : ruleQualifiedName EOF ;
public final void entryRuleQualifiedName() throws RecognitionException { try { // InternalCsv.g:530:1: ( ruleQualifiedName EOF ) // InternalCsv.g:531:1: ruleQualifiedName EOF { if ( state.backtracking==0 ) { before(grammarAccess.getQualifiedNameRule()); } pushFollow(FOLLOW_1); ruleQualifiedName(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getQualifiedNameRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalMappingDsl.g:6449:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalMappingDsl.g:6450:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalNgt.g:1709:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalNgt.g:1710:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3023:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3024:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName7183);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName7194); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // InternalNestDsl.g:414:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // InternalNestDsl.g:415:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleQualifiedName.getText(); \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalStl.g:1675:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalStl.g:1676:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5213:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5214:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName11974);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleQualifiedName.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName11985); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleQualifiedName() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleQualifiedName = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6197:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6198:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n currentNode = createCompositeNode(grammarAccess.getQualifiedNameRule(), currentNode); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName10823);\n iv_ruleQualifiedName=ruleQualifiedName();\n _fsp--;\n\n current =iv_ruleQualifiedName; \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName10833); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1785:1: ( ruleQualifiedName EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1786:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3751);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3758); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1536:1: ( ruleQualifiedName EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1537:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3220); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1930:1: ( ruleQualifiedName EOF )\r\n // InternalDroneScript.g:1931:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:257:1: ( ruleQualifiedName EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:258:1: ruleQualifiedName EOF\n {\n before(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName481);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName488); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\n try {\n // InternalCsv.g:555:1: ( ruleQualifiedNameWithWildcard EOF )\n // InternalCsv.g:556:1: ruleQualifiedNameWithWildcard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2238:1: ( ruleQualifiedNameWithWildcard EOF )\r\n // InternalDroneScript.g:2239:1: ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\n try {\n // InternalCsv.g:630:1: ( ruleQualifiedNameInStaticImport EOF )\n // InternalCsv.g:631:1: ruleQualifiedNameInStaticImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final String entryRuleQualifiedNameWithAtLeastOneLevel() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedNameWithAtLeastOneLevel = null;\n\n\n try {\n // InternalMappingDsl.g:3752:72: (iv_ruleQualifiedNameWithAtLeastOneLevel= ruleQualifiedNameWithAtLeastOneLevel EOF )\n // InternalMappingDsl.g:3753:2: iv_ruleQualifiedNameWithAtLeastOneLevel= ruleQualifiedNameWithAtLeastOneLevel EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameWithAtLeastOneLevelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedNameWithAtLeastOneLevel=ruleQualifiedNameWithAtLeastOneLevel();\n\n state._fsp--;\n\n current =iv_ruleQualifiedNameWithAtLeastOneLevel.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19594:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19596:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n // InternalDroneScript.g:19597:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19598:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2345:1: ( ruleQualifiedNameInStaticImport EOF )\r\n // InternalDroneScript.g:2346:1: ruleQualifiedNameInStaticImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedNameWithWildcard = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5256:2: (iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5257:2: iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard12117);\r\n iv_ruleQualifiedNameWithWildcard=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleQualifiedNameWithWildcard.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard12128); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "String getQualifiedName();", "public RuleCall getQualifiedNameParserRuleCall() { return cQualifiedNameParserRuleCall; }", "public RuleCall getQualifiedNameParserRuleCall() { return cQualifiedNameParserRuleCall; }", "public RuleCall getQualifiedNameParserRuleCall() { return cQualifiedNameParserRuleCall; }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:505:1: ( ruleJvmLowerBoundAnded EOF )\n // InternalCsv.g:506:1: ruleJvmLowerBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19541:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n {\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n // InternalDroneScript.g:19543:3: ( ruleQualifiedNameInStaticImport )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n // InternalDroneScript.g:19544:3: ( ruleQualifiedNameInStaticImport )\r\n // InternalDroneScript.g:19545:4: ruleQualifiedNameInStaticImport\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16834:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16836:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__Import__ImportedNamespaceAssignment_133961);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final AntlrDatatypeRuleToken ruleQualifiedNameWithAtLeastOneLevel() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n AntlrDatatypeRuleToken this_QualifiedName_2 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:3765:2: ( (this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName ) )\n // InternalMappingDsl.g:3766:2: (this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName )\n {\n // InternalMappingDsl.g:3766:2: (this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName )\n // InternalMappingDsl.g:3767:3: this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_78); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameWithAtLeastOneLevelAccess().getIDTerminalRuleCall_0());\n \t\t\n kw=(Token)match(input,32,FOLLOW_7); \n\n \t\t\tcurrent.merge(kw);\n \t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameWithAtLeastOneLevelAccess().getFullStopKeyword_1());\n \t\t\n\n \t\t\tnewCompositeNode(grammarAccess.getQualifiedNameWithAtLeastOneLevelAccess().getQualifiedNameParserRuleCall_2());\n \t\t\n pushFollow(FOLLOW_2);\n this_QualifiedName_2=ruleQualifiedName();\n\n state._fsp--;\n\n\n \t\t\tcurrent.merge(this_QualifiedName_2);\n \t\t\n\n \t\t\tafterParserOrEnumRuleCall();\n \t\t\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject ruleConnector() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n\n\n \tenterRule();\n\n try {\n // InternalStl.g:1394:2: ( ( ( ( ruleQualifiedName ) ) otherlv_1= '>' ( ( ruleQualifiedName ) ) ) )\n // InternalStl.g:1395:2: ( ( ( ruleQualifiedName ) ) otherlv_1= '>' ( ( ruleQualifiedName ) ) )\n {\n // InternalStl.g:1395:2: ( ( ( ruleQualifiedName ) ) otherlv_1= '>' ( ( ruleQualifiedName ) ) )\n // InternalStl.g:1396:3: ( ( ruleQualifiedName ) ) otherlv_1= '>' ( ( ruleQualifiedName ) )\n {\n // InternalStl.g:1396:3: ( ( ruleQualifiedName ) )\n // InternalStl.g:1397:4: ( ruleQualifiedName )\n {\n // InternalStl.g:1397:4: ( ruleQualifiedName )\n // InternalStl.g:1398:5: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getConnectorRule());\n \t\t\t\t\t}\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getConnectorAccess().getEntrySlotCrossReference_0_0());\n \t\t\t\t\n }\n pushFollow(FOLLOW_21);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n }\n\n }\n\n\n }\n\n otherlv_1=(Token)match(input,30,FOLLOW_3); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(otherlv_1, grammarAccess.getConnectorAccess().getGreaterThanSignKeyword_1());\n \t\t\n }\n // InternalStl.g:1416:3: ( ( ruleQualifiedName ) )\n // InternalStl.g:1417:4: ( ruleQualifiedName )\n {\n // InternalStl.g:1417:4: ( ruleQualifiedName )\n // InternalStl.g:1418:5: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getConnectorRule());\n \t\t\t\t\t}\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getConnectorAccess().getExitSlotCrossReference_2_0());\n \t\t\t\t\n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public String getQualifiedName();", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19270:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19271:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19271:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19272:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \r\n }\r\n // InternalDroneScript.g:19273:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19274:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public abstract boolean isQualifiedName(@Nullable String text);", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3927:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:3928:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:3928:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3929:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n // InternalCsv.g:3930:3: ( ruleQualifiedName )\n // InternalCsv.g:3931:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:542:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n {\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n // InternalCsv.g:544:3: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // InternalCsv.g:545:3: ( rule__QualifiedName__Group__0 )\n // InternalCsv.g:545:4: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:285:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:286:1: ruleQualifiedNameWithWildCard EOF\n {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard541);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard548); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void testFullyQualified(){ \n // when I do this, I need to change the regex as EITHER\n // \n $anno $a = $anno.of(R.class);\n \n @draft.java.proto.SannoTest.R\n class C{} \n _class _c = _class.of(C.class); \n assertNotNull( $a.firstIn(_c) );\n \n @R\n class D{} \n _class _d = _class.of(D.class); \n assertNotNull( $a.firstIn(_d) ); \n }", "public abstract String getQualifiedName();", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:119:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:120:1: ruleQualifiedNameWithWildCard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard187);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard194); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmLowerBoundAnded() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2213:1: ( ruleJvmLowerBoundAnded EOF )\r\n // InternalDroneScript.g:2214:1: ruleJvmLowerBoundAnded EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16669:1: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n {\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n // InternalDroneScript.g:16671:2: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4183:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n {\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n // InternalCsv.g:4185:3: ( ruleQualifiedNameInStaticImport )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n // InternalCsv.g:4186:3: ( ruleQualifiedNameInStaticImport )\n // InternalCsv.g:4187:4: ruleQualifiedNameInStaticImport\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedNameWithWildcard() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token kw=null;\r\n AntlrDatatypeRuleToken this_QualifiedName_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5267:28: ( (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5268:1: (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5268:1: (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5269:5: this_QualifiedName_0= ruleQualifiedName (kw= '.*' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n newCompositeNode(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleQualifiedNameWithWildcard12175);\r\n this_QualifiedName_0=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t\tcurrent.merge(this_QualifiedName_0);\r\n \r\n }\r\n if ( state.backtracking==0 ) {\r\n \r\n afterParserOrEnumRuleCall();\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5279:1: (kw= '.*' )?\r\n int alt58=2;\r\n int LA58_0 = input.LA(1);\r\n\r\n if ( (LA58_0==77) ) {\r\n alt58=1;\r\n }\r\n switch (alt58) {\r\n case 1 :\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5280:2: kw= '.*'\r\n {\r\n kw=(Token)match(input,77,FOLLOW_77_in_ruleQualifiedNameWithWildcard12194); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n current.merge(kw);\r\n newLeafNode(kw, grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopAsteriskKeyword_1()); \r\n \r\n }\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "protected char[] indexEntryPrefix() {\n\tif (this.simpleName == null) // Optimization, eg. type reference is 'org.eclipse.jdt.core.*'\n\t\treturn indexEntryPrefix(REF, this.segments[this.currentSegment]);\n\n\treturn indexEntryPrefix(this.currentTag, this.simpleName);\n}", "public final EObject entryRuleSimpleName() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleSimpleName = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:4740:2: (iv_ruleSimpleName= ruleSimpleName EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:4741:2: iv_ruleSimpleName= ruleSimpleName EOF\n {\n currentNode = createCompositeNode(grammarAccess.getSimpleNameRule(), currentNode); \n pushFollow(FOLLOW_ruleSimpleName_in_entryRuleSimpleName8267);\n iv_ruleSimpleName=ruleSimpleName();\n _fsp--;\n\n current =iv_ruleSimpleName; \n match(input,EOF,FOLLOW_EOF_in_entryRuleSimpleName8277); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:6462:2: ( (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* ) )\n // InternalMappingDsl.g:6463:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n {\n // InternalMappingDsl.g:6463:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n // InternalMappingDsl.g:6464:3: this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )*\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_38); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0());\n \t\t\n // InternalMappingDsl.g:6471:3: (kw= '.' this_ID_2= RULE_ID )*\n loop147:\n do {\n int alt147=2;\n int LA147_0 = input.LA(1);\n\n if ( (LA147_0==32) ) {\n alt147=1;\n }\n\n\n switch (alt147) {\n \tcase 1 :\n \t // InternalMappingDsl.g:6472:4: kw= '.' this_ID_2= RULE_ID\n \t {\n \t kw=(Token)match(input,32,FOLLOW_7); \n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0());\n \t \t\t\t\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_38); \n\n \t \t\t\t\tcurrent.merge(this_ID_2);\n \t \t\t\t\n\n \t \t\t\t\tnewLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1());\n \t \t\t\t\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop147;\n }\n } while (true);\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XTypeLiteral__TypeAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19041:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19042:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19042:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19043:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n // InternalDroneScript.g:19044:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19045:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void typeName() throws RecognitionException {\n int typeName_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"typeName\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(432, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 52) ) { return ; }\n // Java.g:433:5: ( qualifiedName )\n dbg.enterAlt(1);\n\n // Java.g:433:9: qualifiedName\n {\n dbg.location(433,9);\n pushFollow(FOLLOW_qualifiedName_in_typeName2039);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 52, typeName_StartIndex); }\n }\n dbg.location(434, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"typeName\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token kw=null;\n AntlrDatatypeRuleToken this_ValidID_0 = null;\n\n AntlrDatatypeRuleToken this_ValidID_2 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3034:28: ( (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3036:5: this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7241);\n this_ValidID_0=ruleValidID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\tcurrent.merge(this_ValidID_0);\n \n }\n if ( state.backtracking==0 ) {\n \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3046:1: (kw= '.' this_ValidID_2= ruleValidID )*\n loop41:\n do {\n int alt41=2;\n int LA41_0 = input.LA(1);\n\n if ( (LA41_0==40) ) {\n alt41=1;\n }\n\n\n switch (alt41) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3047:2: kw= '.' this_ValidID_2= ruleValidID\n \t {\n \t kw=(Token)match(input,40,FOLLOW_40_in_ruleQualifiedName7260); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t current.merge(kw);\n \t newLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n \t \n \t }\n \t pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7282);\n \t this_ValidID_2=ruleValidID();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\tcurrent.merge(this_ValidID_2);\n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t afterParserOrEnumRuleCall();\n \t \n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop41;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4070:1: ( ( ruleJvmLowerBoundAnded ) )\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n {\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n // InternalCsv.g:4072:3: ruleJvmLowerBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void qualifiedName() throws RecognitionException {\n int qualifiedName_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"qualifiedName\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(501, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 66) ) { return ; }\n // Java.g:502:5: ( Identifier ( '.' Identifier )* )\n dbg.enterAlt(1);\n\n // Java.g:502:9: Identifier ( '.' Identifier )*\n {\n dbg.location(502,9);\n match(input,Identifier,FOLLOW_Identifier_in_qualifiedName2534); if (state.failed) return ;\n dbg.location(502,20);\n // Java.g:502:20: ( '.' Identifier )*\n try { dbg.enterSubRule(86);\n\n loop86:\n do {\n int alt86=2;\n try { dbg.enterDecision(86);\n\n int LA86_0 = input.LA(1);\n\n if ( (LA86_0==29) ) {\n int LA86_2 = input.LA(2);\n\n if ( (LA86_2==Identifier) ) {\n alt86=1;\n }\n\n\n }\n\n\n } finally {dbg.exitDecision(86);}\n\n switch (alt86) {\n \tcase 1 :\n \t dbg.enterAlt(1);\n\n \t // Java.g:502:21: '.' Identifier\n \t {\n \t dbg.location(502,21);\n \t match(input,29,FOLLOW_29_in_qualifiedName2537); if (state.failed) return ;\n \t dbg.location(502,25);\n \t match(input,Identifier,FOLLOW_Identifier_in_qualifiedName2539); if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop86;\n }\n } while (true);\n } finally {dbg.exitSubRule(86);}\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 66, qualifiedName_StartIndex); }\n }\n dbg.location(503, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"qualifiedName\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void rule__Reaction__SignalAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17188:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:17189:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:17189:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:17190:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getReactionAccess().getSignalSignalCrossReference_1_0()); \r\n }\r\n // InternalDroneScript.g:17191:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:17192:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getReactionAccess().getSignalSignalQualifiedNameParserRuleCall_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getReactionAccess().getSignalSignalQualifiedNameParserRuleCall_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getReactionAccess().getSignalSignalCrossReference_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__TypeAssignment_1_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12275:1: ( ( ( ruleQualifiedName ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12276:1: ( ( ruleQualifiedName ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12276:1: ( ( ruleQualifiedName ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12277:1: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeCrossReference_1_0_1_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12278:1: ( ruleQualifiedName )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12279:1: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeQualifiedNameParserRuleCall_1_0_1_0_1()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__XRelationalExpression__TypeAssignment_1_0_124627);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeQualifiedNameParserRuleCall_1_0_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeCrossReference_1_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1942:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n // InternalDroneScript.g:1944:3: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1945:3: ( rule__QualifiedName__Group__0 )\r\n // InternalDroneScript.g:1945:4: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "String buildQualifiedName(String separator);", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // InternalCsv.g:480:1: ( ruleJvmLowerBound EOF )\n // InternalCsv.g:481:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3340:1: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n {\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n // InternalCsv.g:3342:2: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleFQN() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleFQN = null;\n\n\n try {\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:458:2: (iv_ruleFQN= ruleFQN EOF )\n // ../org.xtext.example.lmrc.entity/src-gen/org/xtext/example/lmrc/entity/parser/antlr/internal/InternalEntityDsl.g:459:2: iv_ruleFQN= ruleFQN EOF\n {\n newCompositeNode(grammarAccess.getFQNRule()); \n pushFollow(FOLLOW_ruleFQN_in_entryRuleFQN1047);\n iv_ruleFQN=ruleFQN();\n\n state._fsp--;\n\n current =iv_ruleFQN.getText(); \n match(input,EOF,FOLLOW_EOF_in_entryRuleFQN1058); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final String entryRuleFQN() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleFQN = null;\r\n\r\n\r\n try {\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:1311:2: (iv_ruleFQN= ruleFQN EOF )\r\n // ../org.yakindu.sct.model.stext/src-gen/org/yakindu/sct/model/stext/parser/antlr/internal/InternalSText.g:1312:2: iv_ruleFQN= ruleFQN EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getFQNRule()); \r\n }\r\n pushFollow(FOLLOW_ruleFQN_in_entryRuleFQN2800);\r\n iv_ruleFQN=ruleFQN();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleFQN.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleFQN2811); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19613:1: ( ( ruleQualifiedNameWithWildcard ) )\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n {\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n // InternalDroneScript.g:19615:3: ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Check\n \tpublic void checkQualifiedNames(Label label) {\n \t\t\n \t\t// Try get first bit of qualified name, i.e. \"ResEng\". Labels do no necessarily follow Idents, but ANY type of Exp6.\n \t\ttry {\n \t\t\tIdent qualifier = ((Exp5)label.eContainer()).getV().getName();\n \t\t\tQualifiedName fullyQualifiedName = getConverter().toQualifiedName(qualifier.getS() + \".\" + label.getName().getS());\n \t\t\t\n \t\t\t// See if the qualifier is a valid MODULE name\n \t\t\tEObject temp = label;\n \t\t\twhile (!(temp instanceof TopDef) && temp.eContainer() != null) {\n \t\t\t\ttemp = temp.eContainer();\n \t\t\t}\n \t\t\tTopDef topDef = (TopDef)temp;\n \t\t\tIScope scope = getScopeProvider().getScope(topDef, GFPackage.Literals.TOP_DEF__DEFINITIONS);\n \t\t\tif (scope.getSingleElement(qualifier) != null) {\n \t\t\t\t\n \t\t\t\t// We now we are dealing with a Qualified name, now see if the full thing is valid:\n \t\t\t\tif (scope.getSingleElement(fullyQualifiedName) == null) {\n \t\t\t\t\tString msg = String.format(\"No declaration \\\"%1$s\\\" found in module \\\"%2$s\\\"\", label.getName().getS(), qualifier.getS());\n \t\t\t\t\terror(msg, GFPackage.Literals.LABEL__NAME);\n \t\t\t\t}\n \t\t\t}\n \t\t\t\n \t\t} catch (Exception _) {\n \t\t\t// just means the first part wasn't an Ident\n \t\t}\n \t}", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19413:1: ( ( ruleJvmLowerBoundAnded ) )\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n {\r\n // InternalDroneScript.g:19414:2: ( ruleJvmLowerBoundAnded )\r\n // InternalDroneScript.g:19415:3: ruleJvmLowerBoundAnded\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmLowerBoundAnded();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Converted(kind = Converted.Kind.MANUAL_SEMANTIC,\n source = \"${LLVM_SRC}/llvm/tools/clang/include/clang/AST/DeclarationName.h\", line = 427,\n FQN=\"clang::DeclarationNameLoc::DeclarationNameLoc\", NM=\"_ZN5clang18DeclarationNameLocC1Ev\",\n cmd=\"jclank.sh -java-options=${SPUTNIK}/modules/org.clang.ast/llvmToClangType ${LLVM_SRC}/llvm/tools/clang/lib/AST/DeclarationName.cpp -nm=_ZN5clang18DeclarationNameLocC1Ev\")\n //</editor-fold>\n public DeclarationNameLoc() {\n// memset(reinterpret_cast(Object/*void P*/ .class, this), 0, sizeof(/*Deref*/this));\n }", "public String getFullyQualifiedName();", "private static String parseName(String line) {\n if (null == line || !line.startsWith(QUALIFIER_TOKEN)) {\n throw new RuntimeException(\n \"Expected one line naming a qualifier. Line found was: \" + line);\n }\n\n String name = line.substring(QUALIFIER_TOKEN.length());\n LOG.debug(\"Found qualifier: \" + name);\n return name;\n }", "public final void rule__SendSignal__SignalAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17237:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:17238:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:17238:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:17239:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getSendSignalAccess().getSignalSignalCrossReference_1_0()); \r\n }\r\n // InternalDroneScript.g:17240:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:17241:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getSendSignalAccess().getSignalSignalQualifiedNameParserRuleCall_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getSendSignalAccess().getSignalSignalQualifiedNameParserRuleCall_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getSendSignalAccess().getSignalSignalCrossReference_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token this_ID_0=null;\r\n Token kw=null;\r\n Token this_ID_2=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5224:28: ( (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5225:1: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5225:1: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5225:6: this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\r\n {\r\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName12025); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t\tcurrent.merge(this_ID_0);\r\n \r\n }\r\n if ( state.backtracking==0 ) {\r\n \r\n newLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:1: ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\r\n loop57:\r\n do {\r\n int alt57=2;\r\n int LA57_0 = input.LA(1);\r\n\r\n if ( (LA57_0==76) && (synpred1_InternalGML())) {\r\n alt57=1;\r\n }\r\n\r\n\r\n switch (alt57) {\r\n \tcase 1 :\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:2: ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID\r\n \t {\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:2: ( ( '.' )=>kw= '.' )\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:3: ( '.' )=>kw= '.'\r\n \t {\r\n \t kw=(Token)match(input,76,FOLLOW_76_in_ruleQualifiedName12053); if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t current.merge(kw);\r\n \t newLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n \t \r\n \t }\r\n\r\n \t }\r\n\r\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName12069); if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t \t\tcurrent.merge(this_ID_2);\r\n \t \r\n \t }\r\n \t if ( state.backtracking==0 ) {\r\n \t \r\n \t newLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \r\n \t \r\n \t }\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop57;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__TypeName__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3245:1: ( ( ruleIDENTIFIER ) | ( ruleQualifiedIdent ) )\r\n int alt7=2;\r\n int LA7_0 = input.LA(1);\r\n\r\n if ( (LA7_0==RULE_ID) ) {\r\n int LA7_1 = input.LA(2);\r\n\r\n if ( (LA7_1==47) ) {\r\n alt7=2;\r\n }\r\n else if ( (LA7_1==EOF||LA7_1==RULE_ID||(LA7_1>=RULE_RAW_STRING_LIT && LA7_1<=RULE_INTERPRETED_STRING_LIT)||LA7_1==42||(LA7_1>=45 && LA7_1<=46)||(LA7_1>=57 && LA7_1<=58)) ) {\r\n alt7=1;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 7, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else if ( (LA7_0==46) ) {\r\n int LA7_2 = input.LA(2);\r\n\r\n if ( (LA7_2==RULE_ID) ) {\r\n int LA7_5 = input.LA(3);\r\n\r\n if ( (LA7_5==EOF||LA7_5==RULE_ID||(LA7_5>=RULE_RAW_STRING_LIT && LA7_5<=RULE_INTERPRETED_STRING_LIT)||LA7_5==42||(LA7_5>=45 && LA7_5<=46)||(LA7_5>=57 && LA7_5<=58)) ) {\r\n alt7=1;\r\n }\r\n else if ( (LA7_5==47) ) {\r\n alt7=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 7, 5, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 7, 2, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 7, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt7) {\r\n case 1 :\r\n // InternalGo.g:3246:2: ( ruleIDENTIFIER )\r\n {\r\n // InternalGo.g:3246:2: ( ruleIDENTIFIER )\r\n // InternalGo.g:3247:3: ruleIDENTIFIER\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeNameAccess().getIDENTIFIERParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleIDENTIFIER();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeNameAccess().getIDENTIFIERParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3252:2: ( ruleQualifiedIdent )\r\n {\r\n // InternalGo.g:3252:2: ( ruleQualifiedIdent )\r\n // InternalGo.g:3253:3: ruleQualifiedIdent\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeNameAccess().getQualifiedIdentParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedIdent();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeNameAccess().getQualifiedIdentParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "String qualifiedName();", "public final String entryRuleLOWER() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleLOWER = null;\n\n\n try {\n // InternalMyDsl.g:10062:45: (iv_ruleLOWER= ruleLOWER EOF )\n // InternalMyDsl.g:10063:2: iv_ruleLOWER= ruleLOWER EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getLOWERRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleLOWER=ruleLOWER();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleLOWER.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token this_ID_0=null;\r\n\r\n\r\n \tenterRule();\r\n\r\n try {\r\n // InternalNestDsl.g:427:2: (this_ID_0= RULE_ID )\r\n // InternalNestDsl.g:428:2: this_ID_0= RULE_ID\r\n {\r\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_2); \r\n\r\n \t\tcurrent.merge(this_ID_0);\r\n \t\r\n\r\n \t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall());\r\n \t\r\n\r\n }\r\n\r\n\r\n \tleaveRule();\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1760:1: ( ruleJvmLowerBound EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1761:1: ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound3693);\n ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound3700); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XConstructorCall__ConstructorAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18864:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:18865:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:18865:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:18866:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getConstructorJvmConstructorCrossReference_2_0()); \r\n }\r\n // InternalDroneScript.g:18867:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:18868:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getConstructorJvmConstructorQualifiedNameParserRuleCall_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getConstructorJvmConstructorQualifiedNameParserRuleCall_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getConstructorJvmConstructorCrossReference_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n {\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n {\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\n // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0\n {\n pushFollow(FOLLOW_3);\n rule__QualifiedNameInStaticImport__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==33) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__QualifiedNameInStaticImport__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleFQN() throws RecognitionException {\n String current = null;\n int entryRuleFQN_StartIndex = input.index();\n AntlrDatatypeRuleToken iv_ruleFQN = null;\n\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 137) ) { return current; }\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:5676:1: (iv_ruleFQN= ruleFQN EOF )\n // ../de.jevopi.mitra2/src-gen/de/jevopi/mitra2/parser/antlr/internal/InternalMitraParser.g:5677:2: iv_ruleFQN= ruleFQN EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getFQNRule()); \n }\n pushFollow(FOLLOW_ruleFQN_in_entryRuleFQN11613);\n iv_ruleFQN=ruleFQN();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleFQN.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleFQN11624); if (state.failed) return current;\n\n }\n\n }\n \n \tcatch (RecognitionException re) { \n \t recover(input,re); \n \t appendSkippedTokens();\n \t}\n finally {\n if ( state.backtracking>0 ) { memoize(input, 137, entryRuleFQN_StartIndex); }\n }\n return current;\n }", "public final void packageOrTypeName() throws RecognitionException {\n int packageOrTypeName_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"packageOrTypeName\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(424, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 50) ) { return ; }\n // Java.g:425:5: ( qualifiedName )\n dbg.enterAlt(1);\n\n // Java.g:425:9: qualifiedName\n {\n dbg.location(425,9);\n pushFollow(FOLLOW_qualifiedName_in_packageOrTypeName2001);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 50, packageOrTypeName_StartIndex); }\n }\n dbg.location(426, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"packageOrTypeName\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "private static String getFullyQualifiedImport(\n\t\t\tImportDeclaration importDeclaration) {\n\t\tNameExpr nameExpr = importDeclaration.getName();\n\n\t\tString buf = nameExpr.getName();\n\n\t\twhile (nameExpr instanceof QualifiedNameExpr) {\n\t\t\tnameExpr = ((QualifiedNameExpr) nameExpr).getQualifier();\n\t\t\tbuf = nameExpr.getName() + \".\" + buf;\n\t\t}\n\n\t\treturn buf;\n\t}", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11970:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11972:1: ruleQualifiedNameWithWildCard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_123994);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private String checkName(String filename,int start_off){\n String name=FilenameUtil.setForwardSlash(filename);\n\n // check that it is a possibility\n if(name==null || name.length()<=0) return null;\n if(name.indexOf(matchname)<0) \n if( name.indexOf( matchname1) < 0) return null;\n if(! name.endsWith(\".class\") ) return null;\n if(name.indexOf(\"$\")>name.lastIndexOf(\"/\")) return null;\n \n // chop off the class part\n name=name.substring(start_off,name.length()-6);\n name=name.replace('/','.');\n \n return name;\n }", "public final void ruleJvmLowerBoundAnded() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:517:2: ( ( ( rule__JvmLowerBoundAnded__Group__0 ) ) )\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n {\n // InternalCsv.g:518:2: ( ( rule__JvmLowerBoundAnded__Group__0 ) )\n // InternalCsv.g:519:3: ( rule__JvmLowerBoundAnded__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n // InternalCsv.g:520:3: ( rule__JvmLowerBoundAnded__Group__0 )\n // InternalCsv.g:520:4: rule__JvmLowerBoundAnded__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1548:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1550:1: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:1: ( rule__QualifiedName__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3246);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2188:1: ( ruleJvmLowerBound EOF )\r\n // InternalDroneScript.g:2189:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmLowerBound() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2073:1: ( ruleJvmLowerBound EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2074:1: ruleJvmLowerBound EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound4360);\r\n ruleJvmLowerBound();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound4367); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22765:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22767:1: ruleQualifiedNameWithWildCard\n {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_145606);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__DronesBehavior__ScenarioAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16996:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:16997:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:16997:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:16998:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDronesBehaviorAccess().getScenarioScenarioCrossReference_2_0()); \r\n }\r\n // InternalDroneScript.g:16999:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:17000:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDronesBehaviorAccess().getScenarioScenarioQualifiedNameParserRuleCall_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDronesBehaviorAccess().getScenarioScenarioQualifiedNameParserRuleCall_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDronesBehaviorAccess().getScenarioScenarioCrossReference_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleQualifiedName() throws RecognitionException {\n EObject current = null;\n\n Token lv_identifiers_0_0=null;\n Token lv_identifiers_2_0=null;\n\n EObject temp=null; setCurrentLookahead(); resetLookahead(); \n \n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6210:6: ( ( ( (lv_identifiers_0_0= RULE_ID ) ) ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )* ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6211:1: ( ( (lv_identifiers_0_0= RULE_ID ) ) ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )* )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6211:1: ( ( (lv_identifiers_0_0= RULE_ID ) ) ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )* )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6211:2: ( (lv_identifiers_0_0= RULE_ID ) ) ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )*\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6211:2: ( (lv_identifiers_0_0= RULE_ID ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6212:1: (lv_identifiers_0_0= RULE_ID )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6212:1: (lv_identifiers_0_0= RULE_ID )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6213:3: lv_identifiers_0_0= RULE_ID\n {\n lv_identifiers_0_0=(Token)input.LT(1);\n match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName10875); \n\n \t\t\tcreateLeafNode(grammarAccess.getQualifiedNameAccess().getIdentifiersIDTerminalRuleCall_0_0(), \"identifiers\"); \n \t\t\n\n \t if (current==null) {\n \t current = factory.create(grammarAccess.getQualifiedNameRule().getType().getClassifier());\n \t associateNodeWithAstElement(currentNode, current);\n \t }\n \t try {\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"identifiers\",\n \t \t\tlv_identifiers_0_0, \n \t \t\t\"ID\", \n \t \t\tlastConsumedNode);\n \t } catch (ValueConverterException vce) {\n \t\t\t\thandleValueConverterException(vce);\n \t }\n \t \n\n }\n\n\n }\n\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6235:2: ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )*\n loop88:\n do {\n int alt88=2;\n int LA88_0 = input.LA(1);\n\n if ( (LA88_0==52) ) {\n alt88=1;\n }\n\n\n switch (alt88) {\n \tcase 1 :\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6235:4: '.' ( (lv_identifiers_2_0= RULE_ID ) )\n \t {\n \t match(input,52,FOLLOW_52_in_ruleQualifiedName10891); \n\n \t createLeafNode(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0(), null); \n \t \n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6239:1: ( (lv_identifiers_2_0= RULE_ID ) )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6240:1: (lv_identifiers_2_0= RULE_ID )\n \t {\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6240:1: (lv_identifiers_2_0= RULE_ID )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6241:3: lv_identifiers_2_0= RULE_ID\n \t {\n \t lv_identifiers_2_0=(Token)input.LT(1);\n \t match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName10908); \n\n \t \t\t\tcreateLeafNode(grammarAccess.getQualifiedNameAccess().getIdentifiersIDTerminalRuleCall_1_1_0(), \"identifiers\"); \n \t \t\t\n\n \t \t if (current==null) {\n \t \t current = factory.create(grammarAccess.getQualifiedNameRule().getType().getClassifier());\n \t \t associateNodeWithAstElement(currentNode, current);\n \t \t }\n \t \t try {\n \t \t \t\tadd(\n \t \t \t\t\tcurrent, \n \t \t \t\t\t\"identifiers\",\n \t \t \t\tlv_identifiers_2_0, \n \t \t \t\t\"ID\", \n \t \t \t\tlastConsumedNode);\n \t \t } catch (ValueConverterException vce) {\n \t \t\t\t\thandleValueConverterException(vce);\n \t \t }\n \t \t \n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop88;\n }\n } while (true);\n\n\n }\n\n\n }\n\n resetLookahead(); \n \tlastConsumedNode = currentNode;\n \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4255:1: ( ( ruleQualifiedNameWithWildcard ) )\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n {\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n // InternalCsv.g:4257:3: ruleQualifiedNameWithWildcard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmUpperBoundAnded() throws RecognitionException {\n try {\n // InternalCsv.g:455:1: ( ruleJvmUpperBoundAnded EOF )\n // InternalCsv.g:456:1: ruleJvmUpperBoundAnded EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleOperandName() throws RecognitionException {\r\n try {\r\n // InternalGo.g:3005:1: ( ruleOperandName EOF )\r\n // InternalGo.g:3006:1: ruleOperandName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOperandNameRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleOperandName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOperandNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19042:1: ( ( ( ruleQualifiedName ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19043:1: ( ( ruleQualifiedName ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19043:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19044:1: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19045:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19046:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__JvmParameterizedTypeReference__TypeAssignment_038493);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalNgt.g:1722:2: ( (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* ) )\n // InternalNgt.g:1723:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n {\n // InternalNgt.g:1723:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n // InternalNgt.g:1724:3: this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )*\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_35); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0());\n \t\t\n // InternalNgt.g:1731:3: (kw= '.' this_ID_2= RULE_ID )*\n loop30:\n do {\n int alt30=2;\n int LA30_0 = input.LA(1);\n\n if ( (LA30_0==38) ) {\n alt30=1;\n }\n\n\n switch (alt30) {\n \tcase 1 :\n \t // InternalNgt.g:1732:4: kw= '.' this_ID_2= RULE_ID\n \t {\n \t kw=(Token)match(input,38,FOLLOW_26); \n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0());\n \t \t\t\t\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_35); \n\n \t \t\t\t\tcurrent.merge(this_ID_2);\n \t \t\t\t\n\n \t \t\t\t\tnewLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1());\n \t \t\t\t\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop30;\n }\n } while (true);\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:269:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:270:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:270:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:271:1: ( rule__QualifiedName__Group__0 )\n {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:272:1: ( rule__QualifiedName__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:272:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName514);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@ARule(\n\t\t\tdate = \"9/14/2006\",\t\t\n\t\t\tdesc = \"Check the target variable NCName\",\n\t\t\tauthor = \"[email protected]\",\n\t\t\terrors=\"BPELC__UNSET_ATTRIBUTE,General.NCName_Bad\"\n\t\t)\t\n\tpublic void rule_CheckName_1 () {\t\t\t\t\t\n\t\t// Must be a valid NCName ...\n\t\tcheckNCName(mNode, ncName, AT_LINK_NAME );\t\t\t\n\t}", "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1797:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1798:1: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1798:1: ( ( rule__QualifiedName__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1799:1: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1800:1: ( rule__QualifiedName__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1800:2: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3784);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Converted(kind = Converted.Kind.AUTO,\n source = \"${LLVM_SRC}/llvm/tools/clang/include/clang/AST/Decl.h\", line = 557,\n FQN=\"clang::NamespaceDecl::getCanonicalDecl\", NM=\"_ZN5clang13NamespaceDecl16getCanonicalDeclEv\",\n cmd=\"jclank.sh -java-options=${SPUTNIK}/modules/org.clang.ast/llvmToClangType ${LLVM_SRC}/llvm/tools/clang/lib/AST/DeclCXX.cpp -nm=_ZN5clang13NamespaceDecl16getCanonicalDeclEv\")\n //</editor-fold>\n @Override public NamespaceDecl /*P*/ getCanonicalDecl()/* override*/ {\n return getOriginalNamespace();\n }", "public final void entryRuleQualifiedIdent() throws RecognitionException {\r\n try {\r\n // InternalGo.g:405:1: ( ruleQualifiedIdent EOF )\r\n // InternalGo.g:406:1: ruleQualifiedIdent EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedIdentRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedIdent();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedIdentRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public static final String getUnqualifiedClassName(ClassFile cf, short cpIndex) {\n ClassInfo ci = (ClassInfo) cf.getCpInfo(cpIndex);\n short nameIndex = ci.nameIndex;\n String className = getUtf8(cf, nameIndex);\n /*if (className != null) {\n int i = className.lastIndexOf('.');\n return i != -1 ? className.substring(i + 1) : className;\n } else {\n return null;\n }*/\n int i;\n return className != null && (i = className.lastIndexOf('/')) >= 0 ? className.substring(i + 1) : className;\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13503:1: ( ( ( ruleQualifiedName ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13504:1: ( ( ruleQualifiedName ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13504:1: ( ( ruleQualifiedName ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13505:1: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13506:1: ( ruleQualifiedName )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13507:1: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__JvmParameterizedTypeReference__TypeAssignment_027144);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2357:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n {\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n {\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\r\n // InternalDroneScript.g:2360:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2361:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n // InternalDroneScript.g:2361:5: rule__QualifiedNameInStaticImport__Group__0\r\n {\r\n pushFollow(FOLLOW_4);\r\n rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n // InternalDroneScript.g:2364:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n // InternalDroneScript.g:2365:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2366:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n loop2:\r\n do {\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( (LA2_0==RULE_ID) ) {\r\n int LA2_2 = input.LA(2);\r\n\r\n if ( (LA2_2==43) ) {\r\n alt2=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt2) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:2366:5: rule__QualifiedNameInStaticImport__Group__0\r\n \t {\r\n \t pushFollow(FOLLOW_4);\r\n \t rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop2;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XTypeLiteral__TypeAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18843:1: ( ( ( ruleQualifiedName ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18844:1: ( ( ruleQualifiedName ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18844:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18845:1: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18846:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18847:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__XTypeLiteral__TypeAssignment_338082);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmLowerBound() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmLowerBound = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2856:2: (iv_ruleJvmLowerBound= ruleJvmLowerBound EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2857:2: iv_ruleJvmLowerBound= ruleJvmLowerBound EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmLowerBoundRule()); \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_entryRuleJvmLowerBound6708);\n iv_ruleJvmLowerBound=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmLowerBound; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmLowerBound6718); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:567:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n {\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n // InternalCsv.g:569:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n // InternalCsv.g:570:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n // InternalCsv.g:570:4: rule__QualifiedNameWithWildcard__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.6915655", "0.682471", "0.6678353", "0.6662167", "0.6653083", "0.66005373", "0.6592223", "0.6547921", "0.6546635", "0.65422446", "0.65328467", "0.597124", "0.57831955", "0.5774831", "0.57206607", "0.56832564", "0.5643908", "0.56134295", "0.54162204", "0.5238899", "0.52364784", "0.52364784", "0.52364784", "0.51914334", "0.5115006", "0.5098823", "0.5097197", "0.5087294", "0.5060888", "0.504512", "0.50447994", "0.5023413", "0.50007635", "0.49887827", "0.49787852", "0.49658972", "0.49241322", "0.49146295", "0.4893462", "0.48861608", "0.48631674", "0.47954285", "0.47501293", "0.47418776", "0.4728891", "0.47138086", "0.4710241", "0.4707425", "0.46644378", "0.46554986", "0.46488655", "0.4635715", "0.46331155", "0.46302834", "0.46287522", "0.4620988", "0.46200693", "0.4617913", "0.46177754", "0.46068305", "0.4601034", "0.4589238", "0.4582206", "0.4573149", "0.45601037", "0.45520365", "0.45458406", "0.45234483", "0.45196196", "0.4504385", "0.4499989", "0.4499498", "0.44972488", "0.44965625", "0.4489346", "0.44668669", "0.4466269", "0.44634008", "0.44497147", "0.44486862", "0.44466057", "0.44422066", "0.44398388", "0.44383395", "0.44236556", "0.4421273", "0.44178057", "0.44039074", "0.44007286", "0.4390964", "0.43791148", "0.43633157", "0.43519825", "0.43518594", "0.4349551", "0.43472004", "0.4322179", "0.43145534", "0.43080157", "0.4304268" ]
0.6924917
0
$ANTLR end "entryRuleQualifiedName" $ANTLR start "ruleQualifiedName" InternalCsv.g:538:1: ruleQualifiedName : ( ( rule__QualifiedName__Group__0 ) ) ;
public final void ruleQualifiedName() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:542:2: ( ( ( rule__QualifiedName__Group__0 ) ) ) // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) ) { // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) ) // InternalCsv.g:544:3: ( rule__QualifiedName__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getQualifiedNameAccess().getGroup()); } // InternalCsv.g:545:3: ( rule__QualifiedName__Group__0 ) // InternalCsv.g:545:4: rule__QualifiedName__Group__0 { pushFollow(FOLLOW_2); rule__QualifiedName__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getQualifiedNameAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1942:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n // InternalDroneScript.g:1944:3: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1945:3: ( rule__QualifiedName__Group__0 )\r\n // InternalDroneScript.g:1945:4: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // InternalCsv.g:530:1: ( ruleQualifiedName EOF )\n // InternalCsv.g:531:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:269:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:270:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:270:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:271:1: ( rule__QualifiedName__Group__0 )\n {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:272:1: ( rule__QualifiedName__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:272:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName514);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1548:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1550:1: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:1: ( rule__QualifiedName__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3246);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1797:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1798:1: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1798:1: ( ( rule__QualifiedName__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1799:1: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1800:1: ( rule__QualifiedName__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1800:2: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3784);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16669:1: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n {\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n // InternalDroneScript.g:16671:2: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:257:1: ( ruleQualifiedName EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:258:1: ruleQualifiedName EOF\n {\n before(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName481);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName488); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1785:1: ( ruleQualifiedName EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1786:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3751);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3758); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1930:1: ( ruleQualifiedName EOF )\r\n // InternalDroneScript.g:1931:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1536:1: ( ruleQualifiedName EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1537:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3220); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3023:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3024:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName7183);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName7194); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // InternalNestDsl.g:414:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // InternalNestDsl.g:415:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleQualifiedName.getText(); \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalMappingDsl.g:6449:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalMappingDsl.g:6450:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalStl.g:1675:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalStl.g:1676:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalNgt.g:1709:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalNgt.g:1710:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3340:1: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n {\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n // InternalCsv.g:3342:2: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5213:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5214:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName11974);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleQualifiedName.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName11985); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleQualifiedName() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleQualifiedName = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6197:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6198:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n currentNode = createCompositeNode(grammarAccess.getQualifiedNameRule(), currentNode); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName10823);\n iv_ruleQualifiedName=ruleQualifiedName();\n _fsp--;\n\n current =iv_ruleQualifiedName; \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName10833); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__QualifiedNameWithWildCard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4294:1: ( ( ruleQualifiedName ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4295:1: ( ruleQualifiedName )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4295:1: ( ruleQualifiedName )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4296:1: ruleQualifiedName\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n pushFollow(FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildCard__Group__0__Impl9193);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15064:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\r\n // InternalDroneScript.g:15065:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\r\n {\r\n pushFollow(FOLLOW_6);\r\n rule__QualifiedName__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildCard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2638:1: ( ( ruleQualifiedName ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2639:1: ( ruleQualifiedName )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2639:1: ( ruleQualifiedName )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2640:1: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildCard__Group__0__Impl5669);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3274:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // InternalCsv.g:3275:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_5);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15530:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15531:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__0__Impl_in_rule__QualifiedName__Group_1__031394);\r\n rule__QualifiedName__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1_in_rule__QualifiedName__Group_1__031397);\r\n rule__QualifiedName__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "String getQualifiedName();", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4219:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4220:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__0__Impl_in_rule__QualifiedName__Group_1__09041);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1_in_rule__QualifiedName__Group_1__09044);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15509:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15510:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15510:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15511:1: ( rule__QualifiedName__Group_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15512:1: ( rule__QualifiedName__Group_1__0 )*\r\n loop98:\r\n do {\r\n int alt98=2;\r\n int LA98_0 = input.LA(1);\r\n\r\n if ( (LA98_0==37) ) {\r\n int LA98_2 = input.LA(2);\r\n\r\n if ( (LA98_2==RULE_ID) ) {\r\n int LA98_3 = input.LA(3);\r\n\r\n if ( (synpred155_InternalFin()) ) {\r\n alt98=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt98) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15512:2: rule__QualifiedName__Group_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__QualifiedName__Group_1__0_in_rule__QualifiedName__Group__1__Impl31359);\r\n \t rule__QualifiedName__Group_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop98;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:567:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n {\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n // InternalCsv.g:569:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n // InternalCsv.g:570:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n // InternalCsv.g:570:4: rule__QualifiedNameWithWildcard__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11054:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11055:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__0__Impl_in_rule__QualifiedName__Group_1__022189);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1_in_rule__QualifiedName__Group_1__022192);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15010:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\r\n // InternalDroneScript.g:15011:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__QualifiedName__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public String getQualifiedName();", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3258:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // InternalCsv.g:3259:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // InternalCsv.g:3259:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // InternalCsv.g:3260:2: ( rule__QualifiedName__Group_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n // InternalCsv.g:3261:2: ( rule__QualifiedName__Group_1__0 )*\n loop26:\n do {\n int alt26=2;\n int LA26_0 = input.LA(1);\n\n if ( (LA26_0==33) ) {\n int LA26_2 = input.LA(2);\n\n if ( (LA26_2==RULE_ID) ) {\n alt26=1;\n }\n\n\n }\n\n\n switch (alt26) {\n \tcase 1 :\n \t // InternalCsv.g:3261:3: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_35);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop26;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3286:1: ( ( '.' ) )\n // InternalCsv.g:3287:1: ( '.' )\n {\n // InternalCsv.g:3287:1: ( '.' )\n // InternalCsv.g:3288:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15469:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15470:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__0__Impl_in_rule__QualifiedName__Group__031273);\r\n rule__QualifiedName__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__1_in_rule__QualifiedName__Group__031276);\r\n rule__QualifiedName__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2250:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\r\n // InternalDroneScript.g:2251:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2251:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\r\n // InternalDroneScript.g:2252:3: ( rule__QualifiedNameWithWildcard__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2253:3: ( rule__QualifiedNameWithWildcard__Group__0 )\r\n // InternalDroneScript.g:2253:4: rule__QualifiedNameWithWildcard__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15542:1: ( ( ( '.' ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15543:1: ( ( '.' ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15543:1: ( ( '.' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15544:1: ( '.' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15545:1: ( '.' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15546:2: '.'\r\n {\r\n match(input,37,FOLLOW_37_in_rule__QualifiedName__Group_1__0__Impl31426); if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4158:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4159:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0__Impl_in_rule__QualifiedName__Group__08920);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__QualifiedName__Group__1_in_rule__QualifiedName__Group__08923);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4198:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4199:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4199:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4200:1: ( rule__QualifiedName__Group_1__0 )*\n {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4201:1: ( rule__QualifiedName__Group_1__0 )*\n loop38:\n do {\n int alt38=2;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==55) ) {\n alt38=1;\n }\n\n\n switch (alt38) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4201:2: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_rule__QualifiedName__Group_1__0_in_rule__QualifiedName__Group__1__Impl9006);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop38;\n }\n } while (true);\n\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10993:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10994:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0__Impl_in_rule__QualifiedName__Group__022068);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__QualifiedName__Group__1_in_rule__QualifiedName__Group__022071);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n {\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n {\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\n // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0\n {\n pushFollow(FOLLOW_3);\n rule__QualifiedNameInStaticImport__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==33) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__QualifiedNameInStaticImport__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15048:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\r\n // InternalDroneScript.g:15049:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n {\r\n // InternalDroneScript.g:15049:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n // InternalDroneScript.g:15050:2: ( rule__QualifiedName__Group_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n // InternalDroneScript.g:15051:2: ( rule__QualifiedName__Group_1__0 )*\r\n loop114:\r\n do {\r\n int alt114=2;\r\n int LA114_0 = input.LA(1);\r\n\r\n if ( (LA114_0==43) ) {\r\n int LA114_2 = input.LA(2);\r\n\r\n if ( (LA114_2==RULE_ID) ) {\r\n int LA114_3 = input.LA(3);\r\n\r\n if ( (synpred163_InternalDroneScript()) ) {\r\n alt114=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt114) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:15051:3: rule__QualifiedName__Group_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_106);\r\n \t rule__QualifiedName__Group_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop114;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public abstract String getQualifiedName();", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15076:1: ( ( ( '.' ) ) )\r\n // InternalDroneScript.g:15077:1: ( ( '.' ) )\r\n {\r\n // InternalDroneScript.g:15077:1: ( ( '.' ) )\r\n // InternalDroneScript.g:15078:2: ( '.' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n // InternalDroneScript.g:15079:2: ( '.' )\r\n // InternalDroneScript.g:15079:3: '.'\r\n {\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4231:1: ( ( '.' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4232:1: ( '.' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4232:1: ( '.' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4233:1: '.'\n {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n match(input,55,FOLLOW_55_in_rule__QualifiedName__Group_1__0__Impl9072); \n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameWithWildCard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:297:2: ( ( ( rule__QualifiedNameWithWildCard__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:298:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:298:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:299:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:300:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:300:2: rule__QualifiedNameWithWildCard__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0_in_ruleQualifiedNameWithWildCard574);\n rule__QualifiedNameWithWildCard__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public RuleCall getQualifiedNameParserRuleCall() { return cQualifiedNameParserRuleCall; }", "public RuleCall getQualifiedNameParserRuleCall() { return cQualifiedNameParserRuleCall; }", "public RuleCall getQualifiedNameParserRuleCall() { return cQualifiedNameParserRuleCall; }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2357:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n {\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n {\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\r\n // InternalDroneScript.g:2360:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2361:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n // InternalDroneScript.g:2361:5: rule__QualifiedNameInStaticImport__Group__0\r\n {\r\n pushFollow(FOLLOW_4);\r\n rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n // InternalDroneScript.g:2364:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n // InternalDroneScript.g:2365:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2366:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n loop2:\r\n do {\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( (LA2_0==RULE_ID) ) {\r\n int LA2_2 = input.LA(2);\r\n\r\n if ( (LA2_2==43) ) {\r\n alt2=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt2) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:2366:5: rule__QualifiedNameInStaticImport__Group__0\r\n \t {\r\n \t pushFollow(FOLLOW_4);\r\n \t rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop2;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final AntlrDatatypeRuleToken ruleQualifiedNameWithAtLeastOneLevel() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n AntlrDatatypeRuleToken this_QualifiedName_2 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:3765:2: ( (this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName ) )\n // InternalMappingDsl.g:3766:2: (this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName )\n {\n // InternalMappingDsl.g:3766:2: (this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName )\n // InternalMappingDsl.g:3767:3: this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_78); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameWithAtLeastOneLevelAccess().getIDTerminalRuleCall_0());\n \t\t\n kw=(Token)match(input,32,FOLLOW_7); \n\n \t\t\tcurrent.merge(kw);\n \t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameWithAtLeastOneLevelAccess().getFullStopKeyword_1());\n \t\t\n\n \t\t\tnewCompositeNode(grammarAccess.getQualifiedNameWithAtLeastOneLevelAccess().getQualifiedNameParserRuleCall_2());\n \t\t\n pushFollow(FOLLOW_2);\n this_QualifiedName_2=ruleQualifiedName();\n\n state._fsp--;\n\n\n \t\t\tcurrent.merge(this_QualifiedName_2);\n \t\t\n\n \t\t\tafterParserOrEnumRuleCall();\n \t\t\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16834:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16836:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__Import__ImportedNamespaceAssignment_133961);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11033:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11034:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11034:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11035:1: ( rule__QualifiedName__Group_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11036:1: ( rule__QualifiedName__Group_1__0 )*\n loop68:\n do {\n int alt68=2;\n int LA68_0 = input.LA(1);\n\n if ( (LA68_0==30) ) {\n int LA68_2 = input.LA(2);\n\n if ( (LA68_2==RULE_ID) ) {\n int LA68_3 = input.LA(3);\n\n if ( (synpred89_InternalInstances()) ) {\n alt68=1;\n }\n\n\n }\n\n\n }\n\n\n switch (alt68) {\n \tcase 1 :\n \t // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11036:2: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_rule__QualifiedName__Group_1__0_in_rule__QualifiedName__Group__1__Impl22154);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop68;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11096:1: ( ( RULE_ID ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11097:1: ( RULE_ID )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11097:1: ( RULE_ID )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11098:1: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n }\n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group_1__1__Impl22280); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\n try {\n // InternalCsv.g:555:1: ( ruleQualifiedNameWithWildcard EOF )\n // InternalCsv.g:556:1: ruleQualifiedNameWithWildcard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11066:1: ( ( ( '.' ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11067:1: ( ( '.' ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11067:1: ( ( '.' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11068:1: ( '.' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11069:1: ( '.' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11070:2: '.'\n {\n match(input,30,FOLLOW_30_in_rule__QualifiedName__Group_1__0__Impl22221); if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameWithWildCard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:131:2: ( ( ( rule__QualifiedNameWithWildCard__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:132:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:132:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:133:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:134:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:134:2: rule__QualifiedNameWithWildCard__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0_in_ruleQualifiedNameWithWildCard220);\n rule__QualifiedNameWithWildCard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "String buildQualifiedName(String separator);", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19594:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19596:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n // InternalDroneScript.g:19597:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19598:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11005:1: ( ( RULE_ID ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11006:1: ( RULE_ID )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11006:1: ( RULE_ID )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11007:1: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n }\n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group__0__Impl22098); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4261:1: ( ( RULE_ID ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4262:1: ( RULE_ID )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4262:1: ( RULE_ID )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4263:1: RULE_ID\n {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group_1__1__Impl9130); \n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2238:1: ( ruleQualifiedNameWithWildcard EOF )\r\n // InternalDroneScript.g:2239:1: ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3312:1: ( ( ruleValidID ) )\n // InternalCsv.g:3313:1: ( ruleValidID )\n {\n // InternalCsv.g:3313:1: ( ruleValidID )\n // InternalCsv.g:3314:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__DronesBehavior__ScenarioAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16996:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:16997:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:16997:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:16998:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDronesBehaviorAccess().getScenarioScenarioCrossReference_2_0()); \r\n }\r\n // InternalDroneScript.g:16999:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:17000:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDronesBehaviorAccess().getScenarioScenarioQualifiedNameParserRuleCall_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDronesBehaviorAccess().getScenarioScenarioQualifiedNameParserRuleCall_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDronesBehaviorAccess().getScenarioScenarioCrossReference_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3328:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\n // InternalCsv.g:3329:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameWithWildcard__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3301:1: ( rule__QualifiedName__Group_1__1__Impl )\n // InternalCsv.g:3302:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void typeName() throws RecognitionException {\n int typeName_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"typeName\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(432, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 52) ) { return ; }\n // Java.g:433:5: ( qualifiedName )\n dbg.enterAlt(1);\n\n // Java.g:433:9: qualifiedName\n {\n dbg.location(433,9);\n pushFollow(FOLLOW_qualifiedName_in_typeName2039);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 52, typeName_StartIndex); }\n }\n dbg.location(434, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"typeName\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final String entryRuleQualifiedNameWithAtLeastOneLevel() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedNameWithAtLeastOneLevel = null;\n\n\n try {\n // InternalMappingDsl.g:3752:72: (iv_ruleQualifiedNameWithAtLeastOneLevel= ruleQualifiedNameWithAtLeastOneLevel EOF )\n // InternalMappingDsl.g:3753:2: iv_ruleQualifiedNameWithAtLeastOneLevel= ruleQualifiedNameWithAtLeastOneLevel EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameWithAtLeastOneLevelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedNameWithAtLeastOneLevel=ruleQualifiedNameWithAtLeastOneLevel();\n\n state._fsp--;\n\n current =iv_ruleQualifiedNameWithAtLeastOneLevel.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3232:1: ( ( ruleValidID ) )\n // InternalCsv.g:3233:1: ( ruleValidID )\n {\n // InternalCsv.g:3233:1: ( ruleValidID )\n // InternalCsv.g:3234:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15037:1: ( rule__QualifiedName__Group__1__Impl )\r\n // InternalDroneScript.g:15038:2: rule__QualifiedName__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15091:1: ( rule__QualifiedName__Group_1__1__Impl )\r\n // InternalDroneScript.g:15092:2: rule__QualifiedName__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNamespace__NameAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22614:1: ( ( ruleQualifiedName ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22615:1: ( ruleQualifiedName )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22615:1: ( ruleQualifiedName )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22616:1: ruleQualifiedName\n {\n before(grammarAccess.getAstNamespaceAccess().getNameQualifiedNameParserRuleCall_2_0()); \n pushFollow(FOLLOW_ruleQualifiedName_in_rule__AstNamespace__NameAssignment_245294);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getAstNamespaceAccess().getNameQualifiedNameParserRuleCall_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3247:1: ( rule__QualifiedName__Group__1__Impl )\n // InternalCsv.g:3248:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4250:1: ( rule__QualifiedName__Group_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4251:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1__Impl_in_rule__QualifiedName__Group_1__19103);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4170:1: ( ( RULE_ID ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4171:1: ( RULE_ID )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4171:1: ( RULE_ID )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4172:1: RULE_ID\n {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group__0__Impl8950); \n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15561:1: ( rule__QualifiedName__Group_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15562:2: rule__QualifiedName__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1__Impl_in_rule__QualifiedName__Group_1__131458);\r\n rule__QualifiedName__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3355:1: ( rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2 )\n // InternalCsv.g:3356:2: rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2\n {\n pushFollow(FOLLOW_39);\n rule__QualifiedNameWithWildcard__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void qualifiedName() throws RecognitionException {\n int qualifiedName_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"qualifiedName\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(501, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 66) ) { return ; }\n // Java.g:502:5: ( Identifier ( '.' Identifier )* )\n dbg.enterAlt(1);\n\n // Java.g:502:9: Identifier ( '.' Identifier )*\n {\n dbg.location(502,9);\n match(input,Identifier,FOLLOW_Identifier_in_qualifiedName2534); if (state.failed) return ;\n dbg.location(502,20);\n // Java.g:502:20: ( '.' Identifier )*\n try { dbg.enterSubRule(86);\n\n loop86:\n do {\n int alt86=2;\n try { dbg.enterDecision(86);\n\n int LA86_0 = input.LA(1);\n\n if ( (LA86_0==29) ) {\n int LA86_2 = input.LA(2);\n\n if ( (LA86_2==Identifier) ) {\n alt86=1;\n }\n\n\n }\n\n\n } finally {dbg.exitDecision(86);}\n\n switch (alt86) {\n \tcase 1 :\n \t dbg.enterAlt(1);\n\n \t // Java.g:502:21: '.' Identifier\n \t {\n \t dbg.location(502,21);\n \t match(input,29,FOLLOW_29_in_qualifiedName2537); if (state.failed) return ;\n \t dbg.location(502,25);\n \t match(input,Identifier,FOLLOW_Identifier_in_qualifiedName2539); if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop86;\n }\n } while (true);\n } finally {dbg.exitSubRule(86);}\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 66, qualifiedName_StartIndex); }\n }\n dbg.location(503, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"qualifiedName\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token this_ID_0=null;\r\n\r\n\r\n \tenterRule();\r\n\r\n try {\r\n // InternalNestDsl.g:427:2: (this_ID_0= RULE_ID )\r\n // InternalNestDsl.g:428:2: this_ID_0= RULE_ID\r\n {\r\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_2); \r\n\r\n \t\tcurrent.merge(this_ID_0);\r\n \t\r\n\r\n \t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall());\r\n \t\r\n\r\n }\r\n\r\n\r\n \tleaveRule();\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\n try {\n // InternalCsv.g:630:1: ( ruleQualifiedNameInStaticImport EOF )\n // InternalCsv.g:631:1: ruleQualifiedNameInStaticImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:6462:2: ( (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* ) )\n // InternalMappingDsl.g:6463:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n {\n // InternalMappingDsl.g:6463:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n // InternalMappingDsl.g:6464:3: this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )*\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_38); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0());\n \t\t\n // InternalMappingDsl.g:6471:3: (kw= '.' this_ID_2= RULE_ID )*\n loop147:\n do {\n int alt147=2;\n int LA147_0 = input.LA(1);\n\n if ( (LA147_0==32) ) {\n alt147=1;\n }\n\n\n switch (alt147) {\n \tcase 1 :\n \t // InternalMappingDsl.g:6472:4: kw= '.' this_ID_2= RULE_ID\n \t {\n \t kw=(Token)match(input,32,FOLLOW_7); \n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0());\n \t \t\t\t\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_38); \n\n \t \t\t\t\tcurrent.merge(this_ID_2);\n \t \t\t\t\n\n \t \t\t\t\tnewLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1());\n \t \t\t\t\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop147;\n }\n } while (true);\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:285:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:286:1: ruleQualifiedNameWithWildCard EOF\n {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard541);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard548); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4282:1: ( rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4283:2: rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0__Impl_in_rule__QualifiedNameWithWildCard__Group__09163);\n rule__QualifiedNameWithWildCard__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__1_in_rule__QualifiedNameWithWildCard__Group__09166);\n rule__QualifiedNameWithWildCard__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15498:1: ( rule__QualifiedName__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15499:2: rule__QualifiedName__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__1__Impl_in_rule__QualifiedName__Group__131332);\r\n rule__QualifiedName__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4187:1: ( rule__QualifiedName__Group__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4188:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__1__Impl_in_rule__QualifiedName__Group__18979);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15102:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:15103:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:15103:1: ( ruleValidID )\r\n // InternalDroneScript.g:15104:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11085:1: ( rule__QualifiedName__Group_1__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11086:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1__Impl_in_rule__QualifiedName__Group_1__122253);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11022:1: ( rule__QualifiedName__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11023:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__1__Impl_in_rule__QualifiedName__Group__122127);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedNameWithWildcard() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token kw=null;\r\n AntlrDatatypeRuleToken this_QualifiedName_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5267:28: ( (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5268:1: (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5268:1: (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5269:5: this_QualifiedName_0= ruleQualifiedName (kw= '.*' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n newCompositeNode(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleQualifiedNameWithWildcard12175);\r\n this_QualifiedName_0=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t\tcurrent.merge(this_QualifiedName_0);\r\n \r\n }\r\n if ( state.backtracking==0 ) {\r\n \r\n afterParserOrEnumRuleCall();\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5279:1: (kw= '.*' )?\r\n int alt58=2;\r\n int LA58_0 = input.LA(1);\r\n\r\n if ( (LA58_0==77) ) {\r\n alt58=1;\r\n }\r\n switch (alt58) {\r\n case 1 :\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5280:2: kw= '.*'\r\n {\r\n kw=(Token)match(input,77,FOLLOW_77_in_ruleQualifiedNameWithWildcard12194); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n current.merge(kw);\r\n newLeafNode(kw, grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopAsteriskKeyword_1()); \r\n \r\n }\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void packageOrTypeName() throws RecognitionException {\n int packageOrTypeName_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"packageOrTypeName\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(424, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 50) ) { return ; }\n // Java.g:425:5: ( qualifiedName )\n dbg.enterAlt(1);\n\n // Java.g:425:9: qualifiedName\n {\n dbg.location(425,9);\n pushFollow(FOLLOW_qualifiedName_in_packageOrTypeName2001);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 50, packageOrTypeName_StartIndex); }\n }\n dbg.location(426, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"packageOrTypeName\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16657:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\r\n // InternalDroneScript.g:16658:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__QualifiedNameWithWildcard__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "List<String> getQualifiedName();", "String qualifiedName();", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2345:1: ( ruleQualifiedNameInStaticImport EOF )\r\n // InternalDroneScript.g:2346:1: ruleQualifiedNameInStaticImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token kw=null;\n AntlrDatatypeRuleToken this_ValidID_0 = null;\n\n AntlrDatatypeRuleToken this_ValidID_2 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3034:28: ( (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3036:5: this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7241);\n this_ValidID_0=ruleValidID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\tcurrent.merge(this_ValidID_0);\n \n }\n if ( state.backtracking==0 ) {\n \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3046:1: (kw= '.' this_ValidID_2= ruleValidID )*\n loop41:\n do {\n int alt41=2;\n int LA41_0 = input.LA(1);\n\n if ( (LA41_0==40) ) {\n alt41=1;\n }\n\n\n switch (alt41) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3047:2: kw= '.' this_ValidID_2= ruleValidID\n \t {\n \t kw=(Token)match(input,40,FOLLOW_40_in_ruleQualifiedName7260); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t current.merge(kw);\n \t newLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n \t \n \t }\n \t pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7282);\n \t this_ValidID_2=ruleValidID();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\tcurrent.merge(this_ValidID_2);\n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t afterParserOrEnumRuleCall();\n \t \n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop41;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15022:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:15023:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:15023:1: ( ruleValidID )\r\n // InternalDroneScript.g:15024:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public String getQualifiedName () {\n return rawName;\n }", "public final void rule__QualifiedNameWithWildCard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2626:1: ( rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2627:2: rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0__Impl_in_rule__QualifiedNameWithWildCard__Group__05639);\n rule__QualifiedNameWithWildCard__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__1_in_rule__QualifiedNameWithWildCard__Group__05642);\n rule__QualifiedNameWithWildCard__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:119:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:120:1: ruleQualifiedNameWithWildCard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard187);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard194); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__AstPackage__NameAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22478:1: ( ( ruleQualifiedName ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22479:1: ( ruleQualifiedName )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22479:1: ( ruleQualifiedName )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22480:1: ruleQualifiedName\n {\n before(grammarAccess.getAstPackageAccess().getNameQualifiedNameParserRuleCall_2_0()); \n pushFollow(FOLLOW_ruleQualifiedName_in_rule__AstPackage__NameAssignment_245013);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getAstPackageAccess().getNameQualifiedNameParserRuleCall_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.77036095", "0.75543517", "0.7485181", "0.74091", "0.7399612", "0.73639554", "0.7311708", "0.7268323", "0.7252872", "0.7239227", "0.7226515", "0.72165877", "0.7167494", "0.7104937", "0.7086737", "0.7063489", "0.69371724", "0.6865493", "0.6782874", "0.67677623", "0.6739587", "0.6738269", "0.67203987", "0.67068267", "0.66786176", "0.6593583", "0.65666664", "0.65613073", "0.65281194", "0.6509733", "0.64943594", "0.64785516", "0.6473796", "0.6447767", "0.638984", "0.6388711", "0.63720477", "0.6327708", "0.6303579", "0.6295991", "0.627408", "0.6262761", "0.62346774", "0.6156855", "0.61202407", "0.61166817", "0.61166817", "0.61166817", "0.6098216", "0.60953283", "0.60340077", "0.6026336", "0.60047007", "0.5978693", "0.59476674", "0.59348255", "0.5934182", "0.59224415", "0.5887343", "0.58620965", "0.58526987", "0.5783237", "0.57700104", "0.5751783", "0.57370156", "0.57335395", "0.57262325", "0.5709737", "0.5702494", "0.5691607", "0.5683521", "0.5670048", "0.56698376", "0.5664574", "0.5655965", "0.56477684", "0.5635877", "0.56294024", "0.5620642", "0.5618067", "0.5612835", "0.5605406", "0.5589502", "0.55851454", "0.5580636", "0.55759656", "0.557505", "0.555218", "0.5541462", "0.55270976", "0.5526325", "0.5524572", "0.5518048", "0.5515712", "0.5507428", "0.5503774", "0.5502201", "0.55009454", "0.54962057", "0.54922307" ]
0.81027424
0
$ANTLR end "ruleQualifiedName" $ANTLR start "entryRuleQualifiedNameWithWildcard" InternalCsv.g:554:1: entryRuleQualifiedNameWithWildcard : ruleQualifiedNameWithWildcard EOF ;
public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException { try { // InternalCsv.g:555:1: ( ruleQualifiedNameWithWildcard EOF ) // InternalCsv.g:556:1: ruleQualifiedNameWithWildcard EOF { if ( state.backtracking==0 ) { before(grammarAccess.getQualifiedNameWithWildcardRule()); } pushFollow(FOLLOW_1); ruleQualifiedNameWithWildcard(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getQualifiedNameWithWildcardRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2238:1: ( ruleQualifiedNameWithWildcard EOF )\r\n // InternalDroneScript.g:2239:1: ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedNameWithWildcard = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5256:2: (iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5257:2: iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard12117);\r\n iv_ruleQualifiedNameWithWildcard=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleQualifiedNameWithWildcard.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard12128); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // InternalCsv.g:530:1: ( ruleQualifiedName EOF )\n // InternalCsv.g:531:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:285:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:286:1: ruleQualifiedNameWithWildCard EOF\n {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard541);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard548); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedNameWithWildcard() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token kw=null;\r\n AntlrDatatypeRuleToken this_QualifiedName_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5267:28: ( (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5268:1: (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5268:1: (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5269:5: this_QualifiedName_0= ruleQualifiedName (kw= '.*' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n newCompositeNode(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleQualifiedNameWithWildcard12175);\r\n this_QualifiedName_0=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t\tcurrent.merge(this_QualifiedName_0);\r\n \r\n }\r\n if ( state.backtracking==0 ) {\r\n \r\n afterParserOrEnumRuleCall();\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5279:1: (kw= '.*' )?\r\n int alt58=2;\r\n int LA58_0 = input.LA(1);\r\n\r\n if ( (LA58_0==77) ) {\r\n alt58=1;\r\n }\r\n switch (alt58) {\r\n case 1 :\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5280:2: kw= '.*'\r\n {\r\n kw=(Token)match(input,77,FOLLOW_77_in_ruleQualifiedNameWithWildcard12194); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n current.merge(kw);\r\n newLeafNode(kw, grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopAsteriskKeyword_1()); \r\n \r\n }\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:119:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:120:1: ruleQualifiedNameWithWildCard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard187);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard194); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:567:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n {\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n // InternalCsv.g:569:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n // InternalCsv.g:570:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n // InternalCsv.g:570:4: rule__QualifiedNameWithWildcard__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1536:1: ( ruleQualifiedName EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1537:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3220); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1785:1: ( ruleQualifiedName EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1786:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3751);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3758); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:257:1: ( ruleQualifiedName EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:258:1: ruleQualifiedName EOF\n {\n before(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName481);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName488); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalMappingDsl.g:6449:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalMappingDsl.g:6450:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3340:1: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n {\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n // InternalCsv.g:3342:2: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1930:1: ( ruleQualifiedName EOF )\r\n // InternalDroneScript.g:1931:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalNgt.g:1709:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalNgt.g:1710:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3023:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3024:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName7183);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName7194); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16669:1: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n {\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n // InternalDroneScript.g:16671:2: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // InternalNestDsl.g:414:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // InternalNestDsl.g:415:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleQualifiedName.getText(); \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalStl.g:1675:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalStl.g:1676:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5213:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5214:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName11974);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleQualifiedName.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName11985); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject entryRuleQualifiedName() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleQualifiedName = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6197:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6198:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n currentNode = createCompositeNode(grammarAccess.getQualifiedNameRule(), currentNode); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName10823);\n iv_ruleQualifiedName=ruleQualifiedName();\n _fsp--;\n\n current =iv_ruleQualifiedName; \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName10833); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2250:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\r\n // InternalDroneScript.g:2251:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2251:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\r\n // InternalDroneScript.g:2252:3: ( rule__QualifiedNameWithWildcard__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2253:3: ( rule__QualifiedNameWithWildcard__Group__0 )\r\n // InternalDroneScript.g:2253:4: rule__QualifiedNameWithWildcard__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19613:1: ( ( ruleQualifiedNameWithWildcard ) )\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n {\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n // InternalDroneScript.g:19615:3: ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11970:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11972:1: ruleQualifiedNameWithWildCard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_123994);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\n try {\n // InternalCsv.g:630:1: ( ruleQualifiedNameInStaticImport EOF )\n // InternalCsv.g:631:1: ruleQualifiedNameInStaticImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22765:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22767:1: ruleQualifiedNameWithWildCard\n {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_145606);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4255:1: ( ( ruleQualifiedNameWithWildcard ) )\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n {\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n // InternalCsv.g:4257:3: ruleQualifiedNameWithWildcard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3355:1: ( rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2 )\n // InternalCsv.g:3356:2: rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2\n {\n pushFollow(FOLLOW_39);\n rule__QualifiedNameWithWildcard__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3328:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\n // InternalCsv.g:3329:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameWithWildcard__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3367:1: ( ( '.' ) )\n // InternalCsv.g:3368:1: ( '.' )\n {\n // InternalCsv.g:3368:1: ( '.' )\n // InternalCsv.g:3369:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2666:1: ( ( ( '.*' )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2667:1: ( ( '.*' )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2667:1: ( ( '.*' )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2668:1: ( '.*' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2669:1: ( '.*' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==34) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2670:2: '.*'\n {\n match(input,34,FOLLOW_34_in_rule__QualifiedNameWithWildCard__Group__1__Impl5727); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2345:1: ( ruleQualifiedNameInStaticImport EOF )\r\n // InternalDroneScript.g:2346:1: ruleQualifiedNameInStaticImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public XtypeGrammarAccess.QualifiedNameWithWildcardElements getQualifiedNameWithWildcardAccess() {\r\n\t\treturn gaXtype.getQualifiedNameWithWildcardAccess();\r\n\t}", "public XtypeGrammarAccess.QualifiedNameWithWildcardElements getQualifiedNameWithWildcardAccess() {\n\t\treturn gaXtype.getQualifiedNameWithWildcardAccess();\n\t}", "public XtypeGrammarAccess.QualifiedNameWithWildcardElements getQualifiedNameWithWildcardAccess() {\n\t\treturn gaXtype.getQualifiedNameWithWildcardAccess();\n\t}", "public final void rule__QualifiedNameWithWildCard__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4322:1: ( ( ( '.*' )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4323:1: ( ( '.*' )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4323:1: ( ( '.*' )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4324:1: ( '.*' )?\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4325:1: ( '.*' )?\n int alt39=2;\n int LA39_0 = input.LA(1);\n\n if ( (LA39_0==56) ) {\n alt39=1;\n }\n switch (alt39) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4326:2: '.*'\n {\n match(input,56,FOLLOW_56_in_rule__QualifiedNameWithWildCard__Group__1__Impl9251); \n\n }\n break;\n\n }\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "String getQualifiedName();", "public final void rule__QualifiedNameWithWildcard__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3393:1: ( ( '*' ) )\n // InternalCsv.g:3394:1: ( '*' )\n {\n // InternalCsv.g:3394:1: ( '*' )\n // InternalCsv.g:3395:2: '*'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getAsteriskKeyword_2()); \n }\n match(input,38,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getAsteriskKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2638:1: ( ( ruleQualifiedName ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2639:1: ( ruleQualifiedName )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2639:1: ( ruleQualifiedName )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2640:1: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildCard__Group__0__Impl5669);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithExtends_cf27961() {\n java.lang.String expected = (\"? extends @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.subtypeOf(type).toString();\n // StatementAdderOnAssert create random local variable\n java.lang.Object vc_12387 = new java.lang.Object();\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithExtends_cf27961__10 = // StatementAdderMethod cloned existing statement\n type.equals(vc_12387);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithExtends_cf27961__10);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__QualifiedNameWithWildcard__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16684:1: ( rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2 )\r\n // InternalDroneScript.g:16685:2: rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2\r\n {\r\n pushFollow(FOLLOW_112);\r\n rule__QualifiedNameWithWildcard__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildCard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4294:1: ( ( ruleQualifiedName ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4295:1: ( ruleQualifiedName )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4295:1: ( ruleQualifiedName )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4296:1: ruleQualifiedName\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n pushFollow(FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildCard__Group__0__Impl9193);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16722:1: ( ( '*' ) )\r\n // InternalDroneScript.g:16723:1: ( '*' )\r\n {\r\n // InternalDroneScript.g:16723:1: ( '*' )\r\n // InternalDroneScript.g:16724:2: '*'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getAsteriskKeyword_2()); \r\n }\r\n match(input,36,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getAsteriskKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:542:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n {\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n // InternalCsv.g:544:3: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // InternalCsv.g:545:3: ( rule__QualifiedName__Group__0 )\n // InternalCsv.g:545:4: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16657:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\r\n // InternalDroneScript.g:16658:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__QualifiedNameWithWildcard__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final AntlrDatatypeRuleToken ruleQualifiedNameWithAtLeastOneLevel() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n AntlrDatatypeRuleToken this_QualifiedName_2 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:3765:2: ( (this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName ) )\n // InternalMappingDsl.g:3766:2: (this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName )\n {\n // InternalMappingDsl.g:3766:2: (this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName )\n // InternalMappingDsl.g:3767:3: this_ID_0= RULE_ID kw= '.' this_QualifiedName_2= ruleQualifiedName\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_78); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameWithAtLeastOneLevelAccess().getIDTerminalRuleCall_0());\n \t\t\n kw=(Token)match(input,32,FOLLOW_7); \n\n \t\t\tcurrent.merge(kw);\n \t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameWithAtLeastOneLevelAccess().getFullStopKeyword_1());\n \t\t\n\n \t\t\tnewCompositeNode(grammarAccess.getQualifiedNameWithAtLeastOneLevelAccess().getQualifiedNameParserRuleCall_2());\n \t\t\n pushFollow(FOLLOW_2);\n this_QualifiedName_2=ruleQualifiedName();\n\n state._fsp--;\n\n\n \t\t\tcurrent.merge(this_QualifiedName_2);\n \t\t\n\n \t\t\tafterParserOrEnumRuleCall();\n \t\t\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19594:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19596:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n // InternalDroneScript.g:19597:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19598:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithExtends_cf27960() {\n java.lang.String expected = (\"? extends @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.subtypeOf(type).toString();\n // StatementAdderOnAssert create null value\n java.lang.Object vc_12386 = (java.lang.Object)null;\n // AssertGenerator add assertion\n org.junit.Assert.assertNull(vc_12386);\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithExtends_cf27960__10 = // StatementAdderMethod cloned existing statement\n type.equals(vc_12386);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithExtends_cf27960__10);\n org.junit.Assert.assertEquals(expected, actual);\n }", "String buildQualifiedName(String separator);", "public final void rule__QualifiedNameWithWildcard__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16696:1: ( ( '.' ) )\r\n // InternalDroneScript.g:16697:1: ( '.' )\r\n {\r\n // InternalDroneScript.g:16697:1: ( '.' )\r\n // InternalDroneScript.g:16698:2: '.'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \r\n }\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:6462:2: ( (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* ) )\n // InternalMappingDsl.g:6463:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n {\n // InternalMappingDsl.g:6463:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n // InternalMappingDsl.g:6464:3: this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )*\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_38); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0());\n \t\t\n // InternalMappingDsl.g:6471:3: (kw= '.' this_ID_2= RULE_ID )*\n loop147:\n do {\n int alt147=2;\n int LA147_0 = input.LA(1);\n\n if ( (LA147_0==32) ) {\n alt147=1;\n }\n\n\n switch (alt147) {\n \tcase 1 :\n \t // InternalMappingDsl.g:6472:4: kw= '.' this_ID_2= RULE_ID\n \t {\n \t kw=(Token)match(input,32,FOLLOW_7); \n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0());\n \t \t\t\t\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_38); \n\n \t \t\t\t\tcurrent.merge(this_ID_2);\n \t \t\t\t\n\n \t \t\t\t\tnewLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1());\n \t \t\t\t\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop147;\n }\n } while (true);\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public String getQualifiedName();", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithExtends_cf27968() {\n java.lang.String expected = (\"? extends @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.subtypeOf(type).toString();\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithExtends_cf27968__8 = // StatementAdderMethod cloned existing statement\n type.isBoxedPrimitive();\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithExtends_cf27968__8);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3927:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:3928:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:3928:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3929:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n // InternalCsv.g:3930:3: ( ruleQualifiedName )\n // InternalCsv.g:3931:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedNameWithWildCard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:297:2: ( ( ( rule__QualifiedNameWithWildCard__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:298:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:298:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:299:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:300:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:300:2: rule__QualifiedNameWithWildCard__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0_in_ruleQualifiedNameWithWildCard574);\n rule__QualifiedNameWithWildCard__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedNameWithAtLeastOneLevel() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedNameWithAtLeastOneLevel = null;\n\n\n try {\n // InternalMappingDsl.g:3752:72: (iv_ruleQualifiedNameWithAtLeastOneLevel= ruleQualifiedNameWithAtLeastOneLevel EOF )\n // InternalMappingDsl.g:3753:2: iv_ruleQualifiedNameWithAtLeastOneLevel= ruleQualifiedNameWithAtLeastOneLevel EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameWithAtLeastOneLevelRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedNameWithAtLeastOneLevel=ruleQualifiedNameWithAtLeastOneLevel();\n\n state._fsp--;\n\n current =iv_ruleQualifiedNameWithAtLeastOneLevel.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==38) ) {\n alt10=1;\n }\n else if ( (LA10_0==RULE_ID) ) {\n alt10=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 10, 0, input);\n\n throw nvae;\n }\n switch (alt10) {\n case 1 :\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n {\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n {\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public abstract String getQualifiedName();", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token this_ID_0=null;\r\n Token kw=null;\r\n Token this_ID_2=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5224:28: ( (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5225:1: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5225:1: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5225:6: this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\r\n {\r\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName12025); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t\tcurrent.merge(this_ID_0);\r\n \r\n }\r\n if ( state.backtracking==0 ) {\r\n \r\n newLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:1: ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\r\n loop57:\r\n do {\r\n int alt57=2;\r\n int LA57_0 = input.LA(1);\r\n\r\n if ( (LA57_0==76) && (synpred1_InternalGML())) {\r\n alt57=1;\r\n }\r\n\r\n\r\n switch (alt57) {\r\n \tcase 1 :\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:2: ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID\r\n \t {\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:2: ( ( '.' )=>kw= '.' )\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:3: ( '.' )=>kw= '.'\r\n \t {\r\n \t kw=(Token)match(input,76,FOLLOW_76_in_ruleQualifiedName12053); if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t current.merge(kw);\r\n \t newLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n \t \r\n \t }\r\n\r\n \t }\r\n\r\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName12069); if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t \t\tcurrent.merge(this_ID_2);\r\n \t \r\n \t }\r\n \t if ( state.backtracking==0 ) {\r\n \t \r\n \t newLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \r\n \t \r\n \t }\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop57;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public abstract boolean isQualifiedName(@Nullable String text);", "public final void ruleQualifiedNameWithWildCard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:131:2: ( ( ( rule__QualifiedNameWithWildCard__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:132:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:132:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:133:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:134:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:134:2: rule__QualifiedNameWithWildCard__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0_in_ruleQualifiedNameWithWildCard220);\n rule__QualifiedNameWithWildCard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithSuper_cf36371() {\n java.lang.String expected = (\"? super @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.supertypeOf(type).toString();\n // StatementAdderOnAssert create null value\n java.lang.Object vc_16130 = (java.lang.Object)null;\n // AssertGenerator add assertion\n org.junit.Assert.assertNull(vc_16130);\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithSuper_cf36371__10 = // StatementAdderMethod cloned existing statement\n type.equals(vc_16130);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithSuper_cf36371__10);\n org.junit.Assert.assertEquals(expected, actual);\n }", "List<String> getQualifiedName();", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token kw=null;\n AntlrDatatypeRuleToken this_ValidID_0 = null;\n\n AntlrDatatypeRuleToken this_ValidID_2 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3034:28: ( (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3036:5: this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7241);\n this_ValidID_0=ruleValidID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\tcurrent.merge(this_ValidID_0);\n \n }\n if ( state.backtracking==0 ) {\n \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3046:1: (kw= '.' this_ValidID_2= ruleValidID )*\n loop41:\n do {\n int alt41=2;\n int LA41_0 = input.LA(1);\n\n if ( (LA41_0==40) ) {\n alt41=1;\n }\n\n\n switch (alt41) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3047:2: kw= '.' this_ValidID_2= ruleValidID\n \t {\n \t kw=(Token)match(input,40,FOLLOW_40_in_ruleQualifiedName7260); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t current.merge(kw);\n \t newLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n \t \n \t }\n \t pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7282);\n \t this_ValidID_2=ruleValidID();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\tcurrent.merge(this_ValidID_2);\n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t afterParserOrEnumRuleCall();\n \t \n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop41;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__WildcardAssignment_1_0_3_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4202:1: ( ( ( '*' ) ) )\n // InternalCsv.g:4203:2: ( ( '*' ) )\n {\n // InternalCsv.g:4203:2: ( ( '*' ) )\n // InternalCsv.g:4204:3: ( '*' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n // InternalCsv.g:4205:3: ( '*' )\n // InternalCsv.g:4206:4: '*'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n match(input,38,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token this_ID_0=null;\r\n\r\n\r\n \tenterRule();\r\n\r\n try {\r\n // InternalNestDsl.g:427:2: (this_ID_0= RULE_ID )\r\n // InternalNestDsl.g:428:2: this_ID_0= RULE_ID\r\n {\r\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_2); \r\n\r\n \t\tcurrent.merge(this_ID_0);\r\n \t\r\n\r\n \t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall());\r\n \t\r\n\r\n }\r\n\r\n\r\n \tleaveRule();\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__XTypeLiteral__TypeAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19041:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19042:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19042:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19043:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n // InternalDroneScript.g:19044:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19045:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public static String makeMatchFunctionWildcard(String query) {\n\t\tif (TextUtils.isEmpty(query))\n\t\t\treturn query;\n\n\t\tfinal StringBuilder builder = new StringBuilder();\n\t\tfinal String[] splits = TextUtils.split(query, \" \");\n\n\t\tfor (String split : splits)\n\t\t\tbuilder.append(split).append(\"*\").append(\" \");\n\n\t\tString result = builder.toString().trim();\n\t\tresult = result.replace(\"'\", \"\\'\");\n\t\tresult = result.replace(\"\\\"\", \"\\\\\\\"\");\n\t\treturn result;\n\t}", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19270:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19271:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19271:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19272:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \r\n }\r\n // InternalDroneScript.g:19273:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19274:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeQualifiedNameParserRuleCall_0_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void testFullyQualified(){ \n // when I do this, I need to change the regex as EITHER\n // \n $anno $a = $anno.of(R.class);\n \n @draft.java.proto.SannoTest.R\n class C{} \n _class _c = _class.of(C.class); \n assertNotNull( $a.firstIn(_c) );\n \n @R\n class D{} \n _class _d = _class.of(D.class); \n assertNotNull( $a.firstIn(_d) ); \n }", "public final void typeName() throws RecognitionException {\n int typeName_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"typeName\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(432, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 52) ) { return ; }\n // Java.g:433:5: ( qualifiedName )\n dbg.enterAlt(1);\n\n // Java.g:433:9: qualifiedName\n {\n dbg.location(433,9);\n pushFollow(FOLLOW_qualifiedName_in_typeName2039);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 52, typeName_StartIndex); }\n }\n dbg.location(434, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"typeName\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3382:1: ( rule__QualifiedNameWithWildcard__Group__2__Impl )\n // InternalCsv.g:3383:2: rule__QualifiedNameWithWildcard__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithSuper_cf36372() {\n java.lang.String expected = (\"? super @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.supertypeOf(type).toString();\n // StatementAdderOnAssert create random local variable\n java.lang.Object vc_16131 = new java.lang.Object();\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithSuper_cf36372__10 = // StatementAdderMethod cloned existing statement\n type.equals(vc_16131);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithSuper_cf36372__10);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public Wildcard getWildcard() {\n return _wildcard;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalNgt.g:1722:2: ( (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* ) )\n // InternalNgt.g:1723:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n {\n // InternalNgt.g:1723:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n // InternalNgt.g:1724:3: this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )*\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_35); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0());\n \t\t\n // InternalNgt.g:1731:3: (kw= '.' this_ID_2= RULE_ID )*\n loop30:\n do {\n int alt30=2;\n int LA30_0 = input.LA(1);\n\n if ( (LA30_0==38) ) {\n alt30=1;\n }\n\n\n switch (alt30) {\n \tcase 1 :\n \t // InternalNgt.g:1732:4: kw= '.' this_ID_2= RULE_ID\n \t {\n \t kw=(Token)match(input,38,FOLLOW_26); \n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0());\n \t \t\t\t\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_35); \n\n \t \t\t\t\tcurrent.merge(this_ID_2);\n \t \t\t\t\n\n \t \t\t\t\tnewLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1());\n \t \t\t\t\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop30;\n }\n } while (true);\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithSuper_cf36379() {\n java.lang.String expected = (\"? super @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.supertypeOf(type).toString();\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithSuper_cf36379__8 = // StatementAdderMethod cloned existing statement\n type.isBoxedPrimitive();\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithSuper_cf36379__8);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public WildcardPattern(String pattern) {\r\n this.pattern = pattern;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3534:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\r\n int alt44=2;\r\n int LA44_0 = input.LA(1);\r\n\r\n if ( (LA44_0==36) ) {\r\n alt44=1;\r\n }\r\n else if ( (LA44_0==RULE_ID) ) {\r\n alt44=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 44, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt44) {\r\n case 1 :\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n {\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n // InternalDroneScript.g:3536:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n // InternalDroneScript.g:3537:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n // InternalDroneScript.g:3537:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n {\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n // InternalDroneScript.g:3542:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n // InternalDroneScript.g:3543:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n // InternalDroneScript.g:3543:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private static String wildcardAsRegex( String wildcard ) {\n\t\tStringBuilder sb = new StringBuilder( wildcard.length() * 110 / 100 );\n\t\tfor ( int i = 0; i < wildcard.length(); i++ ) {\n\t\t\tfinal char c = wildcard.charAt( i );\n\t\t\tswitch (c) {\n\t\t\tcase '*':\n\t\t\t\tsb.append( \".*?\" );\n\t\t\t\tbreak;\n\n\t\t\tcase '?':\n\t\t\t\tsb.append( \".\" );\n\t\t\t\tbreak;\n\n\t\t\t// chars that have magic regex meaning. They need quoting to be taken\n\t\t\t// literally\n\t\t\tcase '$':\n\t\t\tcase '(':\n\t\t\tcase ')':\n\t\t\tcase '+':\n\t\t\tcase '-':\n\t\t\tcase '.':\n\t\t\tcase '[':\n\t\t\tcase '\\\\':\n\t\t\tcase ']':\n\t\t\tcase '^':\n\t\t\tcase '{':\n\t\t\tcase '|':\n\t\t\tcase '}':\n\t\t\t\tsb.append( '\\\\' );\n\t\t\t\tsb.append( c );\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tsb.append( c );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\treturn sb.toString();\n\t}", "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1942:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n // InternalDroneScript.g:1944:3: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1945:3: ( rule__QualifiedName__Group__0 )\r\n // InternalDroneScript.g:1945:4: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16834:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16836:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__Import__ImportedNamespaceAssignment_133961);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19541:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n {\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n // InternalDroneScript.g:19543:3: ( ruleQualifiedNameInStaticImport )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n // InternalDroneScript.g:19544:3: ( ruleQualifiedNameInStaticImport )\r\n // InternalDroneScript.g:19545:4: ruleQualifiedNameInStaticImport\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private static boolean censorWildcard(boolean wildcard, String value, String prefix) {\r\n return wildcard \r\n &&!(value.toLowerCase().startsWith(prefix) && (value.length() < prefix.length() + 1));\r\n }", "public final void rule__XImportDeclaration__WildcardAssignment_1_0_3_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19560:1: ( ( ( '*' ) ) )\r\n // InternalDroneScript.g:19561:2: ( ( '*' ) )\r\n {\r\n // InternalDroneScript.g:19561:2: ( ( '*' ) )\r\n // InternalDroneScript.g:19562:3: ( '*' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n // InternalDroneScript.g:19563:3: ( '*' )\r\n // InternalDroneScript.g:19564:4: '*'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n match(input,36,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void qualifiedName() throws RecognitionException {\n int qualifiedName_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"qualifiedName\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(501, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 66) ) { return ; }\n // Java.g:502:5: ( Identifier ( '.' Identifier )* )\n dbg.enterAlt(1);\n\n // Java.g:502:9: Identifier ( '.' Identifier )*\n {\n dbg.location(502,9);\n match(input,Identifier,FOLLOW_Identifier_in_qualifiedName2534); if (state.failed) return ;\n dbg.location(502,20);\n // Java.g:502:20: ( '.' Identifier )*\n try { dbg.enterSubRule(86);\n\n loop86:\n do {\n int alt86=2;\n try { dbg.enterDecision(86);\n\n int LA86_0 = input.LA(1);\n\n if ( (LA86_0==29) ) {\n int LA86_2 = input.LA(2);\n\n if ( (LA86_2==Identifier) ) {\n alt86=1;\n }\n\n\n }\n\n\n } finally {dbg.exitDecision(86);}\n\n switch (alt86) {\n \tcase 1 :\n \t dbg.enterAlt(1);\n\n \t // Java.g:502:21: '.' Identifier\n \t {\n \t dbg.location(502,21);\n \t match(input,29,FOLLOW_29_in_qualifiedName2537); if (state.failed) return ;\n \t dbg.location(502,25);\n \t match(input,Identifier,FOLLOW_Identifier_in_qualifiedName2539); if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop86;\n }\n } while (true);\n } finally {dbg.exitSubRule(86);}\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 66, qualifiedName_StartIndex); }\n }\n dbg.location(503, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"qualifiedName\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n {\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n {\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\n // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0\n {\n pushFollow(FOLLOW_3);\n rule__QualifiedNameInStaticImport__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==33) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__QualifiedNameInStaticImport__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16711:1: ( rule__QualifiedNameWithWildcard__Group__2__Impl )\r\n // InternalDroneScript.g:16712:2: rule__QualifiedNameWithWildcard__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalStl.g:1688:2: ( (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* ) )\n // InternalStl.g:1689:2: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\n {\n // InternalStl.g:1689:2: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\n // InternalStl.g:1690:3: this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_28); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0());\n \t\t\n }\n // InternalStl.g:1697:3: ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\n loop20:\n do {\n int alt20=2;\n int LA20_0 = input.LA(1);\n\n if ( (LA20_0==35) && (synpred1_InternalStl())) {\n alt20=1;\n }\n\n\n switch (alt20) {\n \tcase 1 :\n \t // InternalStl.g:1698:4: ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID\n \t {\n \t // InternalStl.g:1698:4: ( ( '.' )=>kw= '.' )\n \t // InternalStl.g:1699:5: ( '.' )=>kw= '.'\n \t {\n \t kw=(Token)match(input,35,FOLLOW_3); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\tcurrent.merge(kw);\n \t \t\t\t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0());\n \t \t\t\t\t\n \t }\n\n \t }\n\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_28); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tcurrent.merge(this_ID_2);\n \t \t\t\t\n \t }\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tnewLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1());\n \t \t\t\t\n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop20;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithExtends_cf28027_failAssert26_literalMutation29405() {\n // AssertGenerator generate try/catch block with fail statement\n try {\n java.lang.String expected = (\"? e{xtends @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n // AssertGenerator add assertion\n org.junit.Assert.assertEquals(expected, \"? e{xtends @com.squareup.javapoet.AmplAnnotatedTypeNameTest.NeverNull java.lang.String\");\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.subtypeOf(type).toString();\n // StatementAdderOnAssert create null value\n java.util.Map<javax.lang.model.element.TypeParameterElement, com.squareup.javapoet.TypeVariableName> vc_12432 = (java.util.Map)null;\n // AssertGenerator add assertion\n org.junit.Assert.assertNull(vc_12432);\n // StatementAdderOnAssert create null value\n javax.lang.model.type.TypeMirror vc_12430 = (javax.lang.model.type.TypeMirror)null;\n // AssertGenerator add assertion\n org.junit.Assert.assertNull(vc_12430);\n // StatementAdderOnAssert create null value\n com.squareup.javapoet.TypeName vc_12428 = (com.squareup.javapoet.TypeName)null;\n // AssertGenerator add assertion\n org.junit.Assert.assertNull(vc_12428);\n // StatementAdderMethod cloned existing statement\n vc_12428.get(vc_12430, vc_12432);\n org.junit.Assert.fail(\"annotatedWildcardTypeNameWithExtends_cf28027 should have thrown NullPointerException\");\n } catch (java.lang.NullPointerException eee) {\n }\n }", "public final EObject ruleQualifiedName() throws RecognitionException {\n EObject current = null;\n\n Token lv_identifiers_0_0=null;\n Token lv_identifiers_2_0=null;\n\n EObject temp=null; setCurrentLookahead(); resetLookahead(); \n \n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6210:6: ( ( ( (lv_identifiers_0_0= RULE_ID ) ) ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )* ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6211:1: ( ( (lv_identifiers_0_0= RULE_ID ) ) ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )* )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6211:1: ( ( (lv_identifiers_0_0= RULE_ID ) ) ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )* )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6211:2: ( (lv_identifiers_0_0= RULE_ID ) ) ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )*\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6211:2: ( (lv_identifiers_0_0= RULE_ID ) )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6212:1: (lv_identifiers_0_0= RULE_ID )\n {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6212:1: (lv_identifiers_0_0= RULE_ID )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6213:3: lv_identifiers_0_0= RULE_ID\n {\n lv_identifiers_0_0=(Token)input.LT(1);\n match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName10875); \n\n \t\t\tcreateLeafNode(grammarAccess.getQualifiedNameAccess().getIdentifiersIDTerminalRuleCall_0_0(), \"identifiers\"); \n \t\t\n\n \t if (current==null) {\n \t current = factory.create(grammarAccess.getQualifiedNameRule().getType().getClassifier());\n \t associateNodeWithAstElement(currentNode, current);\n \t }\n \t try {\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"identifiers\",\n \t \t\tlv_identifiers_0_0, \n \t \t\t\"ID\", \n \t \t\tlastConsumedNode);\n \t } catch (ValueConverterException vce) {\n \t\t\t\thandleValueConverterException(vce);\n \t }\n \t \n\n }\n\n\n }\n\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6235:2: ( '.' ( (lv_identifiers_2_0= RULE_ID ) ) )*\n loop88:\n do {\n int alt88=2;\n int LA88_0 = input.LA(1);\n\n if ( (LA88_0==52) ) {\n alt88=1;\n }\n\n\n switch (alt88) {\n \tcase 1 :\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6235:4: '.' ( (lv_identifiers_2_0= RULE_ID ) )\n \t {\n \t match(input,52,FOLLOW_52_in_ruleQualifiedName10891); \n\n \t createLeafNode(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0(), null); \n \t \n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6239:1: ( (lv_identifiers_2_0= RULE_ID ) )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6240:1: (lv_identifiers_2_0= RULE_ID )\n \t {\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6240:1: (lv_identifiers_2_0= RULE_ID )\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6241:3: lv_identifiers_2_0= RULE_ID\n \t {\n \t lv_identifiers_2_0=(Token)input.LT(1);\n \t match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName10908); \n\n \t \t\t\tcreateLeafNode(grammarAccess.getQualifiedNameAccess().getIdentifiersIDTerminalRuleCall_1_1_0(), \"identifiers\"); \n \t \t\t\n\n \t \t if (current==null) {\n \t \t current = factory.create(grammarAccess.getQualifiedNameRule().getType().getClassifier());\n \t \t associateNodeWithAstElement(currentNode, current);\n \t \t }\n \t \t try {\n \t \t \t\tadd(\n \t \t \t\t\tcurrent, \n \t \t \t\t\t\"identifiers\",\n \t \t \t\tlv_identifiers_2_0, \n \t \t \t\t\"ID\", \n \t \t \t\tlastConsumedNode);\n \t \t } catch (ValueConverterException vce) {\n \t \t\t\t\thandleValueConverterException(vce);\n \t \t }\n \t \t \n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop88;\n }\n } while (true);\n\n\n }\n\n\n }\n\n resetLookahead(); \n \tlastConsumedNode = currentNode;\n \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XTypeLiteral__TypeAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18843:1: ( ( ( ruleQualifiedName ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18844:1: ( ( ruleQualifiedName ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18844:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18845:1: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18846:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18847:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__XTypeLiteral__TypeAssignment_338082);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Test\n public void testRevisedWildcardAndPartition() {\n Path filePath = new Path(\"hdfs:///w/x/y/z.csv\");\n ImplicitColumnManager implictColManager = new ImplicitColumnManager(\n fixture.getOptionManager(),\n standardOptions(filePath));\n\n ScanLevelProjection scanProj = ScanLevelProjection.build(\n RowSetTestUtils.projectList(SchemaPath.DYNAMIC_STAR,\n ScanTestUtils.partitionColName(8)),\n Lists.newArrayList(implictColManager.projectionParser()));\n\n List<ColumnProjection> cols = scanProj.columns();\n assertEquals(2, cols.size());\n assertTrue(scanProj.columns().get(0) instanceof UnresolvedWildcardColumn);\n assertTrue(scanProj.columns().get(1) instanceof PartitionColumn);\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1548:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1550:1: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:1: ( rule__QualifiedName__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3246);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static String wildcardToRegex(String wildcard){\r\n StringBuffer s = new StringBuffer(wildcard.length());\r\n s.append('^');\r\n for (int i = 0, is = wildcard.length(); i < is; i++) {\r\n char c = wildcard.charAt(i);\r\n switch(c) {\r\n case '*':\r\n s.append(\".*\");\r\n break;\r\n case '?':\r\n s.append(\".\");\r\n break;\r\n // escape special regexp-characters\r\n case '(': case ')': case '[': case ']': case '$':\r\n case '^': case '.': case '{': case '}': case '|':\r\n case '\\\\':\r\n s.append(\"\\\\\");\r\n s.append(c);\r\n break;\r\n default:\r\n s.append(c);\r\n break;\r\n }\r\n }\r\n s.append('$');\r\n return(s.toString());\r\n }", "public final void mT__242() throws RecognitionException {\n try {\n int _type = T__242;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:240:8: ( 'wildcard' )\n // InternalMyDsl.g:240:10: 'wildcard'\n {\n match(\"wildcard\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public Hashtable<K, V> getWildcard(String wildcard);" ]
[ "0.7996876", "0.74942523", "0.6990795", "0.69880307", "0.6940786", "0.6882391", "0.6633175", "0.6631302", "0.6627906", "0.65677065", "0.6513736", "0.6491188", "0.6487596", "0.6422569", "0.63945794", "0.63944024", "0.635458", "0.6275246", "0.6150072", "0.6146619", "0.6116185", "0.6090545", "0.5882354", "0.58219296", "0.580124", "0.5762694", "0.57598037", "0.5613878", "0.55446637", "0.55307525", "0.5524286", "0.5510381", "0.54778373", "0.54778373", "0.5386887", "0.5386383", "0.5384798", "0.53437674", "0.53319997", "0.5317515", "0.5297851", "0.5290189", "0.52786183", "0.52525", "0.52336264", "0.522216", "0.52091134", "0.5178113", "0.5158257", "0.5152919", "0.5134042", "0.5121407", "0.51101166", "0.5107021", "0.51062816", "0.5051251", "0.5048054", "0.50412446", "0.5027783", "0.49871618", "0.4986106", "0.498398", "0.49601367", "0.49537063", "0.49472955", "0.493706", "0.49310282", "0.49032423", "0.48979133", "0.48931298", "0.48873225", "0.48762116", "0.48479664", "0.48437092", "0.48415947", "0.48356357", "0.4811475", "0.47953397", "0.47896883", "0.47831738", "0.4774697", "0.47619352", "0.4757281", "0.47339922", "0.47339097", "0.47165808", "0.47025543", "0.4702435", "0.46839765", "0.46683604", "0.4664334", "0.46585935", "0.46574035", "0.46541375", "0.46520275", "0.46386856", "0.4623565", "0.4620416", "0.461838", "0.46154094" ]
0.8346837
0
$ANTLR end "entryRuleQualifiedNameWithWildcard" $ANTLR start "ruleQualifiedNameWithWildcard" InternalCsv.g:563:1: ruleQualifiedNameWithWildcard : ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) ;
public final void ruleQualifiedNameWithWildcard() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:567:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) ) // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) { // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) // InternalCsv.g:569:3: ( rule__QualifiedNameWithWildcard__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); } // InternalCsv.g:570:3: ( rule__QualifiedNameWithWildcard__Group__0 ) // InternalCsv.g:570:4: rule__QualifiedNameWithWildcard__Group__0 { pushFollow(FOLLOW_2); rule__QualifiedNameWithWildcard__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3340:1: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n {\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n // InternalCsv.g:3342:2: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\n try {\n // InternalCsv.g:555:1: ( ruleQualifiedNameWithWildcard EOF )\n // InternalCsv.g:556:1: ruleQualifiedNameWithWildcard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2250:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\r\n // InternalDroneScript.g:2251:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2251:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\r\n // InternalDroneScript.g:2252:3: ( rule__QualifiedNameWithWildcard__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2253:3: ( rule__QualifiedNameWithWildcard__Group__0 )\r\n // InternalDroneScript.g:2253:4: rule__QualifiedNameWithWildcard__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16669:1: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n {\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n // InternalDroneScript.g:16671:2: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3328:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\n // InternalCsv.g:3329:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameWithWildcard__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2238:1: ( ruleQualifiedNameWithWildcard EOF )\r\n // InternalDroneScript.g:2239:1: ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3355:1: ( rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2 )\n // InternalCsv.g:3356:2: rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2\n {\n pushFollow(FOLLOW_39);\n rule__QualifiedNameWithWildcard__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3367:1: ( ( '.' ) )\n // InternalCsv.g:3368:1: ( '.' )\n {\n // InternalCsv.g:3368:1: ( '.' )\n // InternalCsv.g:3369:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16657:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\r\n // InternalDroneScript.g:16658:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__QualifiedNameWithWildcard__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3393:1: ( ( '*' ) )\n // InternalCsv.g:3394:1: ( '*' )\n {\n // InternalCsv.g:3394:1: ( '*' )\n // InternalCsv.g:3395:2: '*'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getAsteriskKeyword_2()); \n }\n match(input,38,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getAsteriskKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedNameWithWildcard = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5256:2: (iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5257:2: iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard12117);\r\n iv_ruleQualifiedNameWithWildcard=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleQualifiedNameWithWildcard.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard12128); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final AntlrDatatypeRuleToken ruleQualifiedNameWithWildcard() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token kw=null;\r\n AntlrDatatypeRuleToken this_QualifiedName_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5267:28: ( (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5268:1: (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5268:1: (this_QualifiedName_0= ruleQualifiedName (kw= '.*' )? )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5269:5: this_QualifiedName_0= ruleQualifiedName (kw= '.*' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n newCompositeNode(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleQualifiedNameWithWildcard12175);\r\n this_QualifiedName_0=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t\tcurrent.merge(this_QualifiedName_0);\r\n \r\n }\r\n if ( state.backtracking==0 ) {\r\n \r\n afterParserOrEnumRuleCall();\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5279:1: (kw= '.*' )?\r\n int alt58=2;\r\n int LA58_0 = input.LA(1);\r\n\r\n if ( (LA58_0==77) ) {\r\n alt58=1;\r\n }\r\n switch (alt58) {\r\n case 1 :\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5280:2: kw= '.*'\r\n {\r\n kw=(Token)match(input,77,FOLLOW_77_in_ruleQualifiedNameWithWildcard12194); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n current.merge(kw);\r\n newLeafNode(kw, grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopAsteriskKeyword_1()); \r\n \r\n }\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16684:1: ( rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2 )\r\n // InternalDroneScript.g:16685:2: rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2\r\n {\r\n pushFollow(FOLLOW_112);\r\n rule__QualifiedNameWithWildcard__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildCard__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2666:1: ( ( ( '.*' )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2667:1: ( ( '.*' )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2667:1: ( ( '.*' )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2668:1: ( '.*' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2669:1: ( '.*' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==34) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2670:2: '.*'\n {\n match(input,34,FOLLOW_34_in_rule__QualifiedNameWithWildCard__Group__1__Impl5727); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4322:1: ( ( ( '.*' )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4323:1: ( ( '.*' )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4323:1: ( ( '.*' )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4324:1: ( '.*' )?\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4325:1: ( '.*' )?\n int alt39=2;\n int LA39_0 = input.LA(1);\n\n if ( (LA39_0==56) ) {\n alt39=1;\n }\n switch (alt39) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4326:2: '.*'\n {\n match(input,56,FOLLOW_56_in_rule__QualifiedNameWithWildCard__Group__1__Impl9251); \n\n }\n break;\n\n }\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16722:1: ( ( '*' ) )\r\n // InternalDroneScript.g:16723:1: ( '*' )\r\n {\r\n // InternalDroneScript.g:16723:1: ( '*' )\r\n // InternalDroneScript.g:16724:2: '*'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getAsteriskKeyword_2()); \r\n }\r\n match(input,36,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getAsteriskKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildCard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4294:1: ( ( ruleQualifiedName ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4295:1: ( ruleQualifiedName )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4295:1: ( ruleQualifiedName )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4296:1: ruleQualifiedName\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n pushFollow(FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildCard__Group__0__Impl9193);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2638:1: ( ( ruleQualifiedName ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2639:1: ( ruleQualifiedName )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2639:1: ( ruleQualifiedName )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2640:1: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildCard__Group__0__Impl5669);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameWithWildCard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:297:2: ( ( ( rule__QualifiedNameWithWildCard__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:298:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:298:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:299:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:300:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:300:2: rule__QualifiedNameWithWildCard__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0_in_ruleQualifiedNameWithWildCard574);\n rule__QualifiedNameWithWildCard__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16696:1: ( ( '.' ) )\r\n // InternalDroneScript.g:16697:1: ( '.' )\r\n {\r\n // InternalDroneScript.g:16697:1: ( '.' )\r\n // InternalDroneScript.g:16698:2: '.'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \r\n }\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedNameWithWildCard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:131:2: ( ( ( rule__QualifiedNameWithWildCard__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:132:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:132:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:133:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:134:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:134:2: rule__QualifiedNameWithWildCard__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0_in_ruleQualifiedNameWithWildCard220);\n rule__QualifiedNameWithWildCard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19613:1: ( ( ruleQualifiedNameWithWildcard ) )\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n {\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n // InternalDroneScript.g:19615:3: ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:285:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:286:1: ruleQualifiedNameWithWildCard EOF\n {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard541);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard548); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3382:1: ( rule__QualifiedNameWithWildcard__Group__2__Impl )\n // InternalCsv.g:3383:2: rule__QualifiedNameWithWildcard__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:119:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:120:1: ruleQualifiedNameWithWildCard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard187);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard194); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16711:1: ( rule__QualifiedNameWithWildcard__Group__2__Impl )\r\n // InternalDroneScript.g:16712:2: rule__QualifiedNameWithWildcard__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildCard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4282:1: ( rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4283:2: rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0__Impl_in_rule__QualifiedNameWithWildCard__Group__09163);\n rule__QualifiedNameWithWildCard__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__1_in_rule__QualifiedNameWithWildCard__Group__09166);\n rule__QualifiedNameWithWildCard__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11970:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11972:1: ruleQualifiedNameWithWildCard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_123994);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2626:1: ( rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2627:2: rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0__Impl_in_rule__QualifiedNameWithWildCard__Group__05639);\n rule__QualifiedNameWithWildCard__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__1_in_rule__QualifiedNameWithWildCard__Group__05642);\n rule__QualifiedNameWithWildCard__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4255:1: ( ( ruleQualifiedNameWithWildcard ) )\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n {\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n // InternalCsv.g:4257:3: ruleQualifiedNameWithWildcard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22765:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22767:1: ruleQualifiedNameWithWildCard\n {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_145606);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:542:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n {\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n // InternalCsv.g:544:3: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // InternalCsv.g:545:3: ( rule__QualifiedName__Group__0 )\n // InternalCsv.g:545:4: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4311:1: ( rule__QualifiedNameWithWildCard__Group__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4312:2: rule__QualifiedNameWithWildCard__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__1__Impl_in_rule__QualifiedNameWithWildCard__Group__19222);\n rule__QualifiedNameWithWildCard__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n {\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n {\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\n // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0\n {\n pushFollow(FOLLOW_3);\n rule__QualifiedNameInStaticImport__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==33) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__QualifiedNameInStaticImport__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:417:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n {\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n // InternalCsv.g:419:3: ( rule__JvmWildcardTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n // InternalCsv.g:420:3: ( rule__JvmWildcardTypeReference__Group__0 )\n // InternalCsv.g:420:4: rule__JvmWildcardTypeReference__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2854:1: ( ( '?' ) )\n // InternalCsv.g:2855:1: ( '?' )\n {\n // InternalCsv.g:2855:1: ( '?' )\n // InternalCsv.g:2856:2: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,34,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2655:1: ( rule__QualifiedNameWithWildCard__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2656:2: rule__QualifiedNameWithWildCard__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__1__Impl_in_rule__QualifiedNameWithWildCard__Group__15698);\n rule__QualifiedNameWithWildCard__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // InternalCsv.g:530:1: ( ruleQualifiedName EOF )\n // InternalCsv.g:531:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:269:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:270:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:270:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:271:1: ( rule__QualifiedName__Group__0 )\n {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:272:1: ( rule__QualifiedName__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:272:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName514);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public XtypeGrammarAccess.QualifiedNameWithWildcardElements getQualifiedNameWithWildcardAccess() {\r\n\t\treturn gaXtype.getQualifiedNameWithWildcardAccess();\r\n\t}", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1548:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1550:1: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:1: ( rule__QualifiedName__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3246);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3274:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // InternalCsv.g:3275:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_5);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1942:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n // InternalDroneScript.g:1944:3: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1945:3: ( rule__QualifiedName__Group__0 )\r\n // InternalDroneScript.g:1945:4: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1797:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1798:1: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1798:1: ( ( rule__QualifiedName__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1799:1: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1800:1: ( rule__QualifiedName__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1800:2: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3784);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public XtypeGrammarAccess.QualifiedNameWithWildcardElements getQualifiedNameWithWildcardAccess() {\n\t\treturn gaXtype.getQualifiedNameWithWildcardAccess();\n\t}", "public XtypeGrammarAccess.QualifiedNameWithWildcardElements getQualifiedNameWithWildcardAccess() {\n\t\treturn gaXtype.getQualifiedNameWithWildcardAccess();\n\t}", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3286:1: ( ( '.' ) )\n // InternalCsv.g:3287:1: ( '.' )\n {\n // InternalCsv.g:3287:1: ( '.' )\n // InternalCsv.g:3288:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__WildcardAssignment_1_0_3_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4202:1: ( ( ( '*' ) ) )\n // InternalCsv.g:4203:2: ( ( '*' ) )\n {\n // InternalCsv.g:4203:2: ( ( '*' ) )\n // InternalCsv.g:4204:3: ( '*' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n // InternalCsv.g:4205:3: ( '*' )\n // InternalCsv.g:4206:4: '*'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n match(input,38,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16544:1: ( ( '?' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16545:1: ( '?' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16545:1: ( '?' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16546:1: '?'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n match(input,125,FOLLOW_125_in_rule__JvmWildcardTypeReference__Group__1__Impl33397); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15509:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15510:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15510:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15511:1: ( rule__QualifiedName__Group_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15512:1: ( rule__QualifiedName__Group_1__0 )*\r\n loop98:\r\n do {\r\n int alt98=2;\r\n int LA98_0 = input.LA(1);\r\n\r\n if ( (LA98_0==37) ) {\r\n int LA98_2 = input.LA(2);\r\n\r\n if ( (LA98_2==RULE_ID) ) {\r\n int LA98_3 = input.LA(3);\r\n\r\n if ( (synpred155_InternalFin()) ) {\r\n alt98=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt98) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15512:2: rule__QualifiedName__Group_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__QualifiedName__Group_1__0_in_rule__QualifiedName__Group__1__Impl31359);\r\n \t rule__QualifiedName__Group_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop98;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2896:1: ( rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1 )\n // InternalCsv.g:2897:2: rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2827:1: ( ( () ) )\n // InternalCsv.g:2828:1: ( () )\n {\n // InternalCsv.g:2828:1: ( () )\n // InternalCsv.g:2829:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n // InternalCsv.g:2830:2: ()\n // InternalCsv.g:2830:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3258:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // InternalCsv.g:3259:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // InternalCsv.g:3259:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // InternalCsv.g:3260:2: ( rule__QualifiedName__Group_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n // InternalCsv.g:3261:2: ( rule__QualifiedName__Group_1__0 )*\n loop26:\n do {\n int alt26=2;\n int LA26_0 = input.LA(1);\n\n if ( (LA26_0==33) ) {\n int LA26_2 = input.LA(2);\n\n if ( (LA26_2==RULE_ID) ) {\n alt26=1;\n }\n\n\n }\n\n\n switch (alt26) {\n \tcase 1 :\n \t // InternalCsv.g:3261:3: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_35);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop26;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2815:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // InternalCsv.g:2816:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2950:1: ( rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1 )\n // InternalCsv.g:2951:2: rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==38) ) {\n alt10=1;\n }\n else if ( (LA10_0==RULE_ID) ) {\n alt10=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 10, 0, input);\n\n throw nvae;\n }\n switch (alt10) {\n case 1 :\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n {\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n {\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15530:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15531:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__0__Impl_in_rule__QualifiedName__Group_1__031394);\r\n rule__QualifiedName__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1_in_rule__QualifiedName__Group_1__031397);\r\n rule__QualifiedName__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2001:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2002:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2002:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2003:1: ( rule__JvmWildcardTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2004:1: ( rule__JvmWildcardTypeReference__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2004:2: rule__JvmWildcardTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0_in_ruleJvmWildcardTypeReference4213);\r\n rule__JvmWildcardTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2357:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n {\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n {\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\r\n // InternalDroneScript.g:2360:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2361:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n // InternalDroneScript.g:2361:5: rule__QualifiedNameInStaticImport__Group__0\r\n {\r\n pushFollow(FOLLOW_4);\r\n rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n // InternalDroneScript.g:2364:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n // InternalDroneScript.g:2365:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2366:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n loop2:\r\n do {\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( (LA2_0==RULE_ID) ) {\r\n int LA2_2 = input.LA(2);\r\n\r\n if ( (LA2_2==43) ) {\r\n alt2=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt2) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:2366:5: rule__QualifiedNameInStaticImport__Group__0\r\n \t {\r\n \t pushFollow(FOLLOW_4);\r\n \t rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop2;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4219:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4220:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__0__Impl_in_rule__QualifiedName__Group_1__09041);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1_in_rule__QualifiedName__Group_1__09044);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11054:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11055:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__0__Impl_in_rule__QualifiedName__Group_1__022189);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1_in_rule__QualifiedName__Group_1__022192);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16513:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16514:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16514:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16515:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16516:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16518:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2125:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\r\n // InternalDroneScript.g:2126:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2126:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n // InternalDroneScript.g:2127:3: ( rule__JvmWildcardTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2128:3: ( rule__JvmWildcardTypeReference__Group__0 )\r\n // InternalDroneScript.g:2128:4: rule__JvmWildcardTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15064:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\r\n // InternalDroneScript.g:15065:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\r\n {\r\n pushFollow(FOLLOW_6);\r\n rule__QualifiedName__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4198:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4199:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4199:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4200:1: ( rule__QualifiedName__Group_1__0 )*\n {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4201:1: ( rule__QualifiedName__Group_1__0 )*\n loop38:\n do {\n int alt38=2;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==55) ) {\n alt38=1;\n }\n\n\n switch (alt38) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4201:2: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_rule__QualifiedName__Group_1__0_in_rule__QualifiedName__Group__1__Impl9006);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop38;\n }\n } while (true);\n\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1688:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1689:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1689:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1690:1: ( rule__JvmWildcardTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1691:1: ( rule__JvmWildcardTypeReference__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1691:2: rule__JvmWildcardTypeReference__Group__0\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0_in_ruleJvmWildcardTypeReference3546);\n rule__JvmWildcardTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11695:1: ( ( '?' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11696:1: ( '?' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11696:1: ( '?' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11697:1: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,64,FOLLOW_64_in_rule__JvmWildcardTypeReference__Group__1__Impl23461); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:802:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==35) ) {\n alt8=1;\n }\n else if ( (LA8_0==37) ) {\n alt8=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n {\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n // InternalCsv.g:804:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n // InternalCsv.g:805:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n // InternalCsv.g:805:4: rule__JvmWildcardTypeReference__Group_2_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n {\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n // InternalCsv.g:810:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n // InternalCsv.g:811:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n // InternalCsv.g:811:4: rule__JvmWildcardTypeReference__Group_2_1__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public WildcardPattern(String pattern) {\r\n this.pattern = pattern;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16291:1: ( ( '?' ) )\r\n // InternalDroneScript.g:16292:1: ( '?' )\r\n {\r\n // InternalDroneScript.g:16292:1: ( '?' )\r\n // InternalDroneScript.g:16293:2: '?'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n match(input,93,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithExtends_cf27961() {\n java.lang.String expected = (\"? extends @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.subtypeOf(type).toString();\n // StatementAdderOnAssert create random local variable\n java.lang.Object vc_12387 = new java.lang.Object();\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithExtends_cf27961__10 = // StatementAdderMethod cloned existing statement\n type.equals(vc_12387);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithExtends_cf27961__10);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1536:1: ( ruleQualifiedName EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1537:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3220); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15469:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15470:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__0__Impl_in_rule__QualifiedName__Group__031273);\r\n rule__QualifiedName__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__1_in_rule__QualifiedName__Group__031276);\r\n rule__QualifiedName__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:257:1: ( ruleQualifiedName EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:258:1: ruleQualifiedName EOF\n {\n before(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName481);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName488); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3534:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\r\n int alt44=2;\r\n int LA44_0 = input.LA(1);\r\n\r\n if ( (LA44_0==36) ) {\r\n alt44=1;\r\n }\r\n else if ( (LA44_0==RULE_ID) ) {\r\n alt44=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 44, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt44) {\r\n case 1 :\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n {\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n // InternalDroneScript.g:3536:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n // InternalDroneScript.g:3537:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n // InternalDroneScript.g:3537:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n {\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n // InternalDroneScript.g:3542:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n // InternalDroneScript.g:3543:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n // InternalDroneScript.g:3543:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10993:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10994:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0__Impl_in_rule__QualifiedName__Group__022068);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__QualifiedName__Group__1_in_rule__QualifiedName__Group__022071);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15542:1: ( ( ( '.' ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15543:1: ( ( '.' ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15543:1: ( ( '.' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15544:1: ( '.' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15545:1: ( '.' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15546:2: '.'\r\n {\r\n match(input,37,FOLLOW_37_in_rule__QualifiedName__Group_1__0__Impl31426); if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2842:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\n // InternalCsv.g:2843:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\n {\n pushFollow(FOLLOW_36);\n rule__JvmWildcardTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@org.junit.Test(timeout = 10000)\n public void annotatedWildcardTypeNameWithExtends_cf27960() {\n java.lang.String expected = (\"? extends @\" + (com.squareup.javapoet.AmplAnnotatedTypeNameTest.NN)) + \" java.lang.String\";\n com.squareup.javapoet.TypeName type = com.squareup.javapoet.TypeName.get(java.lang.String.class).annotated(NEVER_NULL);\n java.lang.String actual = com.squareup.javapoet.WildcardTypeName.subtypeOf(type).toString();\n // StatementAdderOnAssert create null value\n java.lang.Object vc_12386 = (java.lang.Object)null;\n // AssertGenerator add assertion\n org.junit.Assert.assertNull(vc_12386);\n // AssertGenerator replace invocation\n boolean o_annotatedWildcardTypeNameWithExtends_cf27960__10 = // StatementAdderMethod cloned existing statement\n type.equals(vc_12386);\n // AssertGenerator add assertion\n org.junit.Assert.assertFalse(o_annotatedWildcardTypeNameWithExtends_cf27960__10);\n org.junit.Assert.assertEquals(expected, actual);\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4158:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4159:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0__Impl_in_rule__QualifiedName__Group__08920);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__QualifiedName__Group__1_in_rule__QualifiedName__Group__08923);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15010:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\r\n // InternalDroneScript.g:15011:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__QualifiedName__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11664:1: ( ( () ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11665:1: ( () )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11665:1: ( () )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11666:1: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11667:1: ()\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11669:1: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11033:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11034:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11034:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11035:1: ( rule__QualifiedName__Group_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11036:1: ( rule__QualifiedName__Group_1__0 )*\n loop68:\n do {\n int alt68=2;\n int LA68_0 = input.LA(1);\n\n if ( (LA68_0==30) ) {\n int LA68_2 = input.LA(2);\n\n if ( (LA68_2==RULE_ID) ) {\n int LA68_3 = input.LA(3);\n\n if ( (synpred89_InternalInstances()) ) {\n alt68=1;\n }\n\n\n }\n\n\n }\n\n\n switch (alt68) {\n \tcase 1 :\n \t // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11036:2: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_rule__QualifiedName__Group_1__0_in_rule__QualifiedName__Group__1__Impl22154);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop68;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1785:1: ( ruleQualifiedName EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1786:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3751);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3758); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__WildcardAssignment_1_0_3_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19560:1: ( ( ( '*' ) ) )\r\n // InternalDroneScript.g:19561:2: ( ( '*' ) )\r\n {\r\n // InternalDroneScript.g:19561:2: ( ( '*' ) )\r\n // InternalDroneScript.g:19562:3: ( '*' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n // InternalDroneScript.g:19563:3: ( '*' )\r\n // InternalDroneScript.g:19564:4: '*'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n match(input,36,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16264:1: ( ( () ) )\r\n // InternalDroneScript.g:16265:1: ( () )\r\n {\r\n // InternalDroneScript.g:16265:1: ( () )\r\n // InternalDroneScript.g:16266:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n // InternalDroneScript.g:16267:2: ()\r\n // InternalDroneScript.g:16267:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11652:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11653:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0__Impl_in_rule__JvmWildcardTypeReference__Group__023369);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1_in_rule__JvmWildcardTypeReference__Group__023372);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16501:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16502:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0__Impl_in_rule__JvmWildcardTypeReference__Group__033305);\r\n rule__JvmWildcardTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1_in_rule__JvmWildcardTypeReference__Group__033308);\r\n rule__JvmWildcardTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // InternalNestDsl.g:414:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // InternalNestDsl.g:415:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleQualifiedName.getText(); \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16333:1: ( rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1 )\r\n // InternalDroneScript.g:16334:2: rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1\r\n {\r\n pushFollow(FOLLOW_110);\r\n rule__JvmWildcardTypeReference__Group_2_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalMappingDsl.g:6449:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalMappingDsl.g:6450:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16252:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\r\n // InternalDroneScript.g:16253:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_61);\r\n rule__JvmWildcardTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private static String wildcardAsRegex( String wildcard ) {\n\t\tStringBuilder sb = new StringBuilder( wildcard.length() * 110 / 100 );\n\t\tfor ( int i = 0; i < wildcard.length(); i++ ) {\n\t\t\tfinal char c = wildcard.charAt( i );\n\t\t\tswitch (c) {\n\t\t\tcase '*':\n\t\t\t\tsb.append( \".*?\" );\n\t\t\t\tbreak;\n\n\t\t\tcase '?':\n\t\t\t\tsb.append( \".\" );\n\t\t\t\tbreak;\n\n\t\t\t// chars that have magic regex meaning. They need quoting to be taken\n\t\t\t// literally\n\t\t\tcase '$':\n\t\t\tcase '(':\n\t\t\tcase ')':\n\t\t\tcase '+':\n\t\t\tcase '-':\n\t\t\tcase '.':\n\t\t\tcase '[':\n\t\t\tcase '\\\\':\n\t\t\tcase ']':\n\t\t\tcase '^':\n\t\t\tcase '{':\n\t\t\tcase '|':\n\t\t\tcase '}':\n\t\t\t\tsb.append( '\\\\' );\n\t\t\t\tsb.append( c );\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tsb.append( c );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\treturn sb.toString();\n\t}", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4231:1: ( ( '.' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4232:1: ( '.' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4232:1: ( '.' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4233:1: '.'\n {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n match(input,55,FOLLOW_55_in_rule__QualifiedName__Group_1__0__Impl9072); \n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1930:1: ( ruleQualifiedName EOF )\r\n // InternalDroneScript.g:1931:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalNgt.g:1709:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalNgt.g:1710:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16387:1: ( rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1 )\r\n // InternalDroneScript.g:16388:2: rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1\r\n {\r\n pushFollow(FOLLOW_110);\r\n rule__JvmWildcardTypeReference__Group_2_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public Wildcard getWildcard() {\n return _wildcard;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11683:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11684:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1__Impl_in_rule__JvmWildcardTypeReference__Group__123430);\n rule__JvmWildcardTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2_in_rule__JvmWildcardTypeReference__Group__123433);\n rule__JvmWildcardTypeReference__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.8003293", "0.7772162", "0.7721244", "0.75993407", "0.75118333", "0.7355161", "0.72957623", "0.7188338", "0.7169017", "0.69873464", "0.69072396", "0.6885366", "0.68565905", "0.6828039", "0.67862177", "0.6746247", "0.67258435", "0.6672526", "0.66323125", "0.6608409", "0.65180194", "0.6453982", "0.6430463", "0.6392788", "0.632104", "0.6271721", "0.62415206", "0.62173384", "0.6216951", "0.61948967", "0.61715275", "0.6169359", "0.5948419", "0.5912463", "0.58971953", "0.5896137", "0.5806654", "0.57949865", "0.5769278", "0.5764815", "0.5761511", "0.57489526", "0.573998", "0.5721375", "0.57148445", "0.57148445", "0.5676352", "0.56261057", "0.56243557", "0.5605863", "0.5605292", "0.5602558", "0.5602368", "0.55780566", "0.5570883", "0.55561614", "0.5556071", "0.55544466", "0.5544017", "0.5528559", "0.5523864", "0.55139065", "0.5478637", "0.5472029", "0.5455361", "0.5440723", "0.5440714", "0.541366", "0.54105604", "0.53934854", "0.537735", "0.5375752", "0.5375668", "0.5344329", "0.5343072", "0.5334067", "0.53307813", "0.5329225", "0.5313367", "0.5306181", "0.5304118", "0.53040344", "0.52951926", "0.5287349", "0.5287347", "0.528463", "0.5277137", "0.5255864", "0.52363086", "0.52330244", "0.5229395", "0.5226359", "0.52209616", "0.5212718", "0.52061427", "0.52046627", "0.52038705", "0.51966333", "0.5181574", "0.5178601" ]
0.8230746
0
$ANTLR end "ruleQualifiedNameWithWildcard" $ANTLR start "entryRuleValidID" InternalCsv.g:579:1: entryRuleValidID : ruleValidID EOF ;
public final void entryRuleValidID() throws RecognitionException { try { // InternalCsv.g:580:1: ( ruleValidID EOF ) // InternalCsv.g:581:1: ruleValidID EOF { if ( state.backtracking==0 ) { before(grammarAccess.getValidIDRule()); } pushFollow(FOLLOW_1); ruleValidID(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getValidIDRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\n try {\n // InternalCsv.g:555:1: ( ruleQualifiedNameWithWildcard EOF )\n // InternalCsv.g:556:1: ruleQualifiedNameWithWildcard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token kw=null;\n AntlrDatatypeRuleToken this_ValidID_0 = null;\n\n AntlrDatatypeRuleToken this_ValidID_2 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3034:28: ( (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3036:5: this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7241);\n this_ValidID_0=ruleValidID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\tcurrent.merge(this_ValidID_0);\n \n }\n if ( state.backtracking==0 ) {\n \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3046:1: (kw= '.' this_ValidID_2= ruleValidID )*\n loop41:\n do {\n int alt41=2;\n int LA41_0 = input.LA(1);\n\n if ( (LA41_0==40) ) {\n alt41=1;\n }\n\n\n switch (alt41) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3047:2: kw= '.' this_ValidID_2= ruleValidID\n \t {\n \t kw=(Token)match(input,40,FOLLOW_40_in_ruleQualifiedName7260); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t current.merge(kw);\n \t newLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n \t \n \t }\n \t pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7282);\n \t this_ValidID_2=ruleValidID();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\tcurrent.merge(this_ValidID_2);\n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t afterParserOrEnumRuleCall();\n \t \n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop41;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final String entryRuleValidID() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleValidID = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3072:2: (iv_ruleValidID= ruleValidID EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3073:2: iv_ruleValidID= ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_ruleValidID_in_entryRuleValidID7330);\n iv_ruleValidID=ruleValidID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleValidID.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleValidID7341); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3312:1: ( ( ruleValidID ) )\n // InternalCsv.g:3313:1: ( ruleValidID )\n {\n // InternalCsv.g:3313:1: ( ruleValidID )\n // InternalCsv.g:3314:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleValidID() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2103:1: ( ruleValidID EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2104:1: ruleValidID EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDRule()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_entryRuleValidID4422);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleValidID4429); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15572:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15573:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15573:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15574:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__QualifiedName__Group_1__1__Impl31485);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleValidID() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2263:1: ( ruleValidID EOF )\r\n // InternalDroneScript.g:2264:1: ruleValidID EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2238:1: ( ruleQualifiedNameWithWildcard EOF )\r\n // InternalDroneScript.g:2239:1: ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15102:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:15103:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:15103:1: ( ruleValidID )\r\n // InternalDroneScript.g:15104:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final AntlrDatatypeRuleToken ruleValidID() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3083:28: (this_ID_0= RULE_ID )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3084:5: this_ID_0= RULE_ID\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleValidID7380); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\tcurrent.merge(this_ID_0);\n \n }\n if ( state.backtracking==0 ) {\n \n newLeafNode(this_ID_0, grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \n \n }\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15481:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15482:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15482:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15483:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__QualifiedName__Group__0__Impl31303);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16939:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n // InternalDroneScript.g:16941:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3610:1: ( ( ruleValidID ) )\n // InternalCsv.g:3611:1: ( ruleValidID )\n {\n // InternalCsv.g:3611:1: ( ruleValidID )\n // InternalCsv.g:3612:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleValidID() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:592:2: ( ( RULE_ID ) )\n // InternalCsv.g:593:2: ( RULE_ID )\n {\n // InternalCsv.g:593:2: ( RULE_ID )\n // InternalCsv.g:594:3: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15022:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:15023:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:15023:1: ( ruleValidID )\r\n // InternalDroneScript.g:15024:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3232:1: ( ( ruleValidID ) )\n // InternalCsv.g:3233:1: ( ruleValidID )\n {\n // InternalCsv.g:3233:1: ( ruleValidID )\n // InternalCsv.g:3234:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // InternalCsv.g:530:1: ( ruleQualifiedName EOF )\n // InternalCsv.g:531:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalSpeADL.g:23486:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' | '0' .. '9' )* )\n // InternalSpeADL.g:23486:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' | '0' .. '9' )*\n {\n // InternalSpeADL.g:23486:11: ( '^' )?\n int alt9=2;\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0=='^') ) {\n alt9=1;\n }\n switch (alt9) {\n case 1 :\n // InternalSpeADL.g:23486:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( input.LA(1)=='$'||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalSpeADL.g:23486:44: ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' | '0' .. '9' )*\n loop10:\n do {\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0=='$'||(LA10_0>='0' && LA10_0<='9')||(LA10_0>='A' && LA10_0<='Z')||LA10_0=='_'||(LA10_0>='a' && LA10_0<='z')) ) {\n alt10=1;\n }\n\n\n switch (alt10) {\n \tcase 1 :\n \t // InternalSpeADL.g:\n \t {\n \t if ( input.LA(1)=='$'||(input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop10;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final String entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedNameWithWildcard = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5256:2: (iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5257:2: iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard12117);\r\n iv_ruleQualifiedNameWithWildcard=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleQualifiedNameWithWildcard.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard12128); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalDSL.g:16701:9: ( ( '^' )? ( 'a' .. 'z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalDSL.g:16701:11: ( '^' )? ( 'a' .. 'z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalDSL.g:16701:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalDSL.g:16701:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalDSL.g:16701:31: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalDSL.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:285:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:286:1: ruleQualifiedNameWithWildCard EOF\n {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard541);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard548); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:119:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:120:1: ruleQualifiedNameWithWildCard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard187);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard194); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalDSL.g:2286:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalDSL.g:2286:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalDSL.g:2286:11: ( '^' )?\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0=='^') ) {\n alt3=1;\n }\n switch (alt3) {\n case 1 :\n // InternalDSL.g:2286:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalDSL.g:2286:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop4:\n do {\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( ((LA4_0>='0' && LA4_0<='9')||(LA4_0>='A' && LA4_0<='Z')||LA4_0=='_'||(LA4_0>='a' && LA4_0<='z')) ) {\n alt4=1;\n }\n\n\n switch (alt4) {\n \tcase 1 :\n \t // InternalDSL.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop4;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:11: ( '^' )?\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0=='^') ) {\n alt6=1;\n }\n switch (alt6) {\n case 1 :\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop7:\n do {\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( ((LA7_0>='0' && LA7_0<='9')||(LA7_0>='A' && LA7_0<='Z')||LA7_0=='_'||(LA7_0>='a' && LA7_0<='z')) ) {\n alt7=1;\n }\n\n\n switch (alt7) {\n \tcase 1 :\n \t // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop7;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:6368:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalMyDsl.g:6368:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalMyDsl.g:6368:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalMyDsl.g:6368:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalMyDsl.g:6368:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalMyDsl.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:2385:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalMyDsl.g:2385:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalMyDsl.g:2385:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalMyDsl.g:2385:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalMyDsl.g:2385:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalMyDsl.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:15368:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalMyDsl.g:15368:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalMyDsl.g:15368:11: ( '^' )?\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0=='^') ) {\n alt7=1;\n }\n switch (alt7) {\n case 1 :\n // InternalMyDsl.g:15368:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalMyDsl.g:15368:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop8:\n do {\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( ((LA8_0>='0' && LA8_0<='9')||(LA8_0>='A' && LA8_0<='Z')||LA8_0=='_'||(LA8_0>='a' && LA8_0<='z')) ) {\n alt8=1;\n }\n\n\n switch (alt8) {\n \tcase 1 :\n \t // InternalMyDsl.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop8;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:11: ( '^' )?\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0=='^') ) {\n alt7=1;\n }\n switch (alt7) {\n case 1 :\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop8:\n do {\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( ((LA8_0>='0' && LA8_0<='9')||(LA8_0>='A' && LA8_0<='Z')||LA8_0=='_'||(LA8_0>='a' && LA8_0<='z')) ) {\n alt8=1;\n }\n\n\n switch (alt8) {\n \tcase 1 :\n \t // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop8;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__StaticQualifier__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13699:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13700:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13700:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13701:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStaticQualifierAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__StaticQualifier__Group__0__Impl27806);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStaticQualifierAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_1_4_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3976:1: ( ( ( ruleValidID ) ) )\n // InternalCsv.g:3977:2: ( ( ruleValidID ) )\n {\n // InternalCsv.g:3977:2: ( ( ruleValidID ) )\n // InternalCsv.g:3978:3: ( ruleValidID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \n }\n // InternalCsv.g:3979:3: ( ruleValidID )\n // InternalCsv.g:3980:4: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic void valid(String id, String valid) {\n\t\t\n\t}", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1536:1: ( ruleQualifiedName EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1537:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3220); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalReqLNG.g:1718:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalReqLNG.g:1718:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalReqLNG.g:1718:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalReqLNG.g:1718:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalReqLNG.g:1718:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalReqLNG.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:6462:2: ( (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* ) )\n // InternalMappingDsl.g:6463:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n {\n // InternalMappingDsl.g:6463:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n // InternalMappingDsl.g:6464:3: this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )*\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_38); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0());\n \t\t\n // InternalMappingDsl.g:6471:3: (kw= '.' this_ID_2= RULE_ID )*\n loop147:\n do {\n int alt147=2;\n int LA147_0 = input.LA(1);\n\n if ( (LA147_0==32) ) {\n alt147=1;\n }\n\n\n switch (alt147) {\n \tcase 1 :\n \t // InternalMappingDsl.g:6472:4: kw= '.' this_ID_2= RULE_ID\n \t {\n \t kw=(Token)match(input,32,FOLLOW_7); \n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0());\n \t \t\t\t\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_38); \n\n \t \t\t\t\tcurrent.merge(this_ID_2);\n \t \t\t\t\n\n \t \t\t\t\tnewLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1());\n \t \t\t\t\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop147;\n }\n } while (true);\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleIdOrString() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:258:1: ( ruleIdOrString EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:259:1: ruleIdOrString EOF\n {\n before(grammarAccess.getIdOrStringRule()); \n pushFollow(FollowSets000.FOLLOW_ruleIdOrString_in_entryRuleIdOrString481);\n ruleIdOrString();\n _fsp--;\n\n after(grammarAccess.getIdOrStringRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleIdOrString488); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token this_ID_0=null;\r\n\r\n\r\n \tenterRule();\r\n\r\n try {\r\n // InternalNestDsl.g:427:2: (this_ID_0= RULE_ID )\r\n // InternalNestDsl.g:428:2: this_ID_0= RULE_ID\r\n {\r\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_2); \r\n\r\n \t\tcurrent.merge(this_ID_0);\r\n \t\r\n\r\n \t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall());\r\n \t\r\n\r\n }\r\n\r\n\r\n \tleaveRule();\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalEsm.g:13288:9: ( ( '^' )? ( RULE_LETTER | '_' ) ( RULE_LETTER | '_' | '0' .. '9' )* )\n // InternalEsm.g:13288:11: ( '^' )? ( RULE_LETTER | '_' ) ( RULE_LETTER | '_' | '0' .. '9' )*\n {\n // InternalEsm.g:13288:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // InternalEsm.g:13288:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z')||(input.LA(1)>='\\u00C0' && input.LA(1)<='\\u00D6')||(input.LA(1)>='\\u00D8' && input.LA(1)<='\\u00F6')||(input.LA(1)>='\\u00F8' && input.LA(1)<='\\u00FF') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalEsm.g:13288:34: ( RULE_LETTER | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')||(LA2_0>='\\u00C0' && LA2_0<='\\u00D6')||(LA2_0>='\\u00D8' && LA2_0<='\\u00F6')||(LA2_0>='\\u00F8' && LA2_0<='\\u00FF')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // InternalEsm.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z')||(input.LA(1)>='\\u00C0' && input.LA(1)<='\\u00D6')||(input.LA(1)>='\\u00D8' && input.LA(1)<='\\u00F6')||(input.LA(1)>='\\u00F8' && input.LA(1)<='\\u00FF') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6926:9: ( ( '_' | 'a' .. 'z' | 'A' .. 'Z' ) ( '0' .. '9' | '_' | 'a' .. 'z' | 'A' .. 'Z' )* )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6926:11: ( '_' | 'a' .. 'z' | 'A' .. 'Z' ) ( '0' .. '9' | '_' | 'a' .. 'z' | 'A' .. 'Z' )*\n {\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse =\n new MismatchedSetException(null,input);\n recover(mse); throw mse;\n }\n\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6926:35: ( '0' .. '9' | '_' | 'a' .. 'z' | 'A' .. 'Z' )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( ((LA1_0>='0' && LA1_0<='9')||(LA1_0>='A' && LA1_0<='Z')||LA1_0=='_'||(LA1_0>='a' && LA1_0<='z')) ) {\n alt1=1;\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse =\n \t new MismatchedSetException(null,input);\n \t recover(mse); throw mse;\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n\n }\n\n this.type = _type;\n }\n finally {\n }\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\r\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\r\n\r\n Token this_ID_0=null;\r\n Token kw=null;\r\n Token this_ID_2=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5224:28: ( (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5225:1: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5225:1: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5225:6: this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\r\n {\r\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName12025); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t\tcurrent.merge(this_ID_0);\r\n \r\n }\r\n if ( state.backtracking==0 ) {\r\n \r\n newLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:1: ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\r\n loop57:\r\n do {\r\n int alt57=2;\r\n int LA57_0 = input.LA(1);\r\n\r\n if ( (LA57_0==76) && (synpred1_InternalGML())) {\r\n alt57=1;\r\n }\r\n\r\n\r\n switch (alt57) {\r\n \tcase 1 :\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:2: ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID\r\n \t {\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:2: ( ( '.' )=>kw= '.' )\r\n \t // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5232:3: ( '.' )=>kw= '.'\r\n \t {\r\n \t kw=(Token)match(input,76,FOLLOW_76_in_ruleQualifiedName12053); if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t current.merge(kw);\r\n \t newLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n \t \r\n \t }\r\n\r\n \t }\r\n\r\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleQualifiedName12069); if (state.failed) return current;\r\n \t if ( state.backtracking==0 ) {\r\n\r\n \t \t\tcurrent.merge(this_ID_2);\r\n \t \r\n \t }\r\n \t if ( state.backtracking==0 ) {\r\n \t \r\n \t newLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \r\n \t \r\n \t }\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop57;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void mRULE_ID() throws RecognitionException {\r\n try {\r\n int _type = RULE_ID;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // InternalSpringConfigDsl.g:34495:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\r\n // InternalSpringConfigDsl.g:34495:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n {\r\n // InternalSpringConfigDsl.g:34495:11: ( '^' )?\r\n int alt1=2;\r\n int LA1_0 = input.LA(1);\r\n\r\n if ( (LA1_0=='^') ) {\r\n alt1=1;\r\n }\r\n switch (alt1) {\r\n case 1 :\r\n // InternalSpringConfigDsl.g:34495:11: '^'\r\n {\r\n match('^'); \r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n input.consume();\r\n\r\n }\r\n else {\r\n MismatchedSetException mse = new MismatchedSetException(null,input);\r\n recover(mse);\r\n throw mse;}\r\n\r\n // InternalSpringConfigDsl.g:34495:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n loop2:\r\n do {\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\r\n alt2=1;\r\n }\r\n\r\n\r\n switch (alt2) {\r\n \tcase 1 :\r\n \t // InternalSpringConfigDsl.g:\r\n \t {\r\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n \t input.consume();\r\n\r\n \t }\r\n \t else {\r\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\r\n \t recover(mse);\r\n \t throw mse;}\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop2;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final void ruleValidID() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2115:2: ( ( RULE_ID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2116:1: ( RULE_ID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2116:1: ( RULE_ID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2117:1: RULE_ID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \r\n }\r\n match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleValidID4455); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRULE_ID() throws RecognitionException {\r\n try {\r\n int _type = RULE_ID;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n {\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:11: ( '^' )?\r\n int alt14=2;\r\n int LA14_0 = input.LA(1);\r\n\r\n if ( (LA14_0=='^') ) {\r\n alt14=1;\r\n }\r\n switch (alt14) {\r\n case 1 :\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:11: '^'\r\n {\r\n match('^'); \r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n input.consume();\r\n\r\n }\r\n else {\r\n MismatchedSetException mse = new MismatchedSetException(null,input);\r\n recover(mse);\r\n throw mse;}\r\n\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n loop15:\r\n do {\r\n int alt15=2;\r\n int LA15_0 = input.LA(1);\r\n\r\n if ( ((LA15_0>='0' && LA15_0<='9')||(LA15_0>='A' && LA15_0<='Z')||LA15_0=='_'||(LA15_0>='a' && LA15_0<='z')) ) {\r\n alt15=1;\r\n }\r\n\r\n\r\n switch (alt15) {\r\n \tcase 1 :\r\n \t // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:\r\n \t {\r\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n \t input.consume();\r\n\r\n \t }\r\n \t else {\r\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\r\n \t recover(mse);\r\n \t throw mse;}\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop15;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "private boolean CheckID(String id) {\n\t\tif ((!id.matches(\"([0-9])+\") || id.length() != 9) && (!id.matches(\"S([0-9])+\") || id.length() != 10)) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t}", "public final void entryRuleQualifiedIdent() throws RecognitionException {\r\n try {\r\n // InternalGo.g:405:1: ( ruleQualifiedIdent EOF )\r\n // InternalGo.g:406:1: ruleQualifiedIdent EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedIdentRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedIdent();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedIdentRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void mID() throws RecognitionException {\r\n try {\r\n final int _type = SparqlMarcoLexer.ID;\r\n final int _channel = BaseRecognizer.DEFAULT_TOKEN_CHANNEL;\r\n if (this.input.LA(1) >= 'A' && this.input.LA(1) <= 'Z' || this.input.LA(1) == '_'\r\n || this.input.LA(1) >= 'a' && this.input.LA(1) <= 'z') {\r\n this.input.consume();\r\n\r\n } else {\r\n final MismatchedSetException mse = new MismatchedSetException(null, this.input);\r\n this.recover(mse);\r\n throw mse;\r\n }\r\n // /Users/Marco/Desktop/Tesi Davide/Antlr-doc/SparqlMarco.g:51:31: ( 'a' .. 'z' |\r\n // 'A' .. 'Z' | '0' .. '9' | '_' )*\r\n loop3: do {\r\n int alt3 = 2;\r\n final int LA3_0 = this.input.LA(1);\r\n\r\n if (LA3_0 >= '0' && LA3_0 <= '9' || LA3_0 >= 'A' && LA3_0 <= 'Z' || LA3_0 == '_'\r\n || LA3_0 >= 'a' && LA3_0 <= 'z') {\r\n alt3 = 1;\r\n }\r\n\r\n switch (alt3) {\r\n case 1:\r\n // /Users/Marco/Desktop/Tesi Davide/Antlr-doc/SparqlMarco.g:\r\n {\r\n if (this.input.LA(1) >= '0' && this.input.LA(1) <= '9'\r\n || this.input.LA(1) >= 'A' && this.input.LA(1) <= 'Z'\r\n || this.input.LA(1) == '_' || this.input.LA(1) >= 'a'\r\n && this.input.LA(1) <= 'z') {\r\n this.input.consume();\r\n\r\n } else {\r\n final MismatchedSetException mse = new MismatchedSetException(null,\r\n this.input);\r\n this.recover(mse);\r\n throw mse;\r\n }\r\n\r\n }\r\n break;\r\n\r\n default:\r\n break loop3;\r\n }\r\n } while (true);\r\n this.state.type = _type;\r\n this.state.channel = _channel;\r\n } finally {\r\n }\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalStateMachine.g:845:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalStateMachine.g:845:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalStateMachine.g:845:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalStateMachine.g:845:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalStateMachine.g:845:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalStateMachine.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4261:1: ( ( RULE_ID ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4262:1: ( RULE_ID )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4262:1: ( RULE_ID )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4263:1: RULE_ID\n {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group_1__1__Impl9130); \n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1785:1: ( ruleQualifiedName EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1786:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3751);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3758); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:257:1: ( ruleQualifiedName EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:258:1: ruleQualifiedName EOF\n {\n before(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName481);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName488); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__MemberNameAssignment_1_0_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19579:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:19580:2: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:19580:2: ( ruleValidID )\r\n // InternalDroneScript.g:19581:3: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11096:1: ( ( RULE_ID ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11097:1: ( RULE_ID )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11097:1: ( RULE_ID )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11098:1: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n }\n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group_1__1__Impl22280); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleID() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleID = null;\n\n\n try {\n // InternalMyDsl.g:10001:42: (iv_ruleID= ruleID EOF )\n // InternalMyDsl.g:10002:2: iv_ruleID= ruleID EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getIDRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleID=ruleID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleID.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:11: ( '^' )?\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0=='^') ) {\n alt22=1;\n }\n switch (alt22) {\n case 1 :\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop23:\n do {\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( ((LA23_0>='0' && LA23_0<='9')||(LA23_0>='A' && LA23_0<='Z')||LA23_0=='_'||(LA23_0>='a' && LA23_0<='z')) ) {\n alt23=1;\n }\n\n\n switch (alt23) {\n \tcase 1 :\n \t // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop23;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalVizualizer.g:1752:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalVizualizer.g:1752:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalVizualizer.g:1752:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // InternalVizualizer.g:1752:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalVizualizer.g:1752:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // InternalVizualizer.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void ruleValidID() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2275:2: ( ( RULE_ID ) )\r\n // InternalDroneScript.g:2276:2: ( RULE_ID )\r\n {\r\n // InternalDroneScript.g:2276:2: ( RULE_ID )\r\n // InternalDroneScript.g:2277:3: RULE_ID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \r\n }\r\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalIotLuaXtext.g:7228:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalIotLuaXtext.g:7228:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalIotLuaXtext.g:7228:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // InternalIotLuaXtext.g:7228:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalIotLuaXtext.g:7228:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // InternalIotLuaXtext.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "private void validateId(String id) {\n if (!id.matches(\"[0-9]+\")) {\n throw new IllegalArgumentException(\"Invaild Tweet Id\");\n }\n return;\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:567:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n {\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n // InternalCsv.g:569:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n // InternalCsv.g:570:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n // InternalCsv.g:570:4: rule__QualifiedNameWithWildcard__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRULE_ID() throws RecognitionException {\r\n try {\r\n int _type = RULE_ID;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n {\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:11: ( '^' )?\r\n int alt3=2;\r\n int LA3_0 = input.LA(1);\r\n\r\n if ( (LA3_0=='^') ) {\r\n alt3=1;\r\n }\r\n switch (alt3) {\r\n case 1 :\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:11: '^'\r\n {\r\n match('^'); \r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n input.consume();\r\n\r\n }\r\n else {\r\n MismatchedSetException mse = new MismatchedSetException(null,input);\r\n recover(mse);\r\n throw mse;}\r\n\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n loop4:\r\n do {\r\n int alt4=2;\r\n int LA4_0 = input.LA(1);\r\n\r\n if ( ((LA4_0>='0' && LA4_0<='9')||(LA4_0>='A' && LA4_0<='Z')||LA4_0=='_'||(LA4_0>='a' && LA4_0<='z')) ) {\r\n alt4=1;\r\n }\r\n\r\n\r\n switch (alt4) {\r\n \tcase 1 :\r\n \t // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:\r\n \t {\r\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n \t input.consume();\r\n\r\n \t }\r\n \t else {\r\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\r\n \t recover(mse);\r\n \t throw mse;}\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop4;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalMappingDsl.g:6449:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalMappingDsl.g:6450:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "static boolean isValidIdentifier(String identifier) {\n return FULL_IDENTIFIER_PATTERN.matcher(identifier).matches();\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\n try {\n // InternalCsv.g:630:1: ( ruleQualifiedNameInStaticImport EOF )\n // InternalCsv.g:631:1: ruleQualifiedNameInStaticImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalNgt.g:1722:2: ( (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* ) )\n // InternalNgt.g:1723:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n {\n // InternalNgt.g:1723:2: (this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )* )\n // InternalNgt.g:1724:3: this_ID_0= RULE_ID (kw= '.' this_ID_2= RULE_ID )*\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_35); \n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0());\n \t\t\n // InternalNgt.g:1731:3: (kw= '.' this_ID_2= RULE_ID )*\n loop30:\n do {\n int alt30=2;\n int LA30_0 = input.LA(1);\n\n if ( (LA30_0==38) ) {\n alt30=1;\n }\n\n\n switch (alt30) {\n \tcase 1 :\n \t // InternalNgt.g:1732:4: kw= '.' this_ID_2= RULE_ID\n \t {\n \t kw=(Token)match(input,38,FOLLOW_26); \n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0());\n \t \t\t\t\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_35); \n\n \t \t\t\t\tcurrent.merge(this_ID_2);\n \t \t\t\t\n\n \t \t\t\t\tnewLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1());\n \t \t\t\t\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop30;\n }\n } while (true);\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__Kontakt__VornameAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17264:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17265:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17265:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17266:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getKontaktAccess().getVornameValidIDParserRuleCall_3_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__Kontakt__VornameAssignment_334847);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getKontaktAccess().getVornameValidIDParserRuleCall_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1930:1: ( ruleQualifiedName EOF )\r\n // InternalDroneScript.g:1931:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void mRULE_ID() throws RecognitionException {\r\n try {\r\n int _type = RULE_ID;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n {\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:11: ( '^' )?\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( (LA2_0=='^') ) {\r\n alt2=1;\r\n }\r\n switch (alt2) {\r\n case 1 :\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:11: '^'\r\n {\r\n match('^'); \r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n input.consume();\r\n\r\n }\r\n else {\r\n MismatchedSetException mse = new MismatchedSetException(null,input);\r\n recover(mse);\r\n throw mse;}\r\n\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n loop3:\r\n do {\r\n int alt3=2;\r\n int LA3_0 = input.LA(1);\r\n\r\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\r\n alt3=1;\r\n }\r\n\r\n\r\n switch (alt3) {\r\n \tcase 1 :\r\n \t // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:\r\n \t {\r\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n \t input.consume();\r\n\r\n \t }\r\n \t else {\r\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\r\n \t recover(mse);\r\n \t throw mse;}\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop3;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalStl.g:1688:2: ( (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* ) )\n // InternalStl.g:1689:2: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\n {\n // InternalStl.g:1689:2: (this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )* )\n // InternalStl.g:1690:3: this_ID_0= RULE_ID ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_28); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent.merge(this_ID_0);\n \t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(this_ID_0, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0());\n \t\t\n }\n // InternalStl.g:1697:3: ( ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID )*\n loop20:\n do {\n int alt20=2;\n int LA20_0 = input.LA(1);\n\n if ( (LA20_0==35) && (synpred1_InternalStl())) {\n alt20=1;\n }\n\n\n switch (alt20) {\n \tcase 1 :\n \t // InternalStl.g:1698:4: ( ( '.' )=>kw= '.' ) this_ID_2= RULE_ID\n \t {\n \t // InternalStl.g:1698:4: ( ( '.' )=>kw= '.' )\n \t // InternalStl.g:1699:5: ( '.' )=>kw= '.'\n \t {\n \t kw=(Token)match(input,35,FOLLOW_3); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\t\tcurrent.merge(kw);\n \t \t\t\t\t\tnewLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0());\n \t \t\t\t\t\n \t }\n\n \t }\n\n \t this_ID_2=(Token)match(input,RULE_ID,FOLLOW_28); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tcurrent.merge(this_ID_2);\n \t \t\t\t\n \t }\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tnewLeafNode(this_ID_2, grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1());\n \t \t\t\t\n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop20;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "static boolean verifyID(String id)\r\n\t{\r\n\t\tfor(int i = 0; i < id.length(); i++)\r\n\t\t{\r\n\t\t\tchar c = id.charAt(i);\r\n\t\t\tif((c <= 'Z' && c >= 'A') || (c >= 'a' && c <= 'z')) //isAlpha\r\n\t\t\t{\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\telse if(c >= '0' && c <= '9' || c == '_' || c == '-') //is digit or _ or -\r\n\t\t\t{\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\telse if(c == ' ')\r\n\t\t\t{\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t{\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\treturn id.length() > 0;\r\n\t}", "public final void rule__Buchungsintervall__NameAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17037:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17038:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17038:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17039:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getBuchungsintervallAccess().getNameValidIDParserRuleCall_3_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__Buchungsintervall__NameAssignment_334380);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getBuchungsintervallAccess().getNameValidIDParserRuleCall_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__MemberNameAssignment_1_0_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4221:1: ( ( ruleValidID ) )\n // InternalCsv.g:4222:2: ( ruleValidID )\n {\n // InternalCsv.g:4222:2: ( ruleValidID )\n // InternalCsv.g:4223:3: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleIdentifier() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleIdentifier = null;\n\n\n try {\n // InternalMyDsl.g:10035:50: (iv_ruleIdentifier= ruleIdentifier EOF )\n // InternalMyDsl.g:10036:2: iv_ruleIdentifier= ruleIdentifier EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getIdentifierRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleIdentifier=ruleIdentifier();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleIdentifier.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_1_4_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19319:1: ( ( ( ruleValidID ) ) )\r\n // InternalDroneScript.g:19320:2: ( ( ruleValidID ) )\r\n {\r\n // InternalDroneScript.g:19320:2: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:19321:3: ( ruleValidID )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \r\n }\r\n // InternalDroneScript.g:19322:3: ( ruleValidID )\r\n // InternalDroneScript.g:19323:4: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "Token fixID( Token token) throws TokenStreamException\r\n {\r\n String text = token.getText();\r\n if ( text.endsWith( \"`\")) {\r\n \ttoken.setType( MExprANTLRParserTokenTypes.ERROR);\r\n \treturn token;\r\n }\r\n \r\n //This ID has already been used in one pattern\r\n if ( ((MExprToken)token).fixedID) {\r\n return token;\r\n }\r\n Token next = getNextToken();\r\n int type = next.getType();\r\n int newType = 0;\r\n switch ( type) {\r\n case MExprANTLRParserTokenTypes.BLANKDOT:\r\n newType = MExprANTLRParserTokenTypes.IDBLANKDOT;\r\n \tbreak;\r\n \r\n case MExprANTLRParserTokenTypes.BLANK1:\r\n newType = MExprANTLRParserTokenTypes.IDBLANK1;\r\n \tbreak;\r\n \r\n case MExprANTLRParserTokenTypes.BLANK2:\r\n newType = MExprANTLRParserTokenTypes.IDBLANK2;\r\n \tbreak;\r\n \r\n case MExprANTLRParserTokenTypes.BLANK3:\r\n newType = MExprANTLRParserTokenTypes.IDBLANK3;\r\n \tbreak;\r\n \r\n default:\r\n pushToken( next);\r\n \treturn token;\r\n }\r\n \r\n next.setType( newType);\r\n \r\n if ( type == MExprANTLRParserTokenTypes.BLANKDOT) {\r\n pushToken( next);\r\n return token;\r\n }\r\n \r\n Token next1 = getNextToken();\r\n if ( next1.getType() != MExprANTLRParserTokenTypes.ID) {\r\n pushToken( next1);\r\n pushToken( next);\r\n return token;\r\n }\r\n \r\n //So this ID does not form another \r\n ((MExprToken)next1).fixedID = true;\r\n switch ( type) {\r\n case MExprANTLRParserTokenTypes.BLANK1:\r\n newType = MExprANTLRParserTokenTypes.IDBLANKID1;\r\n \tbreak;\r\n \r\n case MExprANTLRParserTokenTypes.BLANK2:\r\n newType = MExprANTLRParserTokenTypes.IDBLANKID2;\r\n \tbreak;\r\n \r\n case MExprANTLRParserTokenTypes.BLANK3:\r\n newType = MExprANTLRParserTokenTypes.IDBLANKID3;\r\n \tbreak;\r\n }\r\n \r\n next.setType( newType);\r\n pushToken( next1);\r\n pushToken( next);\r\n \r\n return token;\r\n }", "public abstract boolean isValidID(long ID);", "public final EObject entryRuleQualifiedName() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleQualifiedName = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6197:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6198:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n currentNode = createCompositeNode(grammarAccess.getQualifiedNameRule(), currentNode); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName10823);\n iv_ruleQualifiedName=ruleQualifiedName();\n _fsp--;\n\n current =iv_ruleQualifiedName; \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName10833); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalNgt.g:1709:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalNgt.g:1710:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final AntlrDatatypeRuleToken ruleDCID() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalSafetyParser.g:9876:2: ( ( (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID ) )\n // InternalSafetyParser.g:9877:2: ( (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID )\n {\n // InternalSafetyParser.g:9877:2: ( (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID )\n // InternalSafetyParser.g:9878:3: (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID\n {\n // InternalSafetyParser.g:9878:3: (this_ID_0= RULE_ID kw= ColonColon )*\n loop123:\n do {\n int alt123=2;\n int LA123_0 = input.LA(1);\n\n if ( (LA123_0==RULE_ID) ) {\n int LA123_1 = input.LA(2);\n\n if ( (LA123_1==ColonColon) ) {\n alt123=1;\n }\n\n\n }\n\n\n switch (alt123) {\n \tcase 1 :\n \t // InternalSafetyParser.g:9879:4: this_ID_0= RULE_ID kw= ColonColon\n \t {\n \t this_ID_0=(Token)match(input,RULE_ID,FollowSets000.FOLLOW_102); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tcurrent.merge(this_ID_0);\n \t \t\t\t\n \t }\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tnewLeafNode(this_ID_0, grammarAccess.getDCIDAccess().getIDTerminalRuleCall_0_0());\n \t \t\t\t\n \t }\n \t kw=(Token)match(input,ColonColon,FollowSets000.FOLLOW_4); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getDCIDAccess().getColonColonKeyword_0_1());\n \t \t\t\t\n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop123;\n }\n } while (true);\n\n this_ID_2=(Token)match(input,RULE_ID,FollowSets000.FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent.merge(this_ID_2);\n \t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(this_ID_2, grammarAccess.getDCIDAccess().getIDTerminalRuleCall_1());\n \t\t\n }\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "static boolean verifyIDRelaxed(String id)\r\n\t{\r\n\t\tfor(int i = 0; i < id.length(); i++)\r\n\t\t{\r\n\t\t\tchar c = id.charAt(i);\r\n\t\t\tif(Character.isLetterOrDigit(c)) //isAlpha\r\n\t\t\t{\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\telse if(c == ' ' || c == '_' || c == '-')\r\n\t\t\t{\r\n\t\t\t\tcontinue;\r\n\t\t\t}\r\n\t\t\telse\r\n\t\t\t{\r\n\t\t\t\treturn false;\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn id.length() > 0;\r\n\t}", "@Override\n public boolean isValid(String potentialId, ConstraintValidatorContext context) {\n // Detecting nulls, empties and whitespace is the responsibility of other validations.\n // Responding true here indicates that this validator does not have an opinion about empty values.\n if (StringUtils.isBlank(potentialId)) { return true; }\n\n boolean pass = true;\n if (Character.isDigit(potentialId.charAt(0))) {\n context.buildConstraintViolationWithTemplate(\"An id cannot start with a digit.\").addConstraintViolation();\n pass = false;\n }\n if (potentialId.contains(\" \") || potentialId.contains(\"\\n\")) {\n context.buildConstraintViolationWithTemplate(\"An id should not contain whitespace.\").addConstraintViolation();\n pass = false;\n }\n\n if (!pass) {\n context.disableDefaultConstraintViolation();\n }\n\n return pass;\n }", "public final void rule__XVariableDeclaration__NameAssignment_2_0_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18425:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18426:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18426:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18427:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getNameValidIDParserRuleCall_2_0_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__XVariableDeclaration__NameAssignment_2_0_0_137222);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getNameValidIDParserRuleCall_2_0_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void testNullID() {\n String testID = generator.generatePrefixedIdentifier(null);\n assertNotNull(testID);\n assertTrue(testID.matches(ID_REGEX));\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3023:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3024:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName7183);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName7194); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "protected void validateSid(short id)\n {\n if (id != sid)\n {\n throw new RecordFormatException(\"Not a TextObjectBase record\");\n }\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3340:1: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n {\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n // InternalCsv.g:3342:2: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleID0() throws RecognitionException {\n try {\n // InternalMyDsl.g:279:1: ( ruleID0 EOF )\n // InternalMyDsl.g:280:1: ruleID0 EOF\n {\n before(grammarAccess.getID0Rule()); \n pushFollow(FOLLOW_1);\n ruleID0();\n\n state._fsp--;\n\n after(grammarAccess.getID0Rule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void mID() throws RecognitionException {\n try {\n int _type = ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // metamorph.runtime/src/antlr/Ast.g:26:5: ( ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' )* )\n // metamorph.runtime/src/antlr/Ast.g:26:7: ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' )*\n {\n if ( (input.LA(1) >= 'A' && input.LA(1) <= 'Z')||input.LA(1)=='_'||(input.LA(1) >= 'a' && input.LA(1) <= 'z') ) {\n input.consume();\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;\n }\n\n\n // metamorph.runtime/src/antlr/Ast.g:26:31: ( 'a' .. 'z' | 'A' .. 'Z' | '0' .. '9' | '_' )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( ((LA1_0 >= '0' && LA1_0 <= '9')||(LA1_0 >= 'A' && LA1_0 <= 'Z')||LA1_0=='_'||(LA1_0 >= 'a' && LA1_0 <= 'z')) ) {\n alt1=1;\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // metamorph.runtime/src/antlr/Ast.g:\n \t {\n \t if ( (input.LA(1) >= '0' && input.LA(1) <= '9')||(input.LA(1) >= 'A' && input.LA(1) <= 'Z')||input.LA(1)=='_'||(input.LA(1) >= 'a' && input.LA(1) <= 'z') ) {\n \t input.consume();\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n \t// do for sure before leaving\n }\n }", "public final void entryRuleIdOrSuper() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1221:1: ( ruleIdOrSuper EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1222:1: ruleIdOrSuper EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getIdOrSuperRule()); \n }\n pushFollow(FOLLOW_ruleIdOrSuper_in_entryRuleIdOrSuper2536);\n ruleIdOrSuper();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getIdOrSuperRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleIdOrSuper2543); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Kontakt__NachnameAssignment_5() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17279:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17280:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17280:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17281:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getKontaktAccess().getNachnameValidIDParserRuleCall_5_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__Kontakt__NachnameAssignment_534878);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getKontaktAccess().getNachnameValidIDParserRuleCall_5_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private boolean isValidId(String id) {\r\n\t\tboolean result = false;\r\n\t\tif (id.length() >= 1) {\r\n\t\t\tif (Character.isLetter(id.charAt(0))) {\r\n\t\t\t\tif (id.contains(\".\")) {\r\n\t\t\t\t\tString[] tokens = id.split(\"\\\\.\");\r\n\t\t\t\t\tif (tokens.length == 2) {\r\n\t\t\t\t\t\tfor (int i = 0; i < tokens[0].length(); i++) {\r\n\t\t\t\t\t\t\tif (!(tokens[0].charAt(i) == '.'\r\n\t\t\t\t\t\t\t\t\t|| tokens[0].charAt(i) == '_'\r\n\t\t\t\t\t\t\t\t\t|| tokens[0].charAt(i) == '-' || Character\r\n\t\t\t\t\t\t\t\t\t\t.isLetterOrDigit(tokens[0].charAt(i)))) {\r\n\t\t\t\t\t\t\t\treturn false;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tfor (int i = 0; i < tokens[1].length(); i++) {\r\n\t\t\t\t\t\t\tif (!(tokens[0].charAt(i) == '.'\r\n\t\t\t\t\t\t\t\t\t|| tokens[0].charAt(i) == '_'\r\n\t\t\t\t\t\t\t\t\t|| tokens[0].charAt(i) == '-' || Character\r\n\t\t\t\t\t\t\t\t\t\t.isLetterOrDigit(tokens[0].charAt(i)))) {\r\n\t\t\t\t\t\t\t\treturn false;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\treturn true;\r\n\t\t\t\t\t}\r\n\t\t\t\t} else {\r\n\t\t\t\t\treturn true;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\treturn result;\r\n\t}", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4170:1: ( ( RULE_ID ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4171:1: ( RULE_ID )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4171:1: ( RULE_ID )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4172:1: RULE_ID\n {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group__0__Impl8950); \n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleID() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_SIMPLE_ID_0=null;\n Token this_ESCAPED_ID_1=null;\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:10014:2: ( (this_SIMPLE_ID_0= RULE_SIMPLE_ID | this_ESCAPED_ID_1= RULE_ESCAPED_ID ) )\n // InternalMyDsl.g:10015:2: (this_SIMPLE_ID_0= RULE_SIMPLE_ID | this_ESCAPED_ID_1= RULE_ESCAPED_ID )\n {\n // InternalMyDsl.g:10015:2: (this_SIMPLE_ID_0= RULE_SIMPLE_ID | this_ESCAPED_ID_1= RULE_ESCAPED_ID )\n int alt148=2;\n int LA148_0 = input.LA(1);\n\n if ( (LA148_0==RULE_SIMPLE_ID) ) {\n alt148=1;\n }\n else if ( (LA148_0==RULE_ESCAPED_ID) ) {\n alt148=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 148, 0, input);\n\n throw nvae;\n }\n switch (alt148) {\n case 1 :\n // InternalMyDsl.g:10016:3: this_SIMPLE_ID_0= RULE_SIMPLE_ID\n {\n this_SIMPLE_ID_0=(Token)match(input,RULE_SIMPLE_ID,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent.merge(this_SIMPLE_ID_0);\n \t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(this_SIMPLE_ID_0, grammarAccess.getIDAccess().getSIMPLE_IDTerminalRuleCall_0());\n \t\t\n }\n\n }\n break;\n case 2 :\n // InternalMyDsl.g:10024:3: this_ESCAPED_ID_1= RULE_ESCAPED_ID\n {\n this_ESCAPED_ID_1=(Token)match(input,RULE_ESCAPED_ID,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent.merge(this_ESCAPED_ID_1);\n \t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(this_ESCAPED_ID_1, grammarAccess.getIDAccess().getESCAPED_IDTerminalRuleCall_1());\n \t\t\n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // InternalNestDsl.g:414:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // InternalNestDsl.g:415:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleQualifiedName.getText(); \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "private static boolean isValidLiteral(String literal)\r\n\t{\r\n\t\tboolean result = true;\r\n\t\t\r\n\t\tchar[] literalChars = new char[literal.length()];\r\n\t\tliteral.getChars(0, literalChars.length, literalChars, 0);\r\n\t\t\r\n\t\tfor (int i = 0; i < literalChars.length; i++)\r\n\t\t{\r\n\t\t\tif (i == 0 && !Character.isJavaIdentifierStart(literalChars[i]))\r\n\t\t\t{\r\n\t\t\t\tresult = false;\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t\t\r\n\t\t\tif (i != 0 && !Character.isJavaIdentifierPart(literalChars[i]))\r\n\t\t\t{\r\n\t\t\t\tresult = false;\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\treturn result;\r\n\t}", "public static boolean isValidIdentifier(CharSequence identifier) {\n if (identifier == null || identifier.length() == 0) {\n return false;\n }\n\n if (!isValidIdentifierStart(identifier.charAt(0))) {\n return false;\n }\n\n for (int i = 1; i < identifier.length(); i++) {\n if (!isValidIdentifierAfterStart(identifier.charAt(i))) {\n return false;\n }\n }\n\n return true;\n }", "public final void rule__QualifiedNameWithWildcard__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3355:1: ( rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2 )\n // InternalCsv.g:3356:2: rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2\n {\n pushFollow(FOLLOW_39);\n rule__QualifiedNameWithWildcard__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalStl.g:1675:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalStl.g:1676:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final AntlrDatatypeRuleToken ruleQCREF() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n Token this_ID_4=null;\n\n\n \tenterRule();\n\n try {\n // InternalSafetyParser.g:11731:2: ( ( (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID (kw= FullStop this_ID_4= RULE_ID )? ) )\n // InternalSafetyParser.g:11732:2: ( (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID (kw= FullStop this_ID_4= RULE_ID )? )\n {\n // InternalSafetyParser.g:11732:2: ( (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID (kw= FullStop this_ID_4= RULE_ID )? )\n // InternalSafetyParser.g:11733:3: (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID (kw= FullStop this_ID_4= RULE_ID )?\n {\n // InternalSafetyParser.g:11733:3: (this_ID_0= RULE_ID kw= ColonColon )*\n loop149:\n do {\n int alt149=2;\n int LA149_0 = input.LA(1);\n\n if ( (LA149_0==RULE_ID) ) {\n int LA149_1 = input.LA(2);\n\n if ( (LA149_1==ColonColon) ) {\n alt149=1;\n }\n\n\n }\n\n\n switch (alt149) {\n \tcase 1 :\n \t // InternalSafetyParser.g:11734:4: this_ID_0= RULE_ID kw= ColonColon\n \t {\n \t this_ID_0=(Token)match(input,RULE_ID,FollowSets000.FOLLOW_102); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tcurrent.merge(this_ID_0);\n \t \t\t\t\n \t }\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tnewLeafNode(this_ID_0, grammarAccess.getQCREFAccess().getIDTerminalRuleCall_0_0());\n \t \t\t\t\n \t }\n \t kw=(Token)match(input,ColonColon,FollowSets000.FOLLOW_4); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getQCREFAccess().getColonColonKeyword_0_1());\n \t \t\t\t\n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop149;\n }\n } while (true);\n\n this_ID_2=(Token)match(input,RULE_ID,FollowSets000.FOLLOW_96); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent.merge(this_ID_2);\n \t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(this_ID_2, grammarAccess.getQCREFAccess().getIDTerminalRuleCall_1());\n \t\t\n }\n // InternalSafetyParser.g:11754:3: (kw= FullStop this_ID_4= RULE_ID )?\n int alt150=2;\n int LA150_0 = input.LA(1);\n\n if ( (LA150_0==FullStop) ) {\n alt150=1;\n }\n switch (alt150) {\n case 1 :\n // InternalSafetyParser.g:11755:4: kw= FullStop this_ID_4= RULE_ID\n {\n kw=(Token)match(input,FullStop,FollowSets000.FOLLOW_4); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tcurrent.merge(kw);\n \t\t\t\tnewLeafNode(kw, grammarAccess.getQCREFAccess().getFullStopKeyword_2_0());\n \t\t\t\n }\n this_ID_4=(Token)match(input,RULE_ID,FollowSets000.FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tcurrent.merge(this_ID_4);\n \t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(this_ID_4, grammarAccess.getQCREFAccess().getIDTerminalRuleCall_2_1());\n \t\t\t\n }\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "Rule SingleQuotedLiteral() {\n return Sequence(\n \"'\",\n ZeroOrMore(NoneOf(\"'\")),\n \"'\");\n }" ]
[ "0.63469696", "0.6325367", "0.61441797", "0.59859216", "0.59358877", "0.588662", "0.5875661", "0.58619976", "0.57976764", "0.5592299", "0.55777246", "0.55655843", "0.5565411", "0.55458856", "0.55338067", "0.54666346", "0.5399193", "0.5382115", "0.5241646", "0.5214286", "0.5210775", "0.51786613", "0.5171", "0.5167307", "0.5137189", "0.5134527", "0.51228195", "0.51140225", "0.51105493", "0.5108646", "0.5094556", "0.50722677", "0.5056044", "0.5033697", "0.5017948", "0.49984407", "0.49885696", "0.4980268", "0.49747106", "0.49738526", "0.49599472", "0.49567795", "0.49497244", "0.4948888", "0.49425942", "0.49324387", "0.49314156", "0.49185175", "0.49095088", "0.49071795", "0.48872733", "0.4879277", "0.486715", "0.486693", "0.48540863", "0.4849344", "0.48402083", "0.48384145", "0.48120943", "0.47756064", "0.4771794", "0.4769192", "0.4762242", "0.4757771", "0.4755861", "0.47489652", "0.4732013", "0.47299752", "0.47019193", "0.46811447", "0.4675685", "0.46705303", "0.46677038", "0.46661657", "0.46540138", "0.46347815", "0.4627764", "0.4621166", "0.46174476", "0.46173233", "0.46131143", "0.4609077", "0.46063393", "0.4606079", "0.45994014", "0.4595847", "0.45941296", "0.4591469", "0.45902792", "0.45832995", "0.4566618", "0.45535627", "0.4551657", "0.4534166", "0.45310783", "0.4526613", "0.45247883", "0.45035347", "0.4498187", "0.4494037" ]
0.64322585
0
$ANTLR end "entryRuleValidID" $ANTLR start "ruleValidID" InternalCsv.g:588:1: ruleValidID : ( RULE_ID ) ;
public final void ruleValidID() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:592:2: ( ( RULE_ID ) ) // InternalCsv.g:593:2: ( RULE_ID ) { // InternalCsv.g:593:2: ( RULE_ID ) // InternalCsv.g:594:3: RULE_ID { if ( state.backtracking==0 ) { before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); } match(input,RULE_ID,FOLLOW_2); if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleValidID() throws RecognitionException {\n try {\n // InternalCsv.g:580:1: ( ruleValidID EOF )\n // InternalCsv.g:581:1: ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_1);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getValidIDRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final String entryRuleValidID() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleValidID = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3072:2: (iv_ruleValidID= ruleValidID EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3073:2: iv_ruleValidID= ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_ruleValidID_in_entryRuleValidID7330);\n iv_ruleValidID=ruleValidID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleValidID.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleValidID7341); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleValidID() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2103:1: ( ruleValidID EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2104:1: ruleValidID EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDRule()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_entryRuleValidID4422);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleValidID4429); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleValidID() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2263:1: ( ruleValidID EOF )\r\n // InternalDroneScript.g:2264:1: ruleValidID EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final AntlrDatatypeRuleToken ruleValidID() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3083:28: (this_ID_0= RULE_ID )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3084:5: this_ID_0= RULE_ID\n {\n this_ID_0=(Token)match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleValidID7380); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\tcurrent.merge(this_ID_0);\n \n }\n if ( state.backtracking==0 ) {\n \n newLeafNode(this_ID_0, grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \n \n }\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleValidID() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2275:2: ( ( RULE_ID ) )\r\n // InternalDroneScript.g:2276:2: ( RULE_ID )\r\n {\r\n // InternalDroneScript.g:2276:2: ( RULE_ID )\r\n // InternalDroneScript.g:2277:3: RULE_ID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \r\n }\r\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleValidID() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2115:2: ( ( RULE_ID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2116:1: ( RULE_ID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2116:1: ( RULE_ID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2117:1: RULE_ID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \r\n }\r\n match(input,RULE_ID,FOLLOW_RULE_ID_in_ruleValidID4455); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:11: ( '^' )?\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0=='^') ) {\n alt7=1;\n }\n switch (alt7) {\n case 1 :\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:2533:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop8:\n do {\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( ((LA8_0>='0' && LA8_0<='9')||(LA8_0>='A' && LA8_0<='Z')||LA8_0=='_'||(LA8_0>='a' && LA8_0<='z')) ) {\n alt8=1;\n }\n\n\n switch (alt8) {\n \tcase 1 :\n \t // ../org.xtext.example.webgme_mtl/src-gen/org/xtext/example/webgme/parser/antlr/internal/InternalMTL.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop8;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:40359:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // ../org.xtext.example.json.ui/src-gen/org/xtext/example/mydsl/ui/contentassist/antlr/internal/InternalMyjson.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalDSL.g:16701:9: ( ( '^' )? ( 'a' .. 'z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalDSL.g:16701:11: ( '^' )? ( 'a' .. 'z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalDSL.g:16701:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalDSL.g:16701:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalDSL.g:16701:31: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalDSL.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalDSL.g:2286:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalDSL.g:2286:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalDSL.g:2286:11: ( '^' )?\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0=='^') ) {\n alt3=1;\n }\n switch (alt3) {\n case 1 :\n // InternalDSL.g:2286:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalDSL.g:2286:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop4:\n do {\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( ((LA4_0>='0' && LA4_0<='9')||(LA4_0>='A' && LA4_0<='Z')||LA4_0=='_'||(LA4_0>='a' && LA4_0<='z')) ) {\n alt4=1;\n }\n\n\n switch (alt4) {\n \tcase 1 :\n \t // InternalDSL.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop4;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3312:1: ( ( ruleValidID ) )\n // InternalCsv.g:3313:1: ( ruleValidID )\n {\n // InternalCsv.g:3313:1: ( ruleValidID )\n // InternalCsv.g:3314:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalReqLNG.g:1718:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalReqLNG.g:1718:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalReqLNG.g:1718:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalReqLNG.g:1718:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalReqLNG.g:1718:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalReqLNG.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:11: ( '^' )?\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0=='^') ) {\n alt6=1;\n }\n switch (alt6) {\n case 1 :\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:663:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop7:\n do {\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( ((LA7_0>='0' && LA7_0<='9')||(LA7_0>='A' && LA7_0<='Z')||LA7_0=='_'||(LA7_0>='a' && LA7_0<='z')) ) {\n alt7=1;\n }\n\n\n switch (alt7) {\n \tcase 1 :\n \t // ../com.pellcorp.mydsl/src-gen/com/pellcorp/mydsl/parser/antlr/internal/InternalMyDsl.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop7;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:2385:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalMyDsl.g:2385:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalMyDsl.g:2385:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalMyDsl.g:2385:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalMyDsl.g:2385:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalMyDsl.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalSpeADL.g:23486:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' | '0' .. '9' )* )\n // InternalSpeADL.g:23486:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' | '0' .. '9' )*\n {\n // InternalSpeADL.g:23486:11: ( '^' )?\n int alt9=2;\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0=='^') ) {\n alt9=1;\n }\n switch (alt9) {\n case 1 :\n // InternalSpeADL.g:23486:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( input.LA(1)=='$'||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalSpeADL.g:23486:44: ( 'a' .. 'z' | 'A' .. 'Z' | '$' | '_' | '0' .. '9' )*\n loop10:\n do {\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0=='$'||(LA10_0>='0' && LA10_0<='9')||(LA10_0>='A' && LA10_0<='Z')||LA10_0=='_'||(LA10_0>='a' && LA10_0<='z')) ) {\n alt10=1;\n }\n\n\n switch (alt10) {\n \tcase 1 :\n \t // InternalSpeADL.g:\n \t {\n \t if ( input.LA(1)=='$'||(input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop10;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:6368:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalMyDsl.g:6368:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalMyDsl.g:6368:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalMyDsl.g:6368:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalMyDsl.g:6368:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalMyDsl.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalMyDsl.g:15368:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalMyDsl.g:15368:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalMyDsl.g:15368:11: ( '^' )?\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0=='^') ) {\n alt7=1;\n }\n switch (alt7) {\n case 1 :\n // InternalMyDsl.g:15368:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalMyDsl.g:15368:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop8:\n do {\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( ((LA8_0>='0' && LA8_0<='9')||(LA8_0>='A' && LA8_0<='Z')||LA8_0=='_'||(LA8_0>='a' && LA8_0<='z')) ) {\n alt8=1;\n }\n\n\n switch (alt8) {\n \tcase 1 :\n \t // InternalMyDsl.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop8;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\r\n try {\r\n int _type = RULE_ID;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n {\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:11: ( '^' )?\r\n int alt14=2;\r\n int LA14_0 = input.LA(1);\r\n\r\n if ( (LA14_0=='^') ) {\r\n alt14=1;\r\n }\r\n switch (alt14) {\r\n case 1 :\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:11: '^'\r\n {\r\n match('^'); \r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n input.consume();\r\n\r\n }\r\n else {\r\n MismatchedSetException mse = new MismatchedSetException(null,input);\r\n recover(mse);\r\n throw mse;}\r\n\r\n // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:19810:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n loop15:\r\n do {\r\n int alt15=2;\r\n int LA15_0 = input.LA(1);\r\n\r\n if ( ((LA15_0>='0' && LA15_0<='9')||(LA15_0>='A' && LA15_0<='Z')||LA15_0=='_'||(LA15_0>='a' && LA15_0<='z')) ) {\r\n alt15=1;\r\n }\r\n\r\n\r\n switch (alt15) {\r\n \tcase 1 :\r\n \t // ../org.openmodelica.modelicaml.editor.xtext.modification.ui/src-gen/org/openmodelica/modelicaml/editor/xtext/modification/ui/contentassist/antlr/internal/InternalModification.g:\r\n \t {\r\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n \t input.consume();\r\n\r\n \t }\r\n \t else {\r\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\r\n \t recover(mse);\r\n \t throw mse;}\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop15;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:11: ( '^' )?\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0=='^') ) {\n alt22=1;\n }\n switch (alt22) {\n case 1 :\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:93:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop23:\n do {\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( ((LA23_0>='0' && LA23_0<='9')||(LA23_0>='A' && LA23_0<='Z')||LA23_0=='_'||(LA23_0>='a' && LA23_0<='z')) ) {\n alt23=1;\n }\n\n\n switch (alt23) {\n \tcase 1 :\n \t // ../org.leta.plugin.ui/src-gen/org/ui/contentassist/antlr/lexer/InternalLetaLexer.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop23;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalStateMachine.g:845:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalStateMachine.g:845:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalStateMachine.g:845:11: ( '^' )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0=='^') ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // InternalStateMachine.g:845:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalStateMachine.g:845:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // InternalStateMachine.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15102:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:15103:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:15103:1: ( ruleValidID )\r\n // InternalDroneScript.g:15104:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalVizualizer.g:1752:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalVizualizer.g:1752:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalVizualizer.g:1752:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // InternalVizualizer.g:1752:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalVizualizer.g:1752:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // InternalVizualizer.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void mRULE_ID() throws RecognitionException {\r\n try {\r\n int _type = RULE_ID;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // InternalSpringConfigDsl.g:34495:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\r\n // InternalSpringConfigDsl.g:34495:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n {\r\n // InternalSpringConfigDsl.g:34495:11: ( '^' )?\r\n int alt1=2;\r\n int LA1_0 = input.LA(1);\r\n\r\n if ( (LA1_0=='^') ) {\r\n alt1=1;\r\n }\r\n switch (alt1) {\r\n case 1 :\r\n // InternalSpringConfigDsl.g:34495:11: '^'\r\n {\r\n match('^'); \r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n input.consume();\r\n\r\n }\r\n else {\r\n MismatchedSetException mse = new MismatchedSetException(null,input);\r\n recover(mse);\r\n throw mse;}\r\n\r\n // InternalSpringConfigDsl.g:34495:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n loop2:\r\n do {\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\r\n alt2=1;\r\n }\r\n\r\n\r\n switch (alt2) {\r\n \tcase 1 :\r\n \t // InternalSpringConfigDsl.g:\r\n \t {\r\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n \t input.consume();\r\n\r\n \t }\r\n \t else {\r\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\r\n \t recover(mse);\r\n \t throw mse;}\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop2;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalIotLuaXtext.g:7228:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // InternalIotLuaXtext.g:7228:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // InternalIotLuaXtext.g:7228:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // InternalIotLuaXtext.g:7228:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalIotLuaXtext.g:7228:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // InternalIotLuaXtext.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token kw=null;\n AntlrDatatypeRuleToken this_ValidID_0 = null;\n\n AntlrDatatypeRuleToken this_ValidID_2 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3034:28: ( (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3036:5: this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7241);\n this_ValidID_0=ruleValidID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\tcurrent.merge(this_ValidID_0);\n \n }\n if ( state.backtracking==0 ) {\n \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3046:1: (kw= '.' this_ValidID_2= ruleValidID )*\n loop41:\n do {\n int alt41=2;\n int LA41_0 = input.LA(1);\n\n if ( (LA41_0==40) ) {\n alt41=1;\n }\n\n\n switch (alt41) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3047:2: kw= '.' this_ValidID_2= ruleValidID\n \t {\n \t kw=(Token)match(input,40,FOLLOW_40_in_ruleQualifiedName7260); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t current.merge(kw);\n \t newLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n \t \n \t }\n \t pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7282);\n \t this_ValidID_2=ruleValidID();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\tcurrent.merge(this_ValidID_2);\n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t afterParserOrEnumRuleCall();\n \t \n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop41;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15572:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15573:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15573:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15574:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__QualifiedName__Group_1__1__Impl31485);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRULE_ID() throws RecognitionException {\r\n try {\r\n int _type = RULE_ID;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n {\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:11: ( '^' )?\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( (LA2_0=='^') ) {\r\n alt2=1;\r\n }\r\n switch (alt2) {\r\n case 1 :\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:11: '^'\r\n {\r\n match('^'); \r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n input.consume();\r\n\r\n }\r\n else {\r\n MismatchedSetException mse = new MismatchedSetException(null,input);\r\n recover(mse);\r\n throw mse;}\r\n\r\n // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:2481:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n loop3:\r\n do {\r\n int alt3=2;\r\n int LA3_0 = input.LA(1);\r\n\r\n if ( ((LA3_0>='0' && LA3_0<='9')||(LA3_0>='A' && LA3_0<='Z')||LA3_0=='_'||(LA3_0>='a' && LA3_0<='z')) ) {\r\n alt3=1;\r\n }\r\n\r\n\r\n switch (alt3) {\r\n \tcase 1 :\r\n \t // ../ooi.coi.bspl.ui/src-gen/ooi/coi/bspl/ui/contentassist/antlr/internal/InternalBSPL.g:\r\n \t {\r\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n \t input.consume();\r\n\r\n \t }\r\n \t else {\r\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\r\n \t recover(mse);\r\n \t throw mse;}\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop3;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalEsm.g:13288:9: ( ( '^' )? ( RULE_LETTER | '_' ) ( RULE_LETTER | '_' | '0' .. '9' )* )\n // InternalEsm.g:13288:11: ( '^' )? ( RULE_LETTER | '_' ) ( RULE_LETTER | '_' | '0' .. '9' )*\n {\n // InternalEsm.g:13288:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // InternalEsm.g:13288:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z')||(input.LA(1)>='\\u00C0' && input.LA(1)<='\\u00D6')||(input.LA(1)>='\\u00D8' && input.LA(1)<='\\u00F6')||(input.LA(1)>='\\u00F8' && input.LA(1)<='\\u00FF') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // InternalEsm.g:13288:34: ( RULE_LETTER | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')||(LA2_0>='\\u00C0' && LA2_0<='\\u00D6')||(LA2_0>='\\u00D8' && LA2_0<='\\u00F6')||(LA2_0>='\\u00F8' && LA2_0<='\\u00FF')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // InternalEsm.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z')||(input.LA(1)>='\\u00C0' && input.LA(1)<='\\u00D6')||(input.LA(1)>='\\u00D8' && input.LA(1)<='\\u00F6')||(input.LA(1)>='\\u00F8' && input.LA(1)<='\\u00FF') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final String entryRuleID() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleID = null;\n\n\n try {\n // InternalMyDsl.g:10001:42: (iv_ruleID= ruleID EOF )\n // InternalMyDsl.g:10002:2: iv_ruleID= ruleID EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getIDRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleID=ruleID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleID.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public TerminalRule getIDRule() {\r\n\t\treturn gaXtype.getIDRule();\r\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaXtype.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaXtype.getIDRule();\n\t}", "public final void mRULE_ID() throws RecognitionException {\r\n try {\r\n int _type = RULE_ID;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n {\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:11: ( '^' )?\r\n int alt3=2;\r\n int LA3_0 = input.LA(1);\r\n\r\n if ( (LA3_0=='^') ) {\r\n alt3=1;\r\n }\r\n switch (alt3) {\r\n case 1 :\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:11: '^'\r\n {\r\n match('^'); \r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n input.consume();\r\n\r\n }\r\n else {\r\n MismatchedSetException mse = new MismatchedSetException(null,input);\r\n recover(mse);\r\n throw mse;}\r\n\r\n // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:3473:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\r\n loop4:\r\n do {\r\n int alt4=2;\r\n int LA4_0 = input.LA(1);\r\n\r\n if ( ((LA4_0>='0' && LA4_0<='9')||(LA4_0>='A' && LA4_0<='Z')||LA4_0=='_'||(LA4_0>='a' && LA4_0<='z')) ) {\r\n alt4=1;\r\n }\r\n\r\n\r\n switch (alt4) {\r\n \tcase 1 :\r\n \t // ../org.ow2.mindEd.adl.textual/src-gen/org/ow2/mindEd/adl/textual/parser/antlr/internal/InternalFractal.g:\r\n \t {\r\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\r\n \t input.consume();\r\n\r\n \t }\r\n \t else {\r\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\r\n \t recover(mse);\r\n \t throw mse;}\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop4;\r\n }\r\n } while (true);\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n }\r\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15022:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:15023:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:15023:1: ( ruleValidID )\r\n // InternalDroneScript.g:15024:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3610:1: ( ( ruleValidID ) )\n // InternalCsv.g:3611:1: ( ruleValidID )\n {\n // InternalCsv.g:3611:1: ( ruleValidID )\n // InternalCsv.g:3612:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15481:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15482:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15482:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15483:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__QualifiedName__Group__0__Impl31303);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_1_4_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3976:1: ( ( ( ruleValidID ) ) )\n // InternalCsv.g:3977:2: ( ( ruleValidID ) )\n {\n // InternalCsv.g:3977:2: ( ( ruleValidID ) )\n // InternalCsv.g:3978:3: ( ruleValidID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \n }\n // InternalCsv.g:3979:3: ( ruleValidID )\n // InternalCsv.g:3980:4: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16939:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n // InternalDroneScript.g:16941:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6926:9: ( ( '_' | 'a' .. 'z' | 'A' .. 'Z' ) ( '0' .. '9' | '_' | 'a' .. 'z' | 'A' .. 'Z' )* )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6926:11: ( '_' | 'a' .. 'z' | 'A' .. 'Z' ) ( '0' .. '9' | '_' | 'a' .. 'z' | 'A' .. 'Z' )*\n {\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse =\n new MismatchedSetException(null,input);\n recover(mse); throw mse;\n }\n\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6926:35: ( '0' .. '9' | '_' | 'a' .. 'z' | 'A' .. 'Z' )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( ((LA1_0>='0' && LA1_0<='9')||(LA1_0>='A' && LA1_0<='Z')||LA1_0=='_'||(LA1_0>='a' && LA1_0<='z')) ) {\n alt1=1;\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse =\n \t new MismatchedSetException(null,input);\n \t recover(mse); throw mse;\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n\n }\n\n this.type = _type;\n }\n finally {\n }\n }", "@Override\n\tpublic void valid(String id, String valid) {\n\t\t\n\t}", "public final void rule__IdOrSuper__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2930:1: ( ( ruleValidID ) | ( 'super' ) )\r\n int alt26=2;\r\n int LA26_0 = input.LA(1);\r\n\r\n if ( (LA26_0==RULE_ID) ) {\r\n alt26=1;\r\n }\r\n else if ( (LA26_0==39) ) {\r\n alt26=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 26, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt26) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2931:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2931:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2932:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIdOrSuperAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__IdOrSuper__Alternatives6351);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIdOrSuperAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2937:6: ( 'super' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2937:6: ( 'super' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2938:1: 'super'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIdOrSuperAccess().getSuperKeyword_1()); \r\n }\r\n match(input,39,FOLLOW_39_in_rule__IdOrSuper__Alternatives6369); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIdOrSuperAccess().getSuperKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3232:1: ( ( ruleValidID ) )\n // InternalCsv.g:3233:1: ( ruleValidID )\n {\n // InternalCsv.g:3233:1: ( ruleValidID )\n // InternalCsv.g:3234:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__StaticQualifier__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13699:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13700:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13700:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13701:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStaticQualifierAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__StaticQualifier__Group__0__Impl27806);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStaticQualifierAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setRuleId(String ruleId) {\n this.ruleId = ruleId;\n }", "public String getRuleId() {\n return ruleId;\n }", "public final void entryRuleIdOrString() throws RecognitionException {\n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:258:1: ( ruleIdOrString EOF )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:259:1: ruleIdOrString EOF\n {\n before(grammarAccess.getIdOrStringRule()); \n pushFollow(FollowSets000.FOLLOW_ruleIdOrString_in_entryRuleIdOrString481);\n ruleIdOrString();\n _fsp--;\n\n after(grammarAccess.getIdOrStringRule()); \n match(input,EOF,FollowSets000.FOLLOW_EOF_in_entryRuleIdOrString488); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void setRuleId(String value) {\r\n setAttributeInternal(RULEID, value);\r\n }", "public final void entryRuleIdOrSuper() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1221:1: ( ruleIdOrSuper EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1222:1: ruleIdOrSuper EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getIdOrSuperRule()); \n }\n pushFollow(FOLLOW_ruleIdOrSuper_in_entryRuleIdOrSuper2536);\n ruleIdOrSuper();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getIdOrSuperRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleIdOrSuper2543); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public abstract boolean isValidID(long ID);", "private void validateId(String id) {\n if (!id.matches(\"[0-9]+\")) {\n throw new IllegalArgumentException(\"Invaild Tweet Id\");\n }\n return;\n }", "public void setId(String ruleId) {\r\n if (ruleId != null && StringUtils.isBlank(ruleId)) {\r\n throw new IllegalArgumentException(\"rule ID must be null or else non-blank\");\r\n }\r\n\t\t\tthis.id = ruleId;\r\n\t\t}", "public void setRuleId(Integer value) {\n setAttributeInternal(RULEID, value);\n }", "@Override\n public boolean isValid(String potentialId, ConstraintValidatorContext context) {\n // Detecting nulls, empties and whitespace is the responsibility of other validations.\n // Responding true here indicates that this validator does not have an opinion about empty values.\n if (StringUtils.isBlank(potentialId)) { return true; }\n\n boolean pass = true;\n if (Character.isDigit(potentialId.charAt(0))) {\n context.buildConstraintViolationWithTemplate(\"An id cannot start with a digit.\").addConstraintViolation();\n pass = false;\n }\n if (potentialId.contains(\" \") || potentialId.contains(\"\\n\")) {\n context.buildConstraintViolationWithTemplate(\"An id should not contain whitespace.\").addConstraintViolation();\n pass = false;\n }\n\n if (!pass) {\n context.disableDefaultConstraintViolation();\n }\n\n return pass;\n }", "public boolean validateID() {\n\t\tif (this.id == null || this.id.length() < 1)\n\t\t\treturn false;\n\t\ttry {\n\t\t\tInteger.parseInt(this.id);\n\t\t} catch (NumberFormatException e) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t}", "public final AntlrDatatypeRuleToken ruleIdentifier() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n AntlrDatatypeRuleToken this_ID_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:10048:2: (this_ID_0= ruleID )\n // InternalMyDsl.g:10049:2: this_ID_0= ruleID\n {\n if ( state.backtracking==0 ) {\n\n \t\tnewCompositeNode(grammarAccess.getIdentifierAccess().getIDParserRuleCall());\n \t\n }\n pushFollow(FOLLOW_2);\n this_ID_0=ruleID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\tcurrent.merge(this_ID_0);\n \t\n }\n if ( state.backtracking==0 ) {\n\n \t\tafterParserOrEnumRuleCall();\n \t\n }\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public String getRuleId() {\n return this.RuleId;\n }", "public TerminalRule getIDRule() {\r\n\t\treturn gaTerminals.getIDRule();\r\n\t}", "public TerminalRule getIDRule() {\r\n\t\treturn gaTerminals.getIDRule();\r\n\t}", "public TerminalRule getIDRule() {\r\n\t\treturn gaTerminals.getIDRule();\r\n\t}", "public TerminalRule getIDRule() {\r\n\t\treturn gaTerminals.getIDRule();\r\n\t}", "public final void mID() throws RecognitionException {\r\n try {\r\n final int _type = SparqlMarcoLexer.ID;\r\n final int _channel = BaseRecognizer.DEFAULT_TOKEN_CHANNEL;\r\n if (this.input.LA(1) >= 'A' && this.input.LA(1) <= 'Z' || this.input.LA(1) == '_'\r\n || this.input.LA(1) >= 'a' && this.input.LA(1) <= 'z') {\r\n this.input.consume();\r\n\r\n } else {\r\n final MismatchedSetException mse = new MismatchedSetException(null, this.input);\r\n this.recover(mse);\r\n throw mse;\r\n }\r\n // /Users/Marco/Desktop/Tesi Davide/Antlr-doc/SparqlMarco.g:51:31: ( 'a' .. 'z' |\r\n // 'A' .. 'Z' | '0' .. '9' | '_' )*\r\n loop3: do {\r\n int alt3 = 2;\r\n final int LA3_0 = this.input.LA(1);\r\n\r\n if (LA3_0 >= '0' && LA3_0 <= '9' || LA3_0 >= 'A' && LA3_0 <= 'Z' || LA3_0 == '_'\r\n || LA3_0 >= 'a' && LA3_0 <= 'z') {\r\n alt3 = 1;\r\n }\r\n\r\n switch (alt3) {\r\n case 1:\r\n // /Users/Marco/Desktop/Tesi Davide/Antlr-doc/SparqlMarco.g:\r\n {\r\n if (this.input.LA(1) >= '0' && this.input.LA(1) <= '9'\r\n || this.input.LA(1) >= 'A' && this.input.LA(1) <= 'Z'\r\n || this.input.LA(1) == '_' || this.input.LA(1) >= 'a'\r\n && this.input.LA(1) <= 'z') {\r\n this.input.consume();\r\n\r\n } else {\r\n final MismatchedSetException mse = new MismatchedSetException(null,\r\n this.input);\r\n this.recover(mse);\r\n throw mse;\r\n }\r\n\r\n }\r\n break;\r\n\r\n default:\r\n break loop3;\r\n }\r\n } while (true);\r\n this.state.type = _type;\r\n this.state.channel = _channel;\r\n } finally {\r\n }\r\n }", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public TerminalRule getIDRule() {\n\t\treturn gaTerminals.getIDRule();\n\t}", "public Rule idExpr()\n \t{\n \t\treturn firstOf(idExprReq(), id());\n \t}", "public final void synpred3_InternalGo_fragment() throws RecognitionException { \r\n // InternalGo.g:3135:2: ( ( RULE_ID ) )\r\n // InternalGo.g:3135:2: ( RULE_ID )\r\n {\r\n // InternalGo.g:3135:2: ( RULE_ID )\r\n // InternalGo.g:3136:3: RULE_ID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIDENTIFIERAccess().getIDTerminalRuleCall_0()); \r\n }\r\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n\r\n }\r\n }", "public Long getRuleID() {\n return this.RuleID;\n }", "IdListRule createIdListRule();", "public int getRuleId() {\n\t\treturn ruleId;\n\t}", "public final void entryRuleIdOrSuper() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1630:1: ( ruleIdOrSuper EOF )\r\n // InternalDroneScript.g:1631:1: ruleIdOrSuper EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIdOrSuperRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleIdOrSuper();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIdOrSuperRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleID0() throws RecognitionException {\n try {\n // InternalMyDsl.g:279:1: ( ruleID0 EOF )\n // InternalMyDsl.g:280:1: ruleID0 EOF\n {\n before(grammarAccess.getID0Rule()); \n pushFollow(FOLLOW_1);\n ruleID0();\n\n state._fsp--;\n\n after(grammarAccess.getID0Rule()); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleIdOrSuper() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1442:1: ( ruleIdOrSuper EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1443:1: ruleIdOrSuper EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIdOrSuperRule()); \r\n }\r\n pushFollow(FOLLOW_ruleIdOrSuper_in_entryRuleIdOrSuper3014);\r\n ruleIdOrSuper();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIdOrSuperRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleIdOrSuper3021); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__TypeAssignment_1_4_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19319:1: ( ( ( ruleValidID ) ) )\r\n // InternalDroneScript.g:19320:2: ( ( ruleValidID ) )\r\n {\r\n // InternalDroneScript.g:19320:2: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:19321:3: ( ruleValidID )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \r\n }\r\n // InternalDroneScript.g:19322:3: ( ruleValidID )\r\n // InternalDroneScript.g:19323:4: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeValidIDParserRuleCall_1_4_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_1_4_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final String entryRuleIdentifier() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleIdentifier = null;\n\n\n try {\n // InternalMyDsl.g:10035:50: (iv_ruleIdentifier= ruleIdentifier EOF )\n // InternalMyDsl.g:10036:2: iv_ruleIdentifier= ruleIdentifier EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getIdentifierRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleIdentifier=ruleIdentifier();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleIdentifier.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__Kontakt__VornameAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17264:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17265:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17265:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17266:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getKontaktAccess().getVornameValidIDParserRuleCall_3_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__Kontakt__VornameAssignment_334847);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getKontaktAccess().getVornameValidIDParserRuleCall_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public String getRuleID() {\n\t\treturn adaptee.getConstraint().getDescriptor().getId();\n\t}", "public final void rule__FeatureCallID__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3258:1: ( ( ruleValidID ) | ( 'extends' ) | ( 'static' ) | ( 'import' ) | ( 'extension' ) )\r\n int alt32=5;\r\n switch ( input.LA(1) ) {\r\n case RULE_ID:\r\n {\r\n alt32=1;\r\n }\r\n break;\r\n case 45:\r\n {\r\n alt32=2;\r\n }\r\n break;\r\n case 46:\r\n {\r\n alt32=3;\r\n }\r\n break;\r\n case 47:\r\n {\r\n alt32=4;\r\n }\r\n break;\r\n case 48:\r\n {\r\n alt32=5;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 32, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt32) {\r\n case 1 :\r\n // InternalDroneScript.g:3259:2: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:3259:2: ( ruleValidID )\r\n // InternalDroneScript.g:3260:3: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3265:2: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:3265:2: ( 'extends' )\r\n // InternalDroneScript.g:3266:3: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getExtendsKeyword_1()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getExtendsKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:3271:2: ( 'static' )\r\n {\r\n // InternalDroneScript.g:3271:2: ( 'static' )\r\n // InternalDroneScript.g:3272:3: 'static'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getStaticKeyword_2()); \r\n }\r\n match(input,46,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getStaticKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 4 :\r\n // InternalDroneScript.g:3277:2: ( 'import' )\r\n {\r\n // InternalDroneScript.g:3277:2: ( 'import' )\r\n // InternalDroneScript.g:3278:3: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getImportKeyword_3()); \r\n }\r\n match(input,47,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getImportKeyword_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 5 :\r\n // InternalDroneScript.g:3283:2: ( 'extension' )\r\n {\r\n // InternalDroneScript.g:3283:2: ( 'extension' )\r\n // InternalDroneScript.g:3284:3: 'extension'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getExtensionKeyword_4()); \r\n }\r\n match(input,48,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getExtensionKeyword_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__MemberNameAssignment_1_0_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19579:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:19580:2: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:19580:2: ( ruleValidID )\r\n // InternalDroneScript.g:19581:3: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public int getRuleID()\n {\n return schema.getRuleID();\n }", "public final ANTLRv3Parser.id_return id() throws RecognitionException {\r\n ANTLRv3Parser.id_return retval = new ANTLRv3Parser.id_return();\r\n retval.start = input.LT(1);\r\n\r\n\r\n CommonTree root_0 = null;\r\n\r\n Token TOKEN_REF198=null;\r\n Token RULE_REF199=null;\r\n\r\n CommonTree TOKEN_REF198_tree=null;\r\n CommonTree RULE_REF199_tree=null;\r\n RewriteRuleTokenStream stream_RULE_REF=new RewriteRuleTokenStream(adaptor,\"token RULE_REF\");\r\n RewriteRuleTokenStream stream_TOKEN_REF=new RewriteRuleTokenStream(adaptor,\"token TOKEN_REF\");\r\n\r\n try {\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:464:4: ( TOKEN_REF -> ID[$TOKEN_REF] | RULE_REF -> ID[$RULE_REF] )\r\n int alt85=2;\r\n int LA85_0 = input.LA(1);\r\n\r\n if ( (LA85_0==TOKEN_REF) ) {\r\n alt85=1;\r\n }\r\n else if ( (LA85_0==RULE_REF) ) {\r\n alt85=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return retval;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 85, 0, input);\r\n\r\n throw nvae;\r\n\r\n }\r\n switch (alt85) {\r\n case 1 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:464:6: TOKEN_REF\r\n {\r\n TOKEN_REF198=(Token)match(input,TOKEN_REF,FOLLOW_TOKEN_REF_in_id3241); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_TOKEN_REF.add(TOKEN_REF198);\r\n\r\n\r\n // AST REWRITE\r\n // elements: \r\n // token labels: \r\n // rule labels: retval\r\n // token list labels: \r\n // rule list labels: \r\n // wildcard labels: \r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = root_0;\r\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\r\n\r\n root_0 = (CommonTree)adaptor.nil();\r\n // 464:16: -> ID[$TOKEN_REF]\r\n {\r\n adaptor.addChild(root_0, \r\n (CommonTree)adaptor.create(ID, TOKEN_REF198)\r\n );\r\n\r\n }\r\n\r\n\r\n retval.tree = root_0;\r\n }\r\n\r\n }\r\n break;\r\n case 2 :\r\n // C:/dev/antlr.github/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/ANTLRv3.g:465:4: RULE_REF\r\n {\r\n RULE_REF199=(Token)match(input,RULE_REF,FOLLOW_RULE_REF_in_id3251); if (state.failed) return retval; \r\n if ( state.backtracking==0 ) stream_RULE_REF.add(RULE_REF199);\r\n\r\n\r\n // AST REWRITE\r\n // elements: \r\n // token labels: \r\n // rule labels: retval\r\n // token list labels: \r\n // rule list labels: \r\n // wildcard labels: \r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = root_0;\r\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\r\n\r\n root_0 = (CommonTree)adaptor.nil();\r\n // 465:14: -> ID[$RULE_REF]\r\n {\r\n adaptor.addChild(root_0, \r\n (CommonTree)adaptor.create(ID, RULE_REF199)\r\n );\r\n\r\n }\r\n\r\n\r\n retval.tree = root_0;\r\n }\r\n\r\n }\r\n break;\r\n\r\n }\r\n retval.stop = input.LT(-1);\r\n\r\n\r\n if ( state.backtracking==0 ) {\r\n\r\n retval.tree = (CommonTree)adaptor.rulePostProcessing(root_0);\r\n adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n \tretval.tree = (CommonTree)adaptor.errorNode(input, retval.start, input.LT(-1), re);\r\n\r\n }\r\n\r\n finally {\r\n \t// do for sure before leaving\r\n }\r\n return retval;\r\n }", "public void setRuleID(Long RuleID) {\n this.RuleID = RuleID;\n }", "public String getRuleId() {\r\n return (String) getAttributeInternal(RULEID);\r\n }", "public final AntlrDatatypeRuleToken ruleDCID() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_ID_0=null;\n Token kw=null;\n Token this_ID_2=null;\n\n\n \tenterRule();\n\n try {\n // InternalSafetyParser.g:9876:2: ( ( (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID ) )\n // InternalSafetyParser.g:9877:2: ( (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID )\n {\n // InternalSafetyParser.g:9877:2: ( (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID )\n // InternalSafetyParser.g:9878:3: (this_ID_0= RULE_ID kw= ColonColon )* this_ID_2= RULE_ID\n {\n // InternalSafetyParser.g:9878:3: (this_ID_0= RULE_ID kw= ColonColon )*\n loop123:\n do {\n int alt123=2;\n int LA123_0 = input.LA(1);\n\n if ( (LA123_0==RULE_ID) ) {\n int LA123_1 = input.LA(2);\n\n if ( (LA123_1==ColonColon) ) {\n alt123=1;\n }\n\n\n }\n\n\n switch (alt123) {\n \tcase 1 :\n \t // InternalSafetyParser.g:9879:4: this_ID_0= RULE_ID kw= ColonColon\n \t {\n \t this_ID_0=(Token)match(input,RULE_ID,FollowSets000.FOLLOW_102); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tcurrent.merge(this_ID_0);\n \t \t\t\t\n \t }\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tnewLeafNode(this_ID_0, grammarAccess.getDCIDAccess().getIDTerminalRuleCall_0_0());\n \t \t\t\t\n \t }\n \t kw=(Token)match(input,ColonColon,FollowSets000.FOLLOW_4); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\t\t\tcurrent.merge(kw);\n \t \t\t\t\tnewLeafNode(kw, grammarAccess.getDCIDAccess().getColonColonKeyword_0_1());\n \t \t\t\t\n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop123;\n }\n } while (true);\n\n this_ID_2=(Token)match(input,RULE_ID,FollowSets000.FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent.merge(this_ID_2);\n \t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(this_ID_2, grammarAccess.getDCIDAccess().getIDTerminalRuleCall_1());\n \t\t\n }\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final AntlrDatatypeRuleToken ruleID() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token this_SIMPLE_ID_0=null;\n Token this_ESCAPED_ID_1=null;\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:10014:2: ( (this_SIMPLE_ID_0= RULE_SIMPLE_ID | this_ESCAPED_ID_1= RULE_ESCAPED_ID ) )\n // InternalMyDsl.g:10015:2: (this_SIMPLE_ID_0= RULE_SIMPLE_ID | this_ESCAPED_ID_1= RULE_ESCAPED_ID )\n {\n // InternalMyDsl.g:10015:2: (this_SIMPLE_ID_0= RULE_SIMPLE_ID | this_ESCAPED_ID_1= RULE_ESCAPED_ID )\n int alt148=2;\n int LA148_0 = input.LA(1);\n\n if ( (LA148_0==RULE_SIMPLE_ID) ) {\n alt148=1;\n }\n else if ( (LA148_0==RULE_ESCAPED_ID) ) {\n alt148=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 148, 0, input);\n\n throw nvae;\n }\n switch (alt148) {\n case 1 :\n // InternalMyDsl.g:10016:3: this_SIMPLE_ID_0= RULE_SIMPLE_ID\n {\n this_SIMPLE_ID_0=(Token)match(input,RULE_SIMPLE_ID,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent.merge(this_SIMPLE_ID_0);\n \t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(this_SIMPLE_ID_0, grammarAccess.getIDAccess().getSIMPLE_IDTerminalRuleCall_0());\n \t\t\n }\n\n }\n break;\n case 2 :\n // InternalMyDsl.g:10024:3: this_ESCAPED_ID_1= RULE_ESCAPED_ID\n {\n this_ESCAPED_ID_1=(Token)match(input,RULE_ESCAPED_ID,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tcurrent.merge(this_ESCAPED_ID_1);\n \t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(this_ESCAPED_ID_1, grammarAccess.getIDAccess().getESCAPED_IDTerminalRuleCall_1());\n \t\t\n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public void setRuleId(String ruleId) {\r\n\t\t\tthis.ruleId = ruleId;\r\n\t\t}", "public Rule idExprReq()\n \t{\n \t\treturn firstOf(field(), call());\n \t}", "private boolean CheckID(String id) {\n\t\tif ((!id.matches(\"([0-9])+\") || id.length() != 9) && (!id.matches(\"S([0-9])+\") || id.length() != 10)) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t}" ]
[ "0.7507423", "0.72451794", "0.7012568", "0.6971704", "0.67367953", "0.66772026", "0.66596353", "0.62273383", "0.6105308", "0.6076577", "0.6073185", "0.60526127", "0.6037508", "0.60336095", "0.60245615", "0.60179335", "0.60038835", "0.5997361", "0.5969141", "0.5954158", "0.59476507", "0.5932918", "0.5905421", "0.589475", "0.588384", "0.5878481", "0.5792162", "0.57912356", "0.5783946", "0.5772765", "0.57285756", "0.5703703", "0.5682917", "0.5682917", "0.56759965", "0.5621804", "0.5594405", "0.5560764", "0.5560438", "0.55479395", "0.5542762", "0.54967743", "0.5492143", "0.5452422", "0.54289544", "0.5428325", "0.5383365", "0.53826773", "0.5353749", "0.5317143", "0.53144026", "0.5290496", "0.52836865", "0.5263274", "0.52356637", "0.5203724", "0.5189315", "0.51866996", "0.5186134", "0.5186134", "0.5186134", "0.5186134", "0.5180098", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.517164", "0.51675284", "0.51568365", "0.515105", "0.51427037", "0.5137618", "0.5121575", "0.5120359", "0.5113243", "0.510769", "0.5076663", "0.50574106", "0.5052216", "0.5050878", "0.5050016", "0.50480247", "0.50143635", "0.50112367", "0.5010319", "0.49974003", "0.49924377", "0.49849027", "0.49810013", "0.49671343" ]
0.745812
1
$ANTLR end "ruleValidID" $ANTLR start "entryRuleXImportDeclaration" InternalCsv.g:604:1: entryRuleXImportDeclaration : ruleXImportDeclaration EOF ;
public final void entryRuleXImportDeclaration() throws RecognitionException { try { // InternalCsv.g:605:1: ( ruleXImportDeclaration EOF ) // InternalCsv.g:606:1: ruleXImportDeclaration EOF { if ( state.backtracking==0 ) { before(grammarAccess.getXImportDeclarationRule()); } pushFollow(FOLLOW_1); ruleXImportDeclaration(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getXImportDeclarationRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleXImportDeclaration() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2320:1: ( ruleXImportDeclaration EOF )\r\n // InternalDroneScript.g:2321:1: ruleXImportDeclaration EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXImportDeclaration();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__MemberNameAssignment_1_0_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19579:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:19580:2: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:19580:2: ( ruleValidID )\r\n // InternalDroneScript.g:19581:3: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleValidID() throws RecognitionException {\n try {\n // InternalCsv.g:580:1: ( ruleValidID EOF )\n // InternalCsv.g:581:1: ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_1);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getValidIDRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__MemberNameAssignment_1_0_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4221:1: ( ( ruleValidID ) )\n // InternalCsv.g:4222:2: ( ruleValidID )\n {\n // InternalCsv.g:4222:2: ( ruleValidID )\n // InternalCsv.g:4223:3: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXImportDeclaration() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2332:2: ( ( ( rule__XImportDeclaration__Group__0 ) ) )\r\n // InternalDroneScript.g:2333:2: ( ( rule__XImportDeclaration__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2333:2: ( ( rule__XImportDeclaration__Group__0 ) )\r\n // InternalDroneScript.g:2334:3: ( rule__XImportDeclaration__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2335:3: ( rule__XImportDeclaration__Group__0 )\r\n // InternalDroneScript.g:2335:4: rule__XImportDeclaration__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3507:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\r\n int alt43=3;\r\n alt43 = dfa43.predict(input);\r\n switch (alt43) {\r\n case 1 :\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n // InternalDroneScript.g:3509:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n // InternalDroneScript.g:3510:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n // InternalDroneScript.g:3510:4: rule__XImportDeclaration__Group_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n {\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n // InternalDroneScript.g:3515:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n // InternalDroneScript.g:3516:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n // InternalDroneScript.g:3516:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n {\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n // InternalDroneScript.g:3521:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n // InternalDroneScript.g:3522:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n // InternalDroneScript.g:3522:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXImportDeclaration() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:617:2: ( ( ( rule__XImportDeclaration__Group__0 ) ) )\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n {\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n // InternalCsv.g:619:3: ( rule__XImportDeclaration__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n // InternalCsv.g:620:3: ( rule__XImportDeclaration__Group__0 )\n // InternalCsv.g:620:4: rule__XImportDeclaration__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleImportDecl() throws RecognitionException {\r\n try {\r\n // InternalGo.g:3030:1: ( ruleImportDecl EOF )\r\n // InternalGo.g:3031:1: ruleImportDecl EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleImportDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleXImportSection() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2288:1: ( ruleXImportSection EOF )\r\n // InternalDroneScript.g:2289:1: ruleXImportSection EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportSectionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXImportSection();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportSectionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "private String importDeclaration()\r\n {\r\n String handle;\r\n\r\n matchKeyword(Keyword.IMPORTSY);\r\n handle = nextToken.string;\r\n matchKeyword(Keyword.IDENTSY);\r\n handle = qualifiedImport(handle);\r\n matchKeyword(Keyword.SEMICOLONSY);\r\n\r\n return handle;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3610:1: ( ( ruleValidID ) )\n // InternalCsv.g:3611:1: ( ruleValidID )\n {\n // InternalCsv.g:3611:1: ( ruleValidID )\n // InternalCsv.g:3612:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMappingDsl.g:1797:47: (iv_ruleImport= ruleImport EOF )\n // InternalMappingDsl.g:1798:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16750:1: ( ( 'import' ) )\r\n // InternalDroneScript.g:16751:1: ( 'import' )\r\n {\r\n // InternalDroneScript.g:16751:1: ( 'import' )\r\n // InternalDroneScript.g:16752:2: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \r\n }\r\n match(input,47,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private ParseTree parseImportSpecifier() {\n SourcePosition start = getTreeStartLocation();\n IdentifierToken importedName = eatIdOrKeywordAsId();\n IdentifierToken destinationName = null;\n if (peekPredefinedString(PredefinedName.AS)) {\n eatPredefinedString(PredefinedName.AS);\n destinationName = eatId();\n } else if (isKeyword(importedName.value)) {\n reportExpectedError(null, PredefinedName.AS);\n }\n return new ImportSpecifierTree(getTreeLocation(start), importedName, destinationName);\n }", "public final void rule__XImportDeclaration__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3421:1: ( ( 'import' ) )\n // InternalCsv.g:3422:1: ( 'import' )\n {\n // InternalCsv.g:3422:1: ( 'import' )\n // InternalCsv.g:3423:2: 'import'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n match(input,39,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16939:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n // InternalDroneScript.g:16941:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMyDsl.g:127:47: (iv_ruleImport= ruleImport EOF )\n // InternalMyDsl.g:128:2: iv_ruleImport= ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleImport; \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleValidID() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2103:1: ( ruleValidID EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2104:1: ruleValidID EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDRule()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_entryRuleValidID4422);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleValidID4429); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleValidID() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2263:1: ( ruleValidID EOF )\r\n // InternalDroneScript.g:2264:1: ruleValidID EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getValidIDRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getValidIDRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:229:1: ( ruleImport EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:230:1: ruleImport EOF\n {\n before(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport421);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getImportRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:103:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:105:1: ( rule__Import__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:1: ( rule__Import__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport160);\n rule__Import__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportSection__ImportDeclarationsAssignment() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19488:1: ( ( ruleXImportDeclaration ) )\r\n // InternalDroneScript.g:19489:2: ( ruleXImportDeclaration )\r\n {\r\n // InternalDroneScript.g:19489:2: ( ruleXImportDeclaration )\r\n // InternalDroneScript.g:19490:3: ruleXImportDeclaration\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportSectionAccess().getImportDeclarationsXImportDeclarationParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXImportDeclaration();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportSectionAccess().getImportDeclarationsXImportDeclarationParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:287:2: (iv_ruleImport= ruleImport EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:288:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport625);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport635); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public void addImport(java.lang.String ximport)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.SimpleValue target = null;\n target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(IMPORT$0);\n target.setStringValue(ximport);\n }\n }", "@Override\n public String visit(ImportDeclaration n, Object arg) {\n return null;\n }", "ImportDeclaration createImportDeclaration();", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:140:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) ) )\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n {\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n // InternalMyDsl.g:142:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n {\n otherlv_0=(Token)match(input,19,FOLLOW_5); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n }\n // InternalMyDsl.g:146:3: ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n {\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n // InternalMyDsl.g:148:5: lv_importURI_1_0= RULE_IMPORT_URI\n {\n lv_importURI_1_0=(Token)match(input,RULE_IMPORT_URI,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURIIMPORT_URITerminalRuleCall_1_0());\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.xtext.example.mydsl.MyDsl.IMPORT_URI\");\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject ruleImportedType() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:3271:2: ( ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) ) )\n // InternalMappingDsl.g:3272:2: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) )\n {\n // InternalMappingDsl.g:3272:2: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) )\n // InternalMappingDsl.g:3273:3: ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) )\n {\n // InternalMappingDsl.g:3273:3: ( (otherlv_0= RULE_ID ) )\n // InternalMappingDsl.g:3274:4: (otherlv_0= RULE_ID )\n {\n // InternalMappingDsl.g:3274:4: (otherlv_0= RULE_ID )\n // InternalMappingDsl.g:3275:5: otherlv_0= RULE_ID\n {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportedTypeRule());\n \t\t\t\t\t}\n \t\t\t\t\n otherlv_0=(Token)match(input,RULE_ID,FOLLOW_32); \n\n \t\t\t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportedTypeAccess().getImportImportCrossReference_0_0());\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_1=(Token)match(input,29,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_1, grammarAccess.getImportedTypeAccess().getColonColonKeyword_1());\n \t\t\n // InternalMappingDsl.g:3290:3: ( ( ruleQualifiedName ) )\n // InternalMappingDsl.g:3291:4: ( ruleQualifiedName )\n {\n // InternalMappingDsl.g:3291:4: ( ruleQualifiedName )\n // InternalMappingDsl.g:3292:5: ruleQualifiedName\n {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportedTypeRule());\n \t\t\t\t\t}\n \t\t\t\t\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportedTypeAccess().getTypeTypeCrossReference_2_0());\n \t\t\t\t\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n\n\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic Void visit(ClauseImport clause, Void ctx) {\n\t\treturn null;\n\t}", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16803:1: ( ( ( ';' )? ) )\r\n // InternalDroneScript.g:16804:1: ( ( ';' )? )\r\n {\r\n // InternalDroneScript.g:16804:1: ( ( ';' )? )\r\n // InternalDroneScript.g:16805:2: ( ';' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \r\n }\r\n // InternalDroneScript.g:16806:2: ( ';' )?\r\n int alt128=2;\r\n int LA128_0 = input.LA(1);\r\n\r\n if ( (LA128_0==75) ) {\r\n alt128=1;\r\n }\r\n switch (alt128) {\r\n case 1 :\r\n // InternalDroneScript.g:16806:3: ';'\r\n {\r\n match(input,75,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "ExpRun importRun(PipelineJob job, XarSource source) throws SQLException, PipelineJobException, ValidationException;", "public final void ruleXImportSection() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2300:2: ( ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) ) )\r\n // InternalDroneScript.g:2301:2: ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) )\r\n {\r\n // InternalDroneScript.g:2301:2: ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) )\r\n // InternalDroneScript.g:2302:3: ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* )\r\n {\r\n // InternalDroneScript.g:2302:3: ( ( rule__XImportSection__ImportDeclarationsAssignment ) )\r\n // InternalDroneScript.g:2303:4: ( rule__XImportSection__ImportDeclarationsAssignment )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); \r\n }\r\n // InternalDroneScript.g:2304:4: ( rule__XImportSection__ImportDeclarationsAssignment )\r\n // InternalDroneScript.g:2304:5: rule__XImportSection__ImportDeclarationsAssignment\r\n {\r\n pushFollow(FOLLOW_3);\r\n rule__XImportSection__ImportDeclarationsAssignment();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); \r\n }\r\n\r\n }\r\n\r\n // InternalDroneScript.g:2307:3: ( ( rule__XImportSection__ImportDeclarationsAssignment )* )\r\n // InternalDroneScript.g:2308:4: ( rule__XImportSection__ImportDeclarationsAssignment )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); \r\n }\r\n // InternalDroneScript.g:2309:4: ( rule__XImportSection__ImportDeclarationsAssignment )*\r\n loop1:\r\n do {\r\n int alt1=2;\r\n int LA1_0 = input.LA(1);\r\n\r\n if ( (LA1_0==47) ) {\r\n alt1=1;\r\n }\r\n\r\n\r\n switch (alt1) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:2309:5: rule__XImportSection__ImportDeclarationsAssignment\r\n \t {\r\n \t pushFollow(FOLLOW_3);\r\n \t rule__XImportSection__ImportDeclarationsAssignment();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop1;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Compilation_initial__ImportdeclAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15695:1: ( ( ruleImportDecl ) )\r\n // InternalGo.g:15696:2: ( ruleImportDecl )\r\n {\r\n // InternalGo.g:15696:2: ( ruleImportDecl )\r\n // InternalGo.g:15697:3: ruleImportDecl\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getCompilation_initialAccess().getImportdeclImportDeclParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleImportDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getCompilation_initialAccess().getImportdeclImportDeclParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final String entryRuleValidID() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleValidID = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3072:2: (iv_ruleValidID= ruleValidID EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3073:2: iv_ruleValidID= ruleValidID EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getValidIDRule()); \n }\n pushFollow(FOLLOW_ruleValidID_in_entryRuleValidID7330);\n iv_ruleValidID=ruleValidID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleValidID.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleValidID7341); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:241:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:243:1: ( rule__Import__Group__0 )\n {\n before(grammarAccess.getImportAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:1: ( rule__Import__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport454);\n rule__Import__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getImportAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_2=null;\n Token lv_importURI_3_0=null;\n Token otherlv_4=null;\n Token lv_name_5_0=null;\n Enumerator lv_importType_1_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:1810:2: ( (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) ) )\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n {\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n // InternalMappingDsl.g:1812:3: otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) )\n {\n otherlv_0=(Token)match(input,35,FOLLOW_45); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n // InternalMappingDsl.g:1816:3: ( (lv_importType_1_0= ruleImportType ) )\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n {\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n // InternalMappingDsl.g:1818:5: lv_importType_1_0= ruleImportType\n {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportAccess().getImportTypeImportTypeEnumRuleCall_1_0());\n \t\t\t\t\n pushFollow(FOLLOW_46);\n lv_importType_1_0=ruleImportType();\n\n state._fsp--;\n\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importType\",\n \t\t\t\t\t\tlv_importType_1_0,\n \t\t\t\t\t\t\"de.fhdo.ddmm.technology.mappingdsl.MappingDsl.ImportType\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_2=(Token)match(input,36,FOLLOW_41); \n\n \t\t\tnewLeafNode(otherlv_2, grammarAccess.getImportAccess().getFromKeyword_2());\n \t\t\n // InternalMappingDsl.g:1839:3: ( (lv_importURI_3_0= RULE_STRING ) )\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n {\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n // InternalMappingDsl.g:1841:5: lv_importURI_3_0= RULE_STRING\n {\n lv_importURI_3_0=(Token)match(input,RULE_STRING,FOLLOW_47); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_3_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_3_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_3_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_4=(Token)match(input,37,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_4, grammarAccess.getImportAccess().getAsKeyword_4());\n \t\t\n // InternalMappingDsl.g:1861:3: ( (lv_name_5_0= RULE_ID ) )\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n {\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n // InternalMappingDsl.g:1863:5: lv_name_5_0= RULE_ID\n {\n lv_name_5_0=(Token)match(input,RULE_ID,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_name_5_0, grammarAccess.getImportAccess().getNameIDTerminalRuleCall_5_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"name\",\n \t\t\t\t\t\tlv_name_5_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.ID\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public void visit(ImportDeclaration n) {\n n.f0.accept(this);\n n.f1.accept(this);\n n.f2.accept(this);\n n.f3.accept(this);\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16777:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n // InternalDroneScript.g:16779:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:16780:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n // InternalDroneScript.g:16780:3: rule__XImportDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4183:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n {\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n // InternalCsv.g:4185:3: ( ruleQualifiedNameInStaticImport )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n // InternalCsv.g:4186:3: ( ruleQualifiedNameInStaticImport )\n // InternalCsv.g:4187:4: ruleQualifiedNameInStaticImport\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:130:2: ( ( ( rule__Import__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:132:1: ( rule__Import__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:1: ( rule__Import__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:2: rule__Import__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport220);\r\n rule__Import__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3312:1: ( ( ruleValidID ) )\n // InternalCsv.g:3313:1: ( ruleValidID )\n {\n // InternalCsv.g:3313:1: ( ruleValidID )\n // InternalCsv.g:3314:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImportDecl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3042:2: ( ( ( rule__ImportDecl__Group__0 ) ) )\r\n // InternalGo.g:3043:2: ( ( rule__ImportDecl__Group__0 ) )\r\n {\r\n // InternalGo.g:3043:2: ( ( rule__ImportDecl__Group__0 ) )\r\n // InternalGo.g:3044:3: ( rule__ImportDecl__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getGroup()); \r\n }\r\n // InternalGo.g:3045:3: ( rule__ImportDecl__Group__0 )\r\n // InternalGo.g:3045:4: rule__ImportDecl__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3517:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\n // InternalCsv.g:3518:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3490:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\n // InternalCsv.g:3491:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3556:1: ( ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) ) )\n // InternalCsv.g:3557:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\n {\n // InternalCsv.g:3557:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\n // InternalCsv.g:3558:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \n }\n // InternalCsv.g:3559:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\n // InternalCsv.g:3559:3: rule__XImportDeclaration__ImportedTypeAssignment_1_0_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_0_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16819:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\r\n // InternalDroneScript.g:16820:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\r\n {\r\n pushFollow(FOLLOW_114);\r\n rule__XImportDeclaration__Group_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3448:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n {\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n // InternalCsv.g:3450:2: ( rule__XImportDeclaration__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n // InternalCsv.g:3451:2: ( rule__XImportDeclaration__Alternatives_1 )\n // InternalCsv.g:3451:3: rule__XImportDeclaration__Alternatives_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleImportNamespace() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleImportNamespace = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5298:2: (iv_ruleImportNamespace= ruleImportNamespace EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5299:2: iv_ruleImportNamespace= ruleImportNamespace EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getImportNamespaceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImportNamespace_in_entryRuleImportNamespace12240);\r\n iv_ruleImportNamespace=ruleImportNamespace();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleImportNamespace; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImportNamespace12250); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16846:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\r\n // InternalDroneScript.g:16847:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\r\n {\r\n pushFollow(FOLLOW_114);\r\n rule__XImportDeclaration__Group_1_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3409:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\n // InternalCsv.g:3410:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\n {\n pushFollow(FOLLOW_40);\n rule__XImportDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n enterRule(); \n \n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:298:28: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_15_in_ruleImport672); \n\n \tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:303:1: ( (lv_importURI_1_0= RULE_STRING ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:305:3: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_RULE_STRING_in_ruleImport689); \n\n \t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_1_0()); \n \t\t\n\n \t if (current==null) {\n \t current = createModelElement(grammarAccess.getImportRule());\n \t }\n \t\tsetWithLastConsumed(\n \t\t\tcurrent, \n \t\t\t\"importURI\",\n \t\tlv_importURI_1_0, \n \t\t\"STRING\");\n \t \n\n }\n\n\n }\n\n\n }\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16911:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n {\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n // InternalDroneScript.g:16913:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n // InternalDroneScript.g:16914:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n // InternalDroneScript.g:16914:3: rule__XImportDeclaration__Alternatives_1_0_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1_0_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleImportSpec() throws RecognitionException {\r\n try {\r\n // InternalGo.g:3055:1: ( ruleImportSpec EOF )\r\n // InternalGo.g:3056:1: ruleImportSpec EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleImportSpec();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "private static void validateImportString(String importString)\r\n {\r\n String tokens[] = importString.split(\"\\\\.\");\r\n for (int i=0; i<tokens.length; i++)\r\n {\r\n String token = tokens[i];\r\n if (!isValidJavaIdentifier(token) &&\r\n !(i == tokens.length-1 && token.equals(\"*\")))\r\n {\r\n throw new IllegalArgumentException(\r\n \"Invalid import string: \"+importString);\r\n }\r\n }\r\n }", "public final void importDeclaration() throws RecognitionException {\n int importDeclaration_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"importDeclaration\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(189, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 3) ) { return ; }\n // Java.g:190:5: ( 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';' )\n dbg.enterAlt(1);\n\n // Java.g:190:9: 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';'\n {\n dbg.location(190,9);\n match(input,27,FOLLOW_27_in_importDeclaration154); if (state.failed) return ;\n dbg.location(190,18);\n // Java.g:190:18: ( 'static' )?\n int alt9=2;\n try { dbg.enterSubRule(9);\n try { dbg.enterDecision(9);\n\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==28) ) {\n alt9=1;\n }\n } finally {dbg.exitDecision(9);}\n\n switch (alt9) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:0:0: 'static'\n {\n dbg.location(190,18);\n match(input,28,FOLLOW_28_in_importDeclaration156); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(9);}\n\n dbg.location(190,28);\n pushFollow(FOLLOW_qualifiedName_in_importDeclaration159);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(190,42);\n // Java.g:190:42: ( '.' '*' )?\n int alt10=2;\n try { dbg.enterSubRule(10);\n try { dbg.enterDecision(10);\n\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==29) ) {\n alt10=1;\n }\n } finally {dbg.exitDecision(10);}\n\n switch (alt10) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:190:43: '.' '*'\n {\n dbg.location(190,43);\n match(input,29,FOLLOW_29_in_importDeclaration162); if (state.failed) return ;\n dbg.location(190,47);\n match(input,30,FOLLOW_30_in_importDeclaration164); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(10);}\n\n dbg.location(190,53);\n match(input,26,FOLLOW_26_in_importDeclaration168); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 3, importDeclaration_StartIndex); }\n }\n dbg.location(191, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"importDeclaration\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3474:1: ( ( ( ';' )? ) )\n // InternalCsv.g:3475:1: ( ( ';' )? )\n {\n // InternalCsv.g:3475:1: ( ( ';' )? )\n // InternalCsv.g:3476:2: ( ';' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n // InternalCsv.g:3477:2: ( ';' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==14) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // InternalCsv.g:3477:3: ';'\n {\n match(input,14,FOLLOW_2); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void xsetImport(org.apache.geronimo.deployment.xbeans.ImportType ximport)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.geronimo.deployment.xbeans.ImportType target = null;\n target = (org.apache.geronimo.deployment.xbeans.ImportType)get_store().find_element_user(IMPORT$0, 0);\n if (target == null)\n {\n target = (org.apache.geronimo.deployment.xbeans.ImportType)get_store().add_element_user(IMPORT$0);\n }\n target.set(ximport);\n }\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16738:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\r\n // InternalDroneScript.g:16739:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\r\n {\r\n pushFollow(FOLLOW_113);\r\n rule__XImportDeclaration__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleValidID() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:592:2: ( ( RULE_ID ) )\n // InternalCsv.g:593:2: ( RULE_ID )\n {\n // InternalCsv.g:593:2: ( RULE_ID )\n // InternalCsv.g:594:3: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getValidIDAccess().getIDTerminalRuleCall()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3436:1: ( rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2 )\n // InternalCsv.g:3437:2: rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2\n {\n pushFollow(FOLLOW_6);\n rule__XImportDeclaration__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==38) ) {\n alt10=1;\n }\n else if ( (LA10_0==RULE_ID) ) {\n alt10=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 10, 0, input);\n\n throw nvae;\n }\n switch (alt10) {\n case 1 :\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n {\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n {\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19541:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n {\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n // InternalDroneScript.g:19543:3: ( ruleQualifiedNameInStaticImport )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n // InternalDroneScript.g:19544:3: ( ruleQualifiedNameInStaticImport )\r\n // InternalDroneScript.g:19545:4: ruleQualifiedNameInStaticImport\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleXVariableDeclaration() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1330:1: ( ruleXVariableDeclaration EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1331:1: ruleXVariableDeclaration EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationRule()); \r\n }\r\n pushFollow(FOLLOW_ruleXVariableDeclaration_in_entryRuleXVariableDeclaration2774);\r\n ruleXVariableDeclaration();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleXVariableDeclaration2781); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16873:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\r\n // InternalDroneScript.g:16874:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\r\n {\r\n pushFollow(FOLLOW_115);\r\n rule__XImportDeclaration__Group_1_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void insertImport(int i, java.lang.String ximport)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.SimpleValue target = \n (org.apache.xmlbeans.SimpleValue)get_store().insert_element_user(IMPORT$0, i);\n target.setStringValue(ximport);\n }\n }", "public static boolean SchemaImport(PsiBuilder b, int l) {\n if (!recursion_guard_(b, l, \"SchemaImport\")) return false;\n if (!nextTokenIs(b, K_IMPORT)) return false;\n boolean r, p;\n Marker m = enter_section_(b, l, _NONE_, SCHEMA_IMPORT, null);\n r = consumeTokens(b, 2, K_IMPORT, K_SCHEMA);\n p = r; // pin = 2\n r = r && report_error_(b, SchemaImport_2(b, l + 1));\n r = p && report_error_(b, URILiteral(b, l + 1)) && r;\n r = p && report_error_(b, SchemaImport_4(b, l + 1)) && r;\n r = p && Separator(b, l + 1) && r;\n exit_section_(b, l, m, r, p, null);\n return r || p;\n }", "public final void entryRuleXExpression() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:130:1: ( ruleXExpression EOF )\r\n // InternalDroneScript.g:131:1: ruleXExpression EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXExpressionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXExpression();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXExpressionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleXNumberLiteral() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1730:1: ( ruleXNumberLiteral EOF )\r\n // InternalDroneScript.g:1731:1: ruleXNumberLiteral EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXNumberLiteralRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXNumberLiteral();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXNumberLiteralRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15102:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:15103:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:15103:1: ( ruleValidID )\r\n // InternalDroneScript.g:15104:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2605:1: ( ( ( rule__Import__ImportedNamespaceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2606:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2606:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2607:1: ( rule__Import__ImportedNamespaceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2608:1: ( rule__Import__ImportedNamespaceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2608:2: rule__Import__ImportedNamespaceAssignment_1\n {\n pushFollow(FOLLOW_rule__Import__ImportedNamespaceAssignment_1_in_rule__Import__Group__1__Impl5605);\n rule__Import__ImportedNamespaceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleXListLiteral() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1155:1: ( ruleXListLiteral EOF )\r\n // InternalDroneScript.g:1156:1: ruleXListLiteral EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXListLiteralRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXListLiteral();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXListLiteralRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16885:1: ( ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) ) )\r\n // InternalDroneScript.g:16886:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\r\n {\r\n // InternalDroneScript.g:16886:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\r\n // InternalDroneScript.g:16887:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \r\n }\r\n // InternalDroneScript.g:16888:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\r\n // InternalDroneScript.g:16888:3: rule__XImportDeclaration__ImportedTypeAssignment_1_0_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_0_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16765:1: ( rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2 )\r\n // InternalDroneScript.g:16766:2: rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2\r\n {\r\n pushFollow(FOLLOW_72);\r\n rule__XImportDeclaration__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleImportNamespace() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_0=null;\r\n AntlrDatatypeRuleToken lv_importedNamespace_1_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5309:28: ( (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:3: otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n {\r\n otherlv_0=(Token)match(input,78,FOLLOW_78_in_ruleImportNamespace12287); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_0, grammarAccess.getImportNamespaceAccess().getImportKeyword_0());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5314:1: ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5316:3: lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getImportNamespaceAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_ruleImportNamespace12308);\r\n lv_importedNamespace_1_0=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getImportNamespaceRule());\r\n \t }\r\n \t\tset(\r\n \t\t\tcurrent, \r\n \t\t\t\"importedNamespace\",\r\n \t\tlv_importedNamespace_1_0, \r\n \t\t\"QualifiedNameWithWildcard\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void entryRuleImportPath() throws RecognitionException {\r\n try {\r\n // InternalGo.g:3080:1: ( ruleImportPath EOF )\r\n // InternalGo.g:3081:1: ruleImportPath EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportPathRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleImportPath();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportPathRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleXLiteral() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:966:1: ( ruleXLiteral EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:967:1: ruleXLiteral EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXLiteralRule()); \r\n }\r\n pushFollow(FOLLOW_ruleXLiteral_in_entryRuleXLiteral1994);\r\n ruleXLiteral();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXLiteralRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleXLiteral2001); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void mRULE_ID() throws RecognitionException {\n try {\n int _type = RULE_ID;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:9: ( ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )* )\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:11: ( '^' )? ( 'a' .. 'z' | 'A' .. 'Z' | '_' ) ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n {\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:11: ( '^' )?\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0=='^') ) {\n alt1=1;\n }\n switch (alt1) {\n case 1 :\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:11: '^'\n {\n match('^'); \n\n }\n break;\n\n }\n\n if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n input.consume();\n\n }\n else {\n MismatchedSetException mse = new MismatchedSetException(null,input);\n recover(mse);\n throw mse;}\n\n // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:2134:40: ( 'a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9' )*\n loop2:\n do {\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( ((LA2_0>='0' && LA2_0<='9')||(LA2_0>='A' && LA2_0<='Z')||LA2_0=='_'||(LA2_0>='a' && LA2_0<='z')) ) {\n alt2=1;\n }\n\n\n switch (alt2) {\n \tcase 1 :\n \t // ../org.xtext.example.mydslsample/src-gen/org/xtext/example/mydsl/parser/antlr/internal/InternalMyDslSample.g:\n \t {\n \t if ( (input.LA(1)>='0' && input.LA(1)<='9')||(input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {\n \t input.consume();\n\n \t }\n \t else {\n \t MismatchedSetException mse = new MismatchedSetException(null,input);\n \t recover(mse);\n \t throw mse;}\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop2;\n }\n } while (true);\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "public final void rule__XImportDeclaration__Group_1_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3529:1: ( ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? ) )\n // InternalCsv.g:3530:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\n {\n // InternalCsv.g:3530:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\n // InternalCsv.g:3531:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \n }\n // InternalCsv.g:3532:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\n int alt28=2;\n int LA28_0 = input.LA(1);\n\n if ( (LA28_0==42) ) {\n alt28=1;\n }\n switch (alt28) {\n case 1 :\n // InternalCsv.g:3532:3: rule__XImportDeclaration__ExtensionAssignment_1_0_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ExtensionAssignment_1_0_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject entryRuleTypeImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleTypeImport = null;\n\n\n try {\n // InternalNgt.g:1332:51: (iv_ruleTypeImport= ruleTypeImport EOF )\n // InternalNgt.g:1333:2: iv_ruleTypeImport= ruleTypeImport EOF\n {\n newCompositeNode(grammarAccess.getTypeImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleTypeImport=ruleTypeImport();\n\n state._fsp--;\n\n current =iv_ruleTypeImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleXVariableDeclaration() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:175:1: ( ruleXVariableDeclaration EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:176:1: ruleXVariableDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXVariableDeclarationRule()); \n }\n pushFollow(FOLLOW_ruleXVariableDeclaration_in_entryRuleXVariableDeclaration307);\n ruleXVariableDeclaration();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXVariableDeclarationRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleXVariableDeclaration314); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3502:1: ( ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) ) )\n // InternalCsv.g:3503:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\n {\n // InternalCsv.g:3503:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\n // InternalCsv.g:3504:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \n }\n // InternalCsv.g:3505:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\n // InternalCsv.g:3505:3: rule__XImportDeclaration__StaticAssignment_1_0_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__StaticAssignment_1_0_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImportSpec() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3067:2: ( ( ( rule__ImportSpec__Group__0 ) ) )\r\n // InternalGo.g:3068:2: ( ( rule__ImportSpec__Group__0 ) )\r\n {\r\n // InternalGo.g:3068:2: ( ( rule__ImportSpec__Group__0 ) )\r\n // InternalGo.g:3069:3: ( rule__ImportSpec__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getGroup()); \r\n }\r\n // InternalGo.g:3070:3: ( rule__ImportSpec__Group__0 )\r\n // InternalGo.g:3070:4: rule__ImportSpec__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__FeatureAssignment_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17354:1: ( ( ( ruleValidID ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17355:1: ( ( ruleValidID ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17355:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17356:1: ( ruleValidID )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getFeatureJvmIdentifiableElementCrossReference_0_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17357:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17358:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getFeatureJvmIdentifiableElementValidIDParserRuleCall_0_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__XAssignment__FeatureAssignment_0_135037);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getFeatureJvmIdentifiableElementValidIDParserRuleCall_0_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getFeatureJvmIdentifiableElementCrossReference_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleImportedType() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImportedType = null;\n\n\n try {\n // InternalMappingDsl.g:3258:53: (iv_ruleImportedType= ruleImportedType EOF )\n // InternalMappingDsl.g:3259:2: iv_ruleImportedType= ruleImportedType EOF\n {\n newCompositeNode(grammarAccess.getImportedTypeRule()); \n pushFollow(FOLLOW_1);\n iv_ruleImportedType=ruleImportedType();\n\n state._fsp--;\n\n current =iv_ruleImportedType; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3534:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\r\n int alt44=2;\r\n int LA44_0 = input.LA(1);\r\n\r\n if ( (LA44_0==36) ) {\r\n alt44=1;\r\n }\r\n else if ( (LA44_0==RULE_ID) ) {\r\n alt44=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 44, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt44) {\r\n case 1 :\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n {\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n // InternalDroneScript.g:3536:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n // InternalDroneScript.g:3537:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n // InternalDroneScript.g:3537:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n {\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n // InternalDroneScript.g:3542:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n // InternalDroneScript.g:3543:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n // InternalDroneScript.g:3543:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16900:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\r\n // InternalDroneScript.g:16901:2: rule__XImportDeclaration__Group_1_0__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mIMPORT() throws RecognitionException {\r\n try {\r\n int _type = IMPORT;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // C:\\\\sandbox\\\\objc2j\\\\src\\\\ru\\\\andremoniy\\\\objctojavacnv\\\\antlr\\\\Preprocessor.g:266:8: ( '#import' )\r\n // C:\\\\sandbox\\\\objc2j\\\\src\\\\ru\\\\andremoniy\\\\objctojavacnv\\\\antlr\\\\Preprocessor.g:266:10: '#import'\r\n {\r\n match(\"#import\"); \r\n\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n \t// do for sure before leaving\r\n }\r\n }", "public final void rule__ImportDecl__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15488:1: ( ( 'import' ) )\r\n // InternalGo.g:15489:1: ( 'import' )\r\n {\r\n // InternalGo.g:15489:1: ( 'import' )\r\n // InternalGo.g:15490:2: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportKeyword_1()); \r\n }\r\n match(input,84,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleXVariableDeclaration() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1505:1: ( ruleXVariableDeclaration EOF )\r\n // InternalDroneScript.g:1506:1: ruleXVariableDeclaration EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXVariableDeclaration();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19594:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19596:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n // InternalDroneScript.g:19597:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19598:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void setImport(org.apache.geronimo.deployment.xbeans.ImportType.Enum ximport)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.SimpleValue target = null;\n target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(IMPORT$0, 0);\n if (target == null)\n {\n target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(IMPORT$0);\n }\n target.setEnumValue(ximport);\n }\n }", "@Override\n public TypeOnDemandImportDeclaration parse(Parser parser) {\n if (!parser.peekPresentAndSkip(\"import\")) {\n return null;\n }\n //whitespace required here\n if (parseWhiteSpaceAndComments(parser).isEmpty()) {\n return null;\n }\n //simple type name\n QualifiedName name = parser.next(QualifiedName.class);\n if (name == null) {\n return null;\n }\n //spacing\n parseWhiteSpaceAndComments(parser);\n //dot\n if (!parser.peekPresentAndSkip('.')) {\n return null;\n }\n //spacing\n parseWhiteSpaceAndComments(parser);\n //asterisk\n if (!parser.peekPresentAndSkip('*')) {\n return null;\n }\n //spacing\n parseWhiteSpaceAndComments(parser);\n //semicolon\n if (!parser.peekPresentAndSkip(';')) {\n return null;\n }\n return new TypeOnDemandImportDeclaration(name);\n }", "public final void rule__XVariableDeclaration__NameAssignment_2_0_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18425:1: ( ( ruleValidID ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18426:1: ( ruleValidID )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18426:1: ( ruleValidID )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18427:1: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getNameValidIDParserRuleCall_2_0_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleValidID_in_rule__XVariableDeclaration__NameAssignment_2_0_0_137222);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getNameValidIDParserRuleCall_2_0_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\n try {\n // InternalCsv.g:630:1: ( ruleQualifiedNameInStaticImport EOF )\n // InternalCsv.g:631:1: ruleQualifiedNameInStaticImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }" ]
[ "0.6912262", "0.6114468", "0.6083378", "0.6026959", "0.5970264", "0.5943656", "0.59220225", "0.5902744", "0.5859992", "0.5760348", "0.57170916", "0.56744957", "0.56690675", "0.56600857", "0.56512773", "0.5614525", "0.5588105", "0.55660254", "0.55402935", "0.55363446", "0.5498737", "0.5492539", "0.5481987", "0.5474147", "0.547267", "0.5470734", "0.54616183", "0.54485995", "0.54278964", "0.54202914", "0.5312188", "0.5289536", "0.5267672", "0.52574486", "0.5254428", "0.5245324", "0.52269113", "0.5224074", "0.520694", "0.51887274", "0.5178987", "0.5171074", "0.51583195", "0.5156767", "0.5121395", "0.50915766", "0.5087796", "0.5077115", "0.5056689", "0.5053422", "0.5047411", "0.5044991", "0.50442904", "0.5005906", "0.5003517", "0.49999648", "0.49925953", "0.49775654", "0.49755043", "0.4953988", "0.49534884", "0.49435836", "0.49383572", "0.49283716", "0.49282724", "0.49238282", "0.49195474", "0.49192742", "0.49048224", "0.48773795", "0.4877194", "0.48748142", "0.4873935", "0.48731446", "0.4869458", "0.4868688", "0.48667917", "0.48607552", "0.48571327", "0.4847727", "0.48424906", "0.48272863", "0.4824448", "0.4811367", "0.48105964", "0.4805567", "0.48013058", "0.47959864", "0.47927284", "0.47810143", "0.47694212", "0.47656894", "0.4759825", "0.47542775", "0.47506937", "0.4745893", "0.47444558", "0.47415638", "0.47310692", "0.47270647" ]
0.6943275
0
$ANTLR end "entryRuleXImportDeclaration" $ANTLR start "ruleXImportDeclaration" InternalCsv.g:613:1: ruleXImportDeclaration : ( ( rule__XImportDeclaration__Group__0 ) ) ;
public final void ruleXImportDeclaration() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:617:2: ( ( ( rule__XImportDeclaration__Group__0 ) ) ) // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) ) { // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) ) // InternalCsv.g:619:3: ( rule__XImportDeclaration__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getXImportDeclarationAccess().getGroup()); } // InternalCsv.g:620:3: ( rule__XImportDeclaration__Group__0 ) // InternalCsv.g:620:4: rule__XImportDeclaration__Group__0 { pushFollow(FOLLOW_2); rule__XImportDeclaration__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getXImportDeclarationAccess().getGroup()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleXImportDeclaration() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2332:2: ( ( ( rule__XImportDeclaration__Group__0 ) ) )\r\n // InternalDroneScript.g:2333:2: ( ( rule__XImportDeclaration__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2333:2: ( ( rule__XImportDeclaration__Group__0 ) )\r\n // InternalDroneScript.g:2334:3: ( rule__XImportDeclaration__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2335:3: ( rule__XImportDeclaration__Group__0 )\r\n // InternalDroneScript.g:2335:4: rule__XImportDeclaration__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3421:1: ( ( 'import' ) )\n // InternalCsv.g:3422:1: ( 'import' )\n {\n // InternalCsv.g:3422:1: ( 'import' )\n // InternalCsv.g:3423:2: 'import'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n match(input,39,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16750:1: ( ( 'import' ) )\r\n // InternalDroneScript.g:16751:1: ( 'import' )\r\n {\r\n // InternalDroneScript.g:16751:1: ( 'import' )\r\n // InternalDroneScript.g:16752:2: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \r\n }\r\n match(input,47,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleXImportDeclaration() throws RecognitionException {\n try {\n // InternalCsv.g:605:1: ( ruleXImportDeclaration EOF )\n // InternalCsv.g:606:1: ruleXImportDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXImportDeclaration();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3409:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\n // InternalCsv.g:3410:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\n {\n pushFollow(FOLLOW_40);\n rule__XImportDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3490:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\n // InternalCsv.g:3491:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16819:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\r\n // InternalDroneScript.g:16820:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\r\n {\r\n pushFollow(FOLLOW_114);\r\n rule__XImportDeclaration__Group_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16738:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\r\n // InternalDroneScript.g:16739:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\r\n {\r\n pushFollow(FOLLOW_113);\r\n rule__XImportDeclaration__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:103:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:105:1: ( rule__Import__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:1: ( rule__Import__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport160);\n rule__Import__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3517:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\n // InternalCsv.g:3518:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImportDecl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3042:2: ( ( ( rule__ImportDecl__Group__0 ) ) )\r\n // InternalGo.g:3043:2: ( ( rule__ImportDecl__Group__0 ) )\r\n {\r\n // InternalGo.g:3043:2: ( ( rule__ImportDecl__Group__0 ) )\r\n // InternalGo.g:3044:3: ( rule__ImportDecl__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getGroup()); \r\n }\r\n // InternalGo.g:3045:3: ( rule__ImportDecl__Group__0 )\r\n // InternalGo.g:3045:4: rule__ImportDecl__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleXImportDeclaration() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2320:1: ( ruleXImportDeclaration EOF )\r\n // InternalDroneScript.g:2321:1: ruleXImportDeclaration EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXImportDeclaration();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:241:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:243:1: ( rule__Import__Group__0 )\n {\n before(grammarAccess.getImportAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:1: ( rule__Import__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport454);\n rule__Import__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getImportAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:130:2: ( ( ( rule__Import__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:132:1: ( rule__Import__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:1: ( rule__Import__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:2: rule__Import__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport220);\r\n rule__Import__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16846:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\r\n // InternalDroneScript.g:16847:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\r\n {\r\n pushFollow(FOLLOW_114);\r\n rule__XImportDeclaration__Group_1_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3507:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\r\n int alt43=3;\r\n alt43 = dfa43.predict(input);\r\n switch (alt43) {\r\n case 1 :\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n // InternalDroneScript.g:3509:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n // InternalDroneScript.g:3510:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n // InternalDroneScript.g:3510:4: rule__XImportDeclaration__Group_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n {\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n // InternalDroneScript.g:3515:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n // InternalDroneScript.g:3516:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n // InternalDroneScript.g:3516:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n {\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n // InternalDroneScript.g:3521:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n // InternalDroneScript.g:3522:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n // InternalDroneScript.g:3522:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16873:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\r\n // InternalDroneScript.g:16874:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\r\n {\r\n pushFollow(FOLLOW_115);\r\n rule__XImportDeclaration__Group_1_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3436:1: ( rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2 )\n // InternalCsv.g:3437:2: rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2\n {\n pushFollow(FOLLOW_6);\n rule__XImportDeclaration__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16900:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\r\n // InternalDroneScript.g:16901:2: rule__XImportDeclaration__Group_1_0__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3474:1: ( ( ( ';' )? ) )\n // InternalCsv.g:3475:1: ( ( ';' )? )\n {\n // InternalCsv.g:3475:1: ( ( ';' )? )\n // InternalCsv.g:3476:2: ( ';' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n // InternalCsv.g:3477:2: ( ';' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==14) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // InternalCsv.g:3477:3: ';'\n {\n match(input,14,FOLLOW_2); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2575:1: ( ( 'import' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2576:1: ( 'import' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2576:1: ( 'import' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2577:1: 'import'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportKeyword_0()); \n }\n match(input,33,FOLLOW_33_in_rule__Import__Group__0__Impl5547); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16803:1: ( ( ( ';' )? ) )\r\n // InternalDroneScript.g:16804:1: ( ( ';' )? )\r\n {\r\n // InternalDroneScript.g:16804:1: ( ( ';' )? )\r\n // InternalDroneScript.g:16805:2: ( ';' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \r\n }\r\n // InternalDroneScript.g:16806:2: ( ';' )?\r\n int alt128=2;\r\n int LA128_0 = input.LA(1);\r\n\r\n if ( (LA128_0==75) ) {\r\n alt128=1;\r\n }\r\n switch (alt128) {\r\n case 1 :\r\n // InternalDroneScript.g:16806:3: ';'\r\n {\r\n match(input,75,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16765:1: ( rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2 )\r\n // InternalDroneScript.g:16766:2: rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2\r\n {\r\n pushFollow(FOLLOW_72);\r\n rule__XImportDeclaration__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportSection__ImportDeclarationsAssignment() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19488:1: ( ( ruleXImportDeclaration ) )\r\n // InternalDroneScript.g:19489:2: ( ruleXImportDeclaration )\r\n {\r\n // InternalDroneScript.g:19489:2: ( ruleXImportDeclaration )\r\n // InternalDroneScript.g:19490:3: ruleXImportDeclaration\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportSectionAccess().getImportDeclarationsXImportDeclarationParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXImportDeclaration();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportSectionAccess().getImportDeclarationsXImportDeclarationParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ImportDecl__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15461:1: ( ( () ) )\r\n // InternalGo.g:15462:1: ( () )\r\n {\r\n // InternalGo.g:15462:1: ( () )\r\n // InternalGo.g:15463:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportDeclAction_0()); \r\n }\r\n // InternalGo.g:15464:2: ()\r\n // InternalGo.g:15464:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportDeclAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3561:1: ( ( 'import' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3562:1: ( 'import' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3562:1: ( 'import' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3563:1: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getImportKeyword_0()); \r\n }\r\n match(input,72,FOLLOW_72_in_rule__Import__Group__0__Impl7876); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getImportKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ImportDecl__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15488:1: ( ( 'import' ) )\r\n // InternalGo.g:15489:1: ( 'import' )\r\n {\r\n // InternalGo.g:15489:1: ( 'import' )\r\n // InternalGo.g:15490:2: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportKeyword_1()); \r\n }\r\n match(input,84,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4074:1: ( ( 'import' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4075:1: ( 'import' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4075:1: ( 'import' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4076:1: 'import'\n {\n before(grammarAccess.getImportAccess().getImportKeyword_0()); \n match(input,54,FOLLOW_54_in_rule__Import__Group__0__Impl8764); \n after(grammarAccess.getImportAccess().getImportKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImportSpec() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3067:2: ( ( ( rule__ImportSpec__Group__0 ) ) )\r\n // InternalGo.g:3068:2: ( ( rule__ImportSpec__Group__0 ) )\r\n {\r\n // InternalGo.g:3068:2: ( ( rule__ImportSpec__Group__0 ) )\r\n // InternalGo.g:3069:3: ( rule__ImportSpec__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getGroup()); \r\n }\r\n // InternalGo.g:3070:3: ( rule__ImportSpec__Group__0 )\r\n // InternalGo.g:3070:4: rule__ImportSpec__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2563:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2564:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__05516);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__05519);\n rule__Import__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15449:1: ( rule__ImportDecl__Group__0__Impl rule__ImportDecl__Group__1 )\r\n // InternalGo.g:15450:2: rule__ImportDecl__Group__0__Impl rule__ImportDecl__Group__1\r\n {\r\n pushFollow(FOLLOW_85);\r\n rule__ImportDecl__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4062:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4063:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__08733);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__08736);\n rule__Import__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3556:1: ( ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) ) )\n // InternalCsv.g:3557:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\n {\n // InternalCsv.g:3557:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\n // InternalCsv.g:3558:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \n }\n // InternalCsv.g:3559:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\n // InternalCsv.g:3559:3: rule__XImportDeclaration__ImportedTypeAssignment_1_0_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_0_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3549:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3550:2: rule__Import__Group__0__Impl rule__Import__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__07845);\r\n rule__Import__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__07848);\r\n rule__Import__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3448:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n {\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n // InternalCsv.g:3450:2: ( rule__XImportDeclaration__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n // InternalCsv.g:3451:2: ( rule__XImportDeclaration__Alternatives_1 )\n // InternalCsv.g:3451:3: rule__XImportDeclaration__Alternatives_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3502:1: ( ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) ) )\n // InternalCsv.g:3503:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\n {\n // InternalCsv.g:3503:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\n // InternalCsv.g:3504:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \n }\n // InternalCsv.g:3505:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\n // InternalCsv.g:3505:3: rule__XImportDeclaration__StaticAssignment_1_0_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__StaticAssignment_1_0_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group_2_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15542:1: ( ( '(' ) )\r\n // InternalGo.g:15543:1: ( '(' )\r\n {\r\n // InternalGo.g:15543:1: ( '(' )\r\n // InternalGo.g:15544:2: '('\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getLeftParenthesisKeyword_2_1_0()); \r\n }\r\n match(input,52,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getLeftParenthesisKeyword_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2605:1: ( ( ( rule__Import__ImportedNamespaceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2606:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2606:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2607:1: ( rule__Import__ImportedNamespaceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2608:1: ( rule__Import__ImportedNamespaceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2608:2: rule__Import__ImportedNamespaceAssignment_1\n {\n pushFollow(FOLLOW_rule__Import__ImportedNamespaceAssignment_1_in_rule__Import__Group__1__Impl5605);\n rule__Import__ImportedNamespaceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16777:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n // InternalDroneScript.g:16779:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:16780:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n // InternalDroneScript.g:16780:3: rule__XImportDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Dataset__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1207:1: ( ( 'import' ) )\n // InternalMLRegression.g:1208:1: ( 'import' )\n {\n // InternalMLRegression.g:1208:1: ( 'import' )\n // InternalMLRegression.g:1209:2: 'import'\n {\n before(grammarAccess.getDatasetAccess().getImportKeyword_0()); \n match(input,25,FOLLOW_2); \n after(grammarAccess.getDatasetAccess().getImportKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group_2_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15530:1: ( rule__ImportDecl__Group_2_1__0__Impl rule__ImportDecl__Group_2_1__1 )\r\n // InternalGo.g:15531:2: rule__ImportDecl__Group_2_1__0__Impl rule__ImportDecl__Group_2_1__1\r\n {\r\n pushFollow(FOLLOW_87);\r\n rule__ImportDecl__Group_2_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group_2_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ImportSpec__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15611:1: ( rule__ImportSpec__Group__0__Impl rule__ImportSpec__Group__1 )\r\n // InternalGo.g:15612:2: rule__ImportSpec__Group__0__Impl rule__ImportSpec__Group__1\r\n {\r\n pushFollow(FOLLOW_89);\r\n rule__ImportSpec__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3529:1: ( ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? ) )\n // InternalCsv.g:3530:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\n {\n // InternalCsv.g:3530:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\n // InternalCsv.g:3531:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \n }\n // InternalCsv.g:3532:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\n int alt28=2;\n int LA28_0 = input.LA(1);\n\n if ( (LA28_0==42) ) {\n alt28=1;\n }\n switch (alt28) {\n case 1 :\n // InternalCsv.g:3532:3: rule__XImportDeclaration__ExtensionAssignment_1_0_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ExtensionAssignment_1_0_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "ImportDeclaration createImportDeclaration();", "public final void rule__ImportDecl__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15476:1: ( rule__ImportDecl__Group__1__Impl rule__ImportDecl__Group__2 )\r\n // InternalGo.g:15477:2: rule__ImportDecl__Group__1__Impl rule__ImportDecl__Group__2\r\n {\r\n pushFollow(FOLLOW_86);\r\n rule__ImportDecl__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXImportSection() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2300:2: ( ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) ) )\r\n // InternalDroneScript.g:2301:2: ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) )\r\n {\r\n // InternalDroneScript.g:2301:2: ( ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* ) )\r\n // InternalDroneScript.g:2302:3: ( ( rule__XImportSection__ImportDeclarationsAssignment ) ) ( ( rule__XImportSection__ImportDeclarationsAssignment )* )\r\n {\r\n // InternalDroneScript.g:2302:3: ( ( rule__XImportSection__ImportDeclarationsAssignment ) )\r\n // InternalDroneScript.g:2303:4: ( rule__XImportSection__ImportDeclarationsAssignment )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); \r\n }\r\n // InternalDroneScript.g:2304:4: ( rule__XImportSection__ImportDeclarationsAssignment )\r\n // InternalDroneScript.g:2304:5: rule__XImportSection__ImportDeclarationsAssignment\r\n {\r\n pushFollow(FOLLOW_3);\r\n rule__XImportSection__ImportDeclarationsAssignment();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); \r\n }\r\n\r\n }\r\n\r\n // InternalDroneScript.g:2307:3: ( ( rule__XImportSection__ImportDeclarationsAssignment )* )\r\n // InternalDroneScript.g:2308:4: ( rule__XImportSection__ImportDeclarationsAssignment )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); \r\n }\r\n // InternalDroneScript.g:2309:4: ( rule__XImportSection__ImportDeclarationsAssignment )*\r\n loop1:\r\n do {\r\n int alt1=2;\r\n int LA1_0 = input.LA(1);\r\n\r\n if ( (LA1_0==47) ) {\r\n alt1=1;\r\n }\r\n\r\n\r\n switch (alt1) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:2309:5: rule__XImportSection__ImportDeclarationsAssignment\r\n \t {\r\n \t pushFollow(FOLLOW_3);\r\n \t rule__XImportSection__ImportDeclarationsAssignment();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop1;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportSectionAccess().getImportDeclarationsAssignment()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleImportDecl() throws RecognitionException {\r\n try {\r\n // InternalGo.g:3030:1: ( ruleImportDecl EOF )\r\n // InternalGo.g:3031:1: ruleImportDecl EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleImportDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16792:1: ( rule__XImportDeclaration__Group__2__Impl )\r\n // InternalDroneScript.g:16793:2: rule__XImportDeclaration__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private String importDeclaration()\r\n {\r\n String handle;\r\n\r\n matchKeyword(Keyword.IMPORTSY);\r\n handle = nextToken.string;\r\n matchKeyword(Keyword.IDENTSY);\r\n handle = qualifiedImport(handle);\r\n matchKeyword(Keyword.SEMICOLONSY);\r\n\r\n return handle;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16885:1: ( ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) ) )\r\n // InternalDroneScript.g:16886:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\r\n {\r\n // InternalDroneScript.g:16886:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\r\n // InternalDroneScript.g:16887:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \r\n }\r\n // InternalDroneScript.g:16888:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\r\n // InternalDroneScript.g:16888:3: rule__XImportDeclaration__ImportedTypeAssignment_1_0_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_0_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16911:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n {\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n // InternalDroneScript.g:16913:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n // InternalDroneScript.g:16914:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n // InternalDroneScript.g:16914:3: rule__XImportDeclaration__Alternatives_1_0_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1_0_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4093:1: ( rule__Import__Group__1__Impl rule__Import__Group__2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4094:2: rule__Import__Group__1__Impl rule__Import__Group__2\n {\n pushFollow(FOLLOW_rule__Import__Group__1__Impl_in_rule__Import__Group__18795);\n rule__Import__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__2_in_rule__Import__Group__18798);\n rule__Import__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3463:1: ( rule__XImportDeclaration__Group__2__Impl )\n // InternalCsv.g:3464:2: rule__XImportDeclaration__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4105:1: ( ( ( rule__Import__ImportedNamespaceAssignment_1 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4106:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4106:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4107:1: ( rule__Import__ImportedNamespaceAssignment_1 )\n {\n before(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4108:1: ( rule__Import__ImportedNamespaceAssignment_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4108:2: rule__Import__ImportedNamespaceAssignment_1\n {\n pushFollow(FOLLOW_rule__Import__ImportedNamespaceAssignment_1_in_rule__Import__Group__1__Impl8825);\n rule__Import__ImportedNamespaceAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3591:1: ( ( ( rule__Import__ImportedNamespaceAssignment_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3592:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3592:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3593:1: ( rule__Import__ImportedNamespaceAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3594:1: ( rule__Import__ImportedNamespaceAssignment_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3594:2: rule__Import__ImportedNamespaceAssignment_1\r\n {\r\n pushFollow(FOLLOW_rule__Import__ImportedNamespaceAssignment_1_in_rule__Import__Group__1__Impl7934);\r\n rule__Import__ImportedNamespaceAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Compilation_initial__ImportdeclAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15695:1: ( ( ruleImportDecl ) )\r\n // InternalGo.g:15696:2: ( ruleImportDecl )\r\n {\r\n // InternalGo.g:15696:2: ( ruleImportDecl )\r\n // InternalGo.g:15697:3: ruleImportDecl\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getCompilation_initialAccess().getImportdeclImportDeclParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleImportDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getCompilation_initialAccess().getImportdeclImportDeclParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16831:1: ( ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) ) )\r\n // InternalDroneScript.g:16832:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\r\n {\r\n // InternalDroneScript.g:16832:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\r\n // InternalDroneScript.g:16833:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \r\n }\r\n // InternalDroneScript.g:16834:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\r\n // InternalDroneScript.g:16834:3: rule__XImportDeclaration__StaticAssignment_1_0_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__StaticAssignment_1_0_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleXImportSection() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2288:1: ( ruleXImportSection EOF )\r\n // InternalDroneScript.g:2289:1: ruleXImportSection EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportSectionRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXImportSection();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportSectionRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2594:1: ( rule__Import__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2595:2: rule__Import__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Import__Group__1__Impl_in_rule__Import__Group__15578);\n rule__Import__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__ImportDecl__Group_2_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15557:1: ( rule__ImportDecl__Group_2_1__1__Impl rule__ImportDecl__Group_2_1__2 )\r\n // InternalGo.g:15558:2: rule__ImportDecl__Group_2_1__1__Impl rule__ImportDecl__Group_2_1__2\r\n {\r\n pushFollow(FOLLOW_87);\r\n rule__ImportDecl__Group_2_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group_2_1__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstPackage__ImportsAssignment_4_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22508:1: ( ( ruleImport ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22509:1: ( ruleImport )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22509:1: ( ruleImport )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22510:1: ruleImport\n {\n before(grammarAccess.getAstPackageAccess().getImportsImportParserRuleCall_4_1_0()); \n pushFollow(FOLLOW_ruleImport_in_rule__AstPackage__ImportsAssignment_4_145075);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getAstPackageAccess().getImportsImportParserRuleCall_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXVariableDeclaration() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1517:2: ( ( ( rule__XVariableDeclaration__Group__0 ) ) )\r\n // InternalDroneScript.g:1518:2: ( ( rule__XVariableDeclaration__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1518:2: ( ( rule__XVariableDeclaration__Group__0 ) )\r\n // InternalDroneScript.g:1519:3: ( rule__XVariableDeclaration__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1520:3: ( rule__XVariableDeclaration__Group__0 )\r\n // InternalDroneScript.g:1520:4: rule__XVariableDeclaration__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XVariableDeclaration__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXVariableDeclaration() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1342:2: ( ( ( rule__XVariableDeclaration__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1343:1: ( ( rule__XVariableDeclaration__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1343:1: ( ( rule__XVariableDeclaration__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1344:1: ( rule__XVariableDeclaration__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1345:1: ( rule__XVariableDeclaration__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1345:2: rule__XVariableDeclaration__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__XVariableDeclaration__Group__0_in_ruleXVariableDeclaration2807);\r\n rule__XVariableDeclaration__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void importDeclaration() throws RecognitionException {\n int importDeclaration_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"importDeclaration\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(189, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 3) ) { return ; }\n // Java.g:190:5: ( 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';' )\n dbg.enterAlt(1);\n\n // Java.g:190:9: 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';'\n {\n dbg.location(190,9);\n match(input,27,FOLLOW_27_in_importDeclaration154); if (state.failed) return ;\n dbg.location(190,18);\n // Java.g:190:18: ( 'static' )?\n int alt9=2;\n try { dbg.enterSubRule(9);\n try { dbg.enterDecision(9);\n\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==28) ) {\n alt9=1;\n }\n } finally {dbg.exitDecision(9);}\n\n switch (alt9) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:0:0: 'static'\n {\n dbg.location(190,18);\n match(input,28,FOLLOW_28_in_importDeclaration156); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(9);}\n\n dbg.location(190,28);\n pushFollow(FOLLOW_qualifiedName_in_importDeclaration159);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(190,42);\n // Java.g:190:42: ( '.' '*' )?\n int alt10=2;\n try { dbg.enterSubRule(10);\n try { dbg.enterDecision(10);\n\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==29) ) {\n alt10=1;\n }\n } finally {dbg.exitDecision(10);}\n\n switch (alt10) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:190:43: '.' '*'\n {\n dbg.location(190,43);\n match(input,29,FOLLOW_29_in_importDeclaration162); if (state.failed) return ;\n dbg.location(190,47);\n match(input,30,FOLLOW_30_in_importDeclaration164); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(10);}\n\n dbg.location(190,53);\n match(input,26,FOLLOW_26_in_importDeclaration168); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 3, importDeclaration_StartIndex); }\n }\n dbg.location(191, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"importDeclaration\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void rule__Import__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3580:1: ( rule__Import__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3581:2: rule__Import__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__1__Impl_in_rule__Import__Group__17907);\r\n rule__Import__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void addImport(java.lang.String ximport)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.SimpleValue target = null;\n target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(IMPORT$0);\n target.setStringValue(ximport);\n }\n }", "public void visit(ImportDeclaration n) {\n n.f0.accept(this);\n n.f1.accept(this);\n n.f2.accept(this);\n n.f3.accept(this);\n }", "public final void rule__Import__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4133:1: ( ( ';' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4134:1: ( ';' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4134:1: ( ';' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4135:1: ';'\n {\n before(grammarAccess.getImportAccess().getSemicolonKeyword_2()); \n match(input,49,FOLLOW_49_in_rule__Import__Group__2__Impl8883); \n after(grammarAccess.getImportAccess().getSemicolonKeyword_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n {\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n {\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\n // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0\n {\n pushFollow(FOLLOW_3);\n rule__QualifiedNameInStaticImport__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==33) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__QualifiedNameInStaticImport__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXVariableDeclaration() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:187:2: ( ( ( rule__XVariableDeclaration__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:188:1: ( ( rule__XVariableDeclaration__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:188:1: ( ( rule__XVariableDeclaration__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:189:1: ( rule__XVariableDeclaration__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXVariableDeclarationAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:190:1: ( rule__XVariableDeclaration__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:190:2: rule__XVariableDeclaration__Group__0\n {\n pushFollow(FOLLOW_rule__XVariableDeclaration__Group__0_in_ruleXVariableDeclaration340);\n rule__XVariableDeclaration__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXVariableDeclarationAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Compilation_initial__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4472:1: ( ( ( rule__Compilation_initial__ImportdeclAssignment_1_1 )* ) )\r\n // InternalGo.g:4473:1: ( ( rule__Compilation_initial__ImportdeclAssignment_1_1 )* )\r\n {\r\n // InternalGo.g:4473:1: ( ( rule__Compilation_initial__ImportdeclAssignment_1_1 )* )\r\n // InternalGo.g:4474:2: ( rule__Compilation_initial__ImportdeclAssignment_1_1 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getCompilation_initialAccess().getImportdeclAssignment_1_1()); \r\n }\r\n // InternalGo.g:4475:2: ( rule__Compilation_initial__ImportdeclAssignment_1_1 )*\r\n loop50:\r\n do {\r\n int alt50=2;\r\n int LA50_0 = input.LA(1);\r\n\r\n if ( (LA50_0==84) ) {\r\n alt50=1;\r\n }\r\n\r\n\r\n switch (alt50) {\r\n \tcase 1 :\r\n \t // InternalGo.g:4475:3: rule__Compilation_initial__ImportdeclAssignment_1_1\r\n \t {\r\n \t pushFollow(FOLLOW_5);\r\n \t rule__Compilation_initial__ImportdeclAssignment_1_1();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop50;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getCompilation_initialAccess().getImportdeclAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void mIMPORT() throws RecognitionException {\r\n try {\r\n int _type = IMPORT;\r\n int _channel = DEFAULT_TOKEN_CHANNEL;\r\n // C:\\\\sandbox\\\\objc2j\\\\src\\\\ru\\\\andremoniy\\\\objctojavacnv\\\\antlr\\\\Preprocessor.g:266:8: ( '#import' )\r\n // C:\\\\sandbox\\\\objc2j\\\\src\\\\ru\\\\andremoniy\\\\objctojavacnv\\\\antlr\\\\Preprocessor.g:266:10: '#import'\r\n {\r\n match(\"#import\"); \r\n\r\n\r\n\r\n }\r\n\r\n state.type = _type;\r\n state.channel = _channel;\r\n }\r\n finally {\r\n \t// do for sure before leaving\r\n }\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3598:1: ( rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1 )\n // InternalCsv.g:3599:2: rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameInStaticImport__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameInStaticImport__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XVariableDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2943:1: ( rule__XVariableDeclaration__Group__0__Impl rule__XVariableDeclaration__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2944:2: rule__XVariableDeclaration__Group__0__Impl rule__XVariableDeclaration__Group__1\n {\n pushFollow(FOLLOW_rule__XVariableDeclaration__Group__0__Impl_in_rule__XVariableDeclaration__Group__06260);\n rule__XVariableDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XVariableDeclaration__Group__1_in_rule__XVariableDeclaration__Group__06263);\n rule__XVariableDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNamespace__ImportsAssignment_4_4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22690:1: ( ( ruleImport ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22691:1: ( ruleImport )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22691:1: ( ruleImport )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22692:1: ruleImport\n {\n before(grammarAccess.getAstNamespaceAccess().getImportsImportParserRuleCall_4_4_0()); \n pushFollow(FOLLOW_ruleImport_in_rule__AstNamespace__ImportsAssignment_4_445451);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getAstNamespaceAccess().getImportsImportParserRuleCall_4_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:229:1: ( ruleImport EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:230:1: ruleImport EOF\n {\n before(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport421);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getImportRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport428); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16858:1: ( ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? ) )\r\n // InternalDroneScript.g:16859:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\r\n {\r\n // InternalDroneScript.g:16859:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\r\n // InternalDroneScript.g:16860:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \r\n }\r\n // InternalDroneScript.g:16861:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\r\n int alt129=2;\r\n int LA129_0 = input.LA(1);\r\n\r\n if ( (LA129_0==48) ) {\r\n alt129=1;\r\n }\r\n switch (alt129) {\r\n case 1 :\r\n // InternalDroneScript.g:16861:3: rule__XImportDeclaration__ExtensionAssignment_1_0_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ExtensionAssignment_1_0_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4183:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n {\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n // InternalCsv.g:4185:3: ( ruleQualifiedNameInStaticImport )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n // InternalCsv.g:4186:3: ( ruleQualifiedNameInStaticImport )\n // InternalCsv.g:4187:4: ruleQualifiedNameInStaticImport\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportSpec__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15638:1: ( rule__ImportSpec__Group__1__Impl )\r\n // InternalGo.g:15639:2: rule__ImportSpec__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__DronesBehavior__ImportsAssignment_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16981:1: ( ( ruleXImportSection ) )\r\n // InternalDroneScript.g:16982:2: ( ruleXImportSection )\r\n {\r\n // InternalDroneScript.g:16982:2: ( ruleXImportSection )\r\n // InternalDroneScript.g:16983:3: ruleXImportSection\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDronesBehaviorAccess().getImportsXImportSectionParserRuleCall_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXImportSection();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDronesBehaviorAccess().getImportsXImportSectionParserRuleCall_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public XtypeGrammarAccess.XImportDeclarationElements getXImportDeclarationAccess() {\r\n\t\treturn gaXtype.getXImportDeclarationAccess();\r\n\t}", "public XtypeGrammarAccess.XImportDeclarationElements getXImportDeclarationAccess() {\n\t\treturn gaXtype.getXImportDeclarationAccess();\n\t}", "public XtypeGrammarAccess.XImportDeclarationElements getXImportDeclarationAccess() {\n\t\treturn gaXtype.getXImportDeclarationAccess();\n\t}", "public final void rule__XVariableDeclaration__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2955:1: ( ( () ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2956:1: ( () )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2956:1: ( () )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2957:1: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXVariableDeclarationAccess().getXVariableDeclarationAction_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2958:1: ()\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2960:1: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXVariableDeclarationAccess().getXVariableDeclarationAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XVariableDeclaration__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12703:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12704:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12704:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12705:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getXVariableDeclarationAction_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12706:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12708:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getXVariableDeclarationAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMappingDsl.g:1797:47: (iv_ruleImport= ruleImport EOF )\n // InternalMappingDsl.g:1798:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:287:2: (iv_ruleImport= ruleImport EOF )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:288:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_ruleImport_in_entryRuleImport625);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_EOF_in_entryRuleImport635); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "@Override\n public String visit(ImportDeclaration n, Object arg) {\n return null;\n }", "public final void rule__XVariableDeclaration__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12691:1: ( rule__XVariableDeclaration__Group__0__Impl rule__XVariableDeclaration__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12692:2: rule__XVariableDeclaration__Group__0__Impl rule__XVariableDeclaration__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__XVariableDeclaration__Group__0__Impl_in_rule__XVariableDeclaration__Group__025805);\r\n rule__XVariableDeclaration__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XVariableDeclaration__Group__1_in_rule__XVariableDeclaration__Group__025808);\r\n rule__XVariableDeclaration__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private ParseTree parseImportSpecifier() {\n SourcePosition start = getTreeStartLocation();\n IdentifierToken importedName = eatIdOrKeywordAsId();\n IdentifierToken destinationName = null;\n if (peekPredefinedString(PredefinedName.AS)) {\n eatPredefinedString(PredefinedName.AS);\n destinationName = eatId();\n } else if (isKeyword(importedName.value)) {\n reportExpectedError(null, PredefinedName.AS);\n }\n return new ImportSpecifierTree(getTreeLocation(start), importedName, destinationName);\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMyDsl.g:127:47: (iv_ruleImport= ruleImport EOF )\n // InternalMyDsl.g:128:2: iv_ruleImport= ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleImport; \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject ruleImportNamespace() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_0=null;\r\n AntlrDatatypeRuleToken lv_importedNamespace_1_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5309:28: ( (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:3: otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n {\r\n otherlv_0=(Token)match(input,78,FOLLOW_78_in_ruleImportNamespace12287); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_0, grammarAccess.getImportNamespaceAccess().getImportKeyword_0());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5314:1: ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5316:3: lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getImportNamespaceAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_ruleImportNamespace12308);\r\n lv_importedNamespace_1_0=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getImportNamespaceRule());\r\n \t }\r\n \t\tset(\r\n \t\t\tcurrent, \r\n \t\t\t\"importedNamespace\",\r\n \t\tlv_importedNamespace_1_0, \r\n \t\t\"QualifiedNameWithWildcard\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__XVariableDeclaration__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:12492:1: ( rule__XVariableDeclaration__Group__0__Impl rule__XVariableDeclaration__Group__1 )\r\n // InternalDroneScript.g:12493:2: rule__XVariableDeclaration__Group__0__Impl rule__XVariableDeclaration__Group__1\r\n {\r\n pushFollow(FOLLOW_89);\r\n rule__XVariableDeclaration__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XVariableDeclaration__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.84006095", "0.8239435", "0.8166296", "0.78724885", "0.7700864", "0.76912135", "0.7574713", "0.7554919", "0.75260836", "0.74824876", "0.7402958", "0.7373278", "0.7373098", "0.7354421", "0.7305685", "0.7290558", "0.72762454", "0.72406155", "0.72330207", "0.7173342", "0.7155872", "0.7101023", "0.709848", "0.7092001", "0.7035571", "0.70322603", "0.7017196", "0.6933403", "0.69118696", "0.6910415", "0.68909454", "0.68690866", "0.6829212", "0.67718714", "0.6728134", "0.6715407", "0.67147267", "0.6711489", "0.6576458", "0.6561084", "0.6515164", "0.65115696", "0.6500341", "0.6352225", "0.63504106", "0.63382345", "0.62797266", "0.62729096", "0.6269343", "0.62628555", "0.6250719", "0.6235742", "0.6210372", "0.6197003", "0.6196362", "0.6166776", "0.61631596", "0.6152002", "0.6142083", "0.6140484", "0.6113577", "0.60470706", "0.5962601", "0.59348875", "0.58859444", "0.5858668", "0.5818643", "0.5818382", "0.5801823", "0.5775361", "0.5773243", "0.5768432", "0.57557434", "0.5755034", "0.57480574", "0.5740691", "0.5732952", "0.5715318", "0.57064766", "0.569304", "0.5685677", "0.56751245", "0.56560093", "0.56529576", "0.5637249", "0.56368905", "0.56319505", "0.5630833", "0.56170535", "0.56170535", "0.5612007", "0.55991286", "0.5588051", "0.5564587", "0.5560401", "0.5545261", "0.55341727", "0.55333626", "0.55228394", "0.55191934" ]
0.860082
0
$ANTLR end "ruleXImportDeclaration" $ANTLR start "entryRuleQualifiedNameInStaticImport" InternalCsv.g:629:1: entryRuleQualifiedNameInStaticImport : ruleQualifiedNameInStaticImport EOF ;
public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException { try { // InternalCsv.g:630:1: ( ruleQualifiedNameInStaticImport EOF ) // InternalCsv.g:631:1: ruleQualifiedNameInStaticImport EOF { if ( state.backtracking==0 ) { before(grammarAccess.getQualifiedNameInStaticImportRule()); } pushFollow(FOLLOW_1); ruleQualifiedNameInStaticImport(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getQualifiedNameInStaticImportRule()); } match(input,EOF,FOLLOW_2); if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2345:1: ( ruleQualifiedNameInStaticImport EOF )\r\n // InternalDroneScript.g:2346:1: ruleQualifiedNameInStaticImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4183:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n {\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n // InternalCsv.g:4185:3: ( ruleQualifiedNameInStaticImport )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n // InternalCsv.g:4186:3: ( ruleQualifiedNameInStaticImport )\n // InternalCsv.g:4187:4: ruleQualifiedNameInStaticImport\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19541:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n {\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n // InternalDroneScript.g:19543:3: ( ruleQualifiedNameInStaticImport )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n // InternalDroneScript.g:19544:3: ( ruleQualifiedNameInStaticImport )\r\n // InternalDroneScript.g:19545:4: ruleQualifiedNameInStaticImport\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n {\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n {\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\n // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0\n {\n pushFollow(FOLLOW_3);\n rule__QualifiedNameInStaticImport__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==33) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__QualifiedNameInStaticImport__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // InternalCsv.g:530:1: ( ruleQualifiedName EOF )\n // InternalCsv.g:531:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19594:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19596:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n // InternalDroneScript.g:19597:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19598:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2357:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n {\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n {\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\r\n // InternalDroneScript.g:2360:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2361:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n // InternalDroneScript.g:2361:5: rule__QualifiedNameInStaticImport__Group__0\r\n {\r\n pushFollow(FOLLOW_4);\r\n rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n // InternalDroneScript.g:2364:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n // InternalDroneScript.g:2365:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2366:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n loop2:\r\n do {\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( (LA2_0==RULE_ID) ) {\r\n int LA2_2 = input.LA(2);\r\n\r\n if ( (LA2_2==43) ) {\r\n alt2=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt2) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:2366:5: rule__QualifiedNameInStaticImport__Group__0\r\n \t {\r\n \t pushFollow(FOLLOW_4);\r\n \t rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop2;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void importDeclaration() throws RecognitionException {\n int importDeclaration_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"importDeclaration\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(189, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 3) ) { return ; }\n // Java.g:190:5: ( 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';' )\n dbg.enterAlt(1);\n\n // Java.g:190:9: 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';'\n {\n dbg.location(190,9);\n match(input,27,FOLLOW_27_in_importDeclaration154); if (state.failed) return ;\n dbg.location(190,18);\n // Java.g:190:18: ( 'static' )?\n int alt9=2;\n try { dbg.enterSubRule(9);\n try { dbg.enterDecision(9);\n\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==28) ) {\n alt9=1;\n }\n } finally {dbg.exitDecision(9);}\n\n switch (alt9) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:0:0: 'static'\n {\n dbg.location(190,18);\n match(input,28,FOLLOW_28_in_importDeclaration156); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(9);}\n\n dbg.location(190,28);\n pushFollow(FOLLOW_qualifiedName_in_importDeclaration159);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(190,42);\n // Java.g:190:42: ( '.' '*' )?\n int alt10=2;\n try { dbg.enterSubRule(10);\n try { dbg.enterDecision(10);\n\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==29) ) {\n alt10=1;\n }\n } finally {dbg.exitDecision(10);}\n\n switch (alt10) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:190:43: '.' '*'\n {\n dbg.location(190,43);\n match(input,29,FOLLOW_29_in_importDeclaration162); if (state.failed) return ;\n dbg.location(190,47);\n match(input,30,FOLLOW_30_in_importDeclaration164); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(10);}\n\n dbg.location(190,53);\n match(input,26,FOLLOW_26_in_importDeclaration168); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 3, importDeclaration_StartIndex); }\n }\n dbg.location(191, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"importDeclaration\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\n try {\n // InternalCsv.g:555:1: ( ruleQualifiedNameWithWildcard EOF )\n // InternalCsv.g:556:1: ruleQualifiedNameWithWildcard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "private String importDeclaration()\r\n {\r\n String handle;\r\n\r\n matchKeyword(Keyword.IMPORTSY);\r\n handle = nextToken.string;\r\n matchKeyword(Keyword.IDENTSY);\r\n handle = qualifiedImport(handle);\r\n matchKeyword(Keyword.SEMICOLONSY);\r\n\r\n return handle;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16834:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16836:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__Import__ImportedNamespaceAssignment_133961);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3598:1: ( rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1 )\n // InternalCsv.g:3599:2: rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameInStaticImport__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameInStaticImport__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1536:1: ( ruleQualifiedName EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1537:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3220); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3636:1: ( ( '.' ) )\n // InternalCsv.g:3637:1: ( '.' )\n {\n // InternalCsv.g:3637:1: ( '.' )\n // InternalCsv.g:3638:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getFullStopKeyword_1()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getFullStopKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1785:1: ( ruleQualifiedName EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1786:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3751);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3758); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalMappingDsl.g:6449:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalMappingDsl.g:6450:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3023:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3024:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName7183);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName7194); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalNgt.g:1709:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalNgt.g:1710:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1930:1: ( ruleQualifiedName EOF )\r\n // InternalDroneScript.g:1931:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // InternalNestDsl.g:414:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // InternalNestDsl.g:415:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleQualifiedName.getText(); \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalStl.g:1675:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalStl.g:1676:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16927:1: ( rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1 )\r\n // InternalDroneScript.g:16928:2: rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__QualifiedNameInStaticImport__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameInStaticImport__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16965:1: ( ( '.' ) )\r\n // InternalDroneScript.g:16966:1: ( '.' )\r\n {\r\n // InternalDroneScript.g:16966:1: ( '.' )\r\n // InternalDroneScript.g:16967:2: '.'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getFullStopKeyword_1()); \r\n }\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getFullStopKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11970:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11972:1: ruleQualifiedNameWithWildCard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_123994);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5213:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5214:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName11974);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleQualifiedName.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName11985); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "private static String getFullyQualifiedImport(\n\t\t\tImportDeclaration importDeclaration) {\n\t\tNameExpr nameExpr = importDeclaration.getName();\n\n\t\tString buf = nameExpr.getName();\n\n\t\twhile (nameExpr instanceof QualifiedNameExpr) {\n\t\t\tnameExpr = ((QualifiedNameExpr) nameExpr).getQualifier();\n\t\t\tbuf = nameExpr.getName() + \".\" + buf;\n\t\t}\n\n\t\treturn buf;\n\t}", "public final EObject entryRuleQualifiedName() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleQualifiedName = null;\n\n\n try {\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6197:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../org.eclipselabs.mscript.language/src-gen/org/eclipselabs/mscript/language/parser/antlr/internal/InternalMscript.g:6198:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n currentNode = createCompositeNode(grammarAccess.getQualifiedNameRule(), currentNode); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName10823);\n iv_ruleQualifiedName=ruleQualifiedName();\n _fsp--;\n\n current =iv_ruleQualifiedName; \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName10833); \n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2238:1: ( ruleQualifiedNameWithWildcard EOF )\r\n // InternalDroneScript.g:2239:1: ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22765:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22767:1: ruleQualifiedNameWithWildCard\n {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_145606);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4255:1: ( ( ruleQualifiedNameWithWildcard ) )\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n {\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n // InternalCsv.g:4257:3: ruleQualifiedNameWithWildcard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:257:1: ( ruleQualifiedName EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:258:1: ruleQualifiedName EOF\n {\n before(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName481);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName488); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__StaticAssignment_1_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4145:1: ( ( ( 'static' ) ) )\n // InternalCsv.g:4146:2: ( ( 'static' ) )\n {\n // InternalCsv.g:4146:2: ( ( 'static' ) )\n // InternalCsv.g:4147:3: ( 'static' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n // InternalCsv.g:4148:3: ( 'static' )\n // InternalCsv.g:4149:4: 'static'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n match(input,41,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19613:1: ( ( ruleQualifiedNameWithWildcard ) )\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n {\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n // InternalDroneScript.g:19615:3: ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3625:1: ( rule__QualifiedNameInStaticImport__Group__1__Impl )\n // InternalCsv.g:3626:2: rule__QualifiedNameInStaticImport__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameInStaticImport__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleXImportDeclaration() throws RecognitionException {\n try {\n // InternalCsv.g:605:1: ( ruleXImportDeclaration EOF )\n // InternalCsv.g:606:1: ruleXImportDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXImportDeclaration();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject ruleImportedType() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:3271:2: ( ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) ) )\n // InternalMappingDsl.g:3272:2: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) )\n {\n // InternalMappingDsl.g:3272:2: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) )\n // InternalMappingDsl.g:3273:3: ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) )\n {\n // InternalMappingDsl.g:3273:3: ( (otherlv_0= RULE_ID ) )\n // InternalMappingDsl.g:3274:4: (otherlv_0= RULE_ID )\n {\n // InternalMappingDsl.g:3274:4: (otherlv_0= RULE_ID )\n // InternalMappingDsl.g:3275:5: otherlv_0= RULE_ID\n {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportedTypeRule());\n \t\t\t\t\t}\n \t\t\t\t\n otherlv_0=(Token)match(input,RULE_ID,FOLLOW_32); \n\n \t\t\t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportedTypeAccess().getImportImportCrossReference_0_0());\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_1=(Token)match(input,29,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_1, grammarAccess.getImportedTypeAccess().getColonColonKeyword_1());\n \t\t\n // InternalMappingDsl.g:3290:3: ( ( ruleQualifiedName ) )\n // InternalMappingDsl.g:3291:4: ( ruleQualifiedName )\n {\n // InternalMappingDsl.g:3291:4: ( ruleQualifiedName )\n // InternalMappingDsl.g:3292:5: ruleQualifiedName\n {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportedTypeRule());\n \t\t\t\t\t}\n \t\t\t\t\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportedTypeAccess().getTypeTypeCrossReference_2_0());\n \t\t\t\t\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n\n\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__QualifiedNameInStaticImport__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16954:1: ( rule__QualifiedNameInStaticImport__Group__1__Impl )\r\n // InternalDroneScript.g:16955:2: rule__QualifiedNameInStaticImport__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameInStaticImport__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedNameWithWildcard = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5256:2: (iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5257:2: iv_ruleQualifiedNameWithWildcard= ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_entryRuleQualifiedNameWithWildcard12117);\r\n iv_ruleQualifiedNameWithWildcard=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleQualifiedNameWithWildcard.getText(); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildcard12128); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject ruleTypeImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalNgt.g:1345:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // InternalNgt.g:1346:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // InternalNgt.g:1346:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // InternalNgt.g:1347:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_5); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getTypeImportAccess().getImportKeyword_0());\n \t\t\n // InternalNgt.g:1351:3: ( (lv_importURI_1_0= RULE_STRING ) )\n // InternalNgt.g:1352:4: (lv_importURI_1_0= RULE_STRING )\n {\n // InternalNgt.g:1352:4: (lv_importURI_1_0= RULE_STRING )\n // InternalNgt.g:1353:5: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getTypeImportAccess().getImportURISTRINGTerminalRuleCall_1_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getTypeImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleXImportDeclaration() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2320:1: ( ruleXImportDeclaration EOF )\r\n // InternalDroneScript.g:2321:1: ruleXImportDeclaration EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleXImportDeclaration();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "@Override\n public String visit(ImportDeclaration n, Object arg) {\n return null;\n }", "public final EObject ruleImportNamespace() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_0=null;\r\n AntlrDatatypeRuleToken lv_importedNamespace_1_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5309:28: ( (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:3: otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n {\r\n otherlv_0=(Token)match(input,78,FOLLOW_78_in_ruleImportNamespace12287); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_0, grammarAccess.getImportNamespaceAccess().getImportKeyword_0());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5314:1: ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5316:3: lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getImportNamespaceAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_ruleImportNamespace12308);\r\n lv_importedNamespace_1_0=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getImportNamespaceRule());\r\n \t }\r\n \t\tset(\r\n \t\t\tcurrent, \r\n \t\t\t\"importedNamespace\",\r\n \t\tlv_importedNamespace_1_0, \r\n \t\t\"QualifiedNameWithWildcard\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public void addImport(java.lang.String ximport)\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.apache.xmlbeans.SimpleValue target = null;\n target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(IMPORT$0);\n target.setStringValue(ximport);\n }\n }", "private ParseTree parseImportSpecifier() {\n SourcePosition start = getTreeStartLocation();\n IdentifierToken importedName = eatIdOrKeywordAsId();\n IdentifierToken destinationName = null;\n if (peekPredefinedString(PredefinedName.AS)) {\n eatPredefinedString(PredefinedName.AS);\n destinationName = eatId();\n } else if (isKeyword(importedName.value)) {\n reportExpectedError(null, PredefinedName.AS);\n }\n return new ImportSpecifierTree(getTreeLocation(start), importedName, destinationName);\n }", "public final void rule__XImportDeclaration__StaticAssignment_1_0_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19503:1: ( ( ( 'static' ) ) )\r\n // InternalDroneScript.g:19504:2: ( ( 'static' ) )\r\n {\r\n // InternalDroneScript.g:19504:2: ( ( 'static' ) )\r\n // InternalDroneScript.g:19505:3: ( 'static' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n // InternalDroneScript.g:19506:3: ( 'static' )\r\n // InternalDroneScript.g:19507:4: 'static'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n match(input,46,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final PythonParser.import_name_return import_name() throws RecognitionException {\n PythonParser.import_name_return retval = new PythonParser.import_name_return();\n retval.start = input.LT(1);\n\n PythonTree root_0 = null;\n\n Token IMPORT104=null;\n PythonParser.dotted_as_names_return dotted_as_names105 = null;\n\n\n PythonTree IMPORT104_tree=null;\n RewriteRuleTokenStream stream_IMPORT=new RewriteRuleTokenStream(adaptor,\"token IMPORT\");\n RewriteRuleSubtreeStream stream_dotted_as_names=new RewriteRuleSubtreeStream(adaptor,\"rule dotted_as_names\");\n try {\n // /run/media/abhi/0cc7e6ad-008e-43cd-b47d-f3ed6f127f92/home/abhi/dacapo-9.12-bach-src (2)/benchmarks/bms/jython/build/grammar/Python.g:775:5: ( IMPORT dotted_as_names -> ^( IMPORT[$IMPORT, $dotted_as_names.atypes] ) )\n // /run/media/abhi/0cc7e6ad-008e-43cd-b47d-f3ed6f127f92/home/abhi/dacapo-9.12-bach-src (2)/benchmarks/bms/jython/build/grammar/Python.g:775:7: IMPORT dotted_as_names\n {\n IMPORT104=(Token)match(input,IMPORT,FOLLOW_IMPORT_in_import_name2865); if (state.failed) return retval; \n if ( state.backtracking==0 ) stream_IMPORT.add(IMPORT104);\n\n pushFollow(FOLLOW_dotted_as_names_in_import_name2867);\n dotted_as_names105=dotted_as_names();\n\n state._fsp--;\n if (state.failed) return retval;\n if ( state.backtracking==0 ) stream_dotted_as_names.add(dotted_as_names105.getTree());\n\n\n // AST REWRITE\n // elements: IMPORT\n // token labels: \n // rule labels: retval\n // token list labels: \n // rule list labels: \n // wildcard labels: \n if ( state.backtracking==0 ) {\n retval.tree = root_0;\n RewriteRuleSubtreeStream stream_retval=new RewriteRuleSubtreeStream(adaptor,\"rule retval\",retval!=null?retval.tree:null);\n\n root_0 = (PythonTree)adaptor.nil();\n // 776:4: -> ^( IMPORT[$IMPORT, $dotted_as_names.atypes] )\n {\n // /run/media/abhi/0cc7e6ad-008e-43cd-b47d-f3ed6f127f92/home/abhi/dacapo-9.12-bach-src (2)/benchmarks/bms/jython/build/grammar/Python.g:776:7: ^( IMPORT[$IMPORT, $dotted_as_names.atypes] )\n {\n PythonTree root_1 = (PythonTree)adaptor.nil();\n root_1 = (PythonTree)adaptor.becomeRoot(new Import(IMPORT, IMPORT104, (dotted_as_names105!=null?dotted_as_names105.atypes:null)), root_1);\n\n adaptor.addChild(root_0, root_1);\n }\n\n }\n\n retval.tree = root_0;}\n }\n\n retval.stop = input.LT(-1);\n\n if ( state.backtracking==0 ) {\n\n retval.tree = (PythonTree)adaptor.rulePostProcessing(root_0);\n adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\n }\n }\n\n catch (RecognitionException re) {\n errorHandler.reportError(this, re);\n errorHandler.recover(this, input,re);\n retval.tree = (PythonTree)adaptor.errorNode(input, retval.start, input.LT(-1), re);\n }\n finally {\n }\n return retval;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3610:1: ( ( ruleValidID ) )\n // InternalCsv.g:3611:1: ( ruleValidID )\n {\n // InternalCsv.g:3611:1: ( ruleValidID )\n // InternalCsv.g:3612:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n enterRule(); \n \n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:298:28: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_15_in_ruleImport672); \n\n \tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:303:1: ( (lv_importURI_1_0= RULE_STRING ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:305:3: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_RULE_STRING_in_ruleImport689); \n\n \t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_1_0()); \n \t\t\n\n \t if (current==null) {\n \t current = createModelElement(grammarAccess.getImportRule());\n \t }\n \t\tsetWithLastConsumed(\n \t\t\tcurrent, \n \t\t\t\"importURI\",\n \t\tlv_importURI_1_0, \n \t\t\"STRING\");\n \t \n\n }\n\n\n }\n\n\n }\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:140:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) ) )\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n {\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n // InternalMyDsl.g:142:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n {\n otherlv_0=(Token)match(input,19,FOLLOW_5); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n }\n // InternalMyDsl.g:146:3: ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n {\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n // InternalMyDsl.g:148:5: lv_importURI_1_0= RULE_IMPORT_URI\n {\n lv_importURI_1_0=(Token)match(input,RULE_IMPORT_URI,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURIIMPORT_URITerminalRuleCall_1_0());\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.xtext.example.mydsl.MyDsl.IMPORT_URI\");\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_2=null;\n Token lv_importURI_3_0=null;\n Token otherlv_4=null;\n Token lv_name_5_0=null;\n Enumerator lv_importType_1_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:1810:2: ( (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) ) )\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n {\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n // InternalMappingDsl.g:1812:3: otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) )\n {\n otherlv_0=(Token)match(input,35,FOLLOW_45); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n // InternalMappingDsl.g:1816:3: ( (lv_importType_1_0= ruleImportType ) )\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n {\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n // InternalMappingDsl.g:1818:5: lv_importType_1_0= ruleImportType\n {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportAccess().getImportTypeImportTypeEnumRuleCall_1_0());\n \t\t\t\t\n pushFollow(FOLLOW_46);\n lv_importType_1_0=ruleImportType();\n\n state._fsp--;\n\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importType\",\n \t\t\t\t\t\tlv_importType_1_0,\n \t\t\t\t\t\t\"de.fhdo.ddmm.technology.mappingdsl.MappingDsl.ImportType\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_2=(Token)match(input,36,FOLLOW_41); \n\n \t\t\tnewLeafNode(otherlv_2, grammarAccess.getImportAccess().getFromKeyword_2());\n \t\t\n // InternalMappingDsl.g:1839:3: ( (lv_importURI_3_0= RULE_STRING ) )\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n {\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n // InternalMappingDsl.g:1841:5: lv_importURI_3_0= RULE_STRING\n {\n lv_importURI_3_0=(Token)match(input,RULE_STRING,FOLLOW_47); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_3_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_3_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_3_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_4=(Token)match(input,37,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_4, grammarAccess.getImportAccess().getAsKeyword_4());\n \t\t\n // InternalMappingDsl.g:1861:3: ( (lv_name_5_0= RULE_ID ) )\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n {\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n // InternalMappingDsl.g:1863:5: lv_name_5_0= RULE_ID\n {\n lv_name_5_0=(Token)match(input,RULE_ID,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_name_5_0, grammarAccess.getImportAccess().getNameIDTerminalRuleCall_5_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"name\",\n \t\t\t\t\t\tlv_name_5_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.ID\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16939:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n // InternalDroneScript.g:16941:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:542:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n {\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n // InternalCsv.g:544:3: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // InternalCsv.g:545:3: ( rule__QualifiedName__Group__0 )\n // InternalCsv.g:545:4: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void addStaticWildcardImport(ClassEntity importEntity)\n {\n staticWildcardImports.add(importEntity);\n }", "public final void entryRuleImport() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:91:1: ( ruleImport EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:92:1: ruleImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportRule()); \n }\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport127);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport134); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void testAttributeConstrainedDynamicImport() throws Exception {\n\t\tdoTest(\";foo=bar\", TEST_IMPORT_SYM_NAME + \"_1.0.0\");\n\t}", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:119:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:120:1: ruleQualifiedNameWithWildCard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard187);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard194); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==38) ) {\n alt10=1;\n }\n else if ( (LA10_0==RULE_ID) ) {\n alt10=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 10, 0, input);\n\n throw nvae;\n }\n switch (alt10) {\n case 1 :\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n {\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n {\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "ImportDeclaration createImportDeclaration();", "public final EObject ruleTopLevelImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalNgt.g:210:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // InternalNgt.g:211:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // InternalNgt.g:211:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // InternalNgt.g:212:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_5); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getTopLevelImportAccess().getImportKeyword_0());\n \t\t\n // InternalNgt.g:216:3: ( (lv_importURI_1_0= RULE_STRING ) )\n // InternalNgt.g:217:4: (lv_importURI_1_0= RULE_STRING )\n {\n // InternalNgt.g:217:4: (lv_importURI_1_0= RULE_STRING )\n // InternalNgt.g:218:5: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getTopLevelImportAccess().getImportURISTRINGTerminalRuleCall_1_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getTopLevelImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3507:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\r\n int alt43=3;\r\n alt43 = dfa43.predict(input);\r\n switch (alt43) {\r\n case 1 :\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n // InternalDroneScript.g:3509:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n // InternalDroneScript.g:3510:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n // InternalDroneScript.g:3510:4: rule__XImportDeclaration__Group_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n {\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n // InternalDroneScript.g:3515:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n // InternalDroneScript.g:3516:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n // InternalDroneScript.g:3516:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n {\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n // InternalDroneScript.g:3521:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n // InternalDroneScript.g:3522:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n // InternalDroneScript.g:3522:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleImportCS() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n Token otherlv_2=null;\n Token otherlv_4=null;\n Token lv_isAll_6_0=null;\n AntlrDatatypeRuleToken lv_name_3_0 = null;\n\n EObject lv_ownedPathName_5_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:4162:2: ( ( (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' ) ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )? ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) ) ( (lv_isAll_6_0= '::*' ) )? ) )\n // InternalMyDsl.g:4163:2: ( (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' ) ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )? ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) ) ( (lv_isAll_6_0= '::*' ) )? )\n {\n // InternalMyDsl.g:4163:2: ( (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' ) ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )? ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) ) ( (lv_isAll_6_0= '::*' ) )? )\n // InternalMyDsl.g:4164:3: (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' ) ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )? ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) ) ( (lv_isAll_6_0= '::*' ) )?\n {\n // InternalMyDsl.g:4164:3: (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' )\n int alt47=3;\n switch ( input.LA(1) ) {\n case 19:\n {\n alt47=1;\n }\n break;\n case 60:\n {\n alt47=2;\n }\n break;\n case 61:\n {\n alt47=3;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 47, 0, input);\n\n throw nvae;\n }\n\n switch (alt47) {\n case 1 :\n // InternalMyDsl.g:4165:4: otherlv_0= 'import'\n {\n otherlv_0=(Token)match(input,19,FOLLOW_51); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportCSAccess().getImportKeyword_0_0());\n \t\t\t\n }\n\n }\n break;\n case 2 :\n // InternalMyDsl.g:4170:4: otherlv_1= 'include'\n {\n otherlv_1=(Token)match(input,60,FOLLOW_51); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_1, grammarAccess.getImportCSAccess().getIncludeKeyword_0_1());\n \t\t\t\n }\n\n }\n break;\n case 3 :\n // InternalMyDsl.g:4175:4: otherlv_2= 'library'\n {\n otherlv_2=(Token)match(input,61,FOLLOW_51); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_2, grammarAccess.getImportCSAccess().getLibraryKeyword_0_2());\n \t\t\t\n }\n\n }\n break;\n\n }\n\n // InternalMyDsl.g:4180:3: ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )?\n int alt48=2;\n int LA48_0 = input.LA(1);\n\n if ( (LA48_0==RULE_SIMPLE_ID) ) {\n int LA48_1 = input.LA(2);\n\n if ( (LA48_1==42) ) {\n alt48=1;\n }\n }\n else if ( (LA48_0==RULE_ESCAPED_ID) ) {\n int LA48_2 = input.LA(2);\n\n if ( (LA48_2==42) ) {\n alt48=1;\n }\n }\n switch (alt48) {\n case 1 :\n // InternalMyDsl.g:4181:4: ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':'\n {\n // InternalMyDsl.g:4181:4: ( (lv_name_3_0= ruleIdentifier ) )\n // InternalMyDsl.g:4182:5: (lv_name_3_0= ruleIdentifier )\n {\n // InternalMyDsl.g:4182:5: (lv_name_3_0= ruleIdentifier )\n // InternalMyDsl.g:4183:6: lv_name_3_0= ruleIdentifier\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewCompositeNode(grammarAccess.getImportCSAccess().getNameIdentifierParserRuleCall_1_0_0());\n \t\t\t\t\t\n }\n pushFollow(FOLLOW_28);\n lv_name_3_0=ruleIdentifier();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getImportCSRule());\n \t\t\t\t\t\t}\n \t\t\t\t\t\tset(\n \t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\"name\",\n \t\t\t\t\t\t\tlv_name_3_0,\n \t\t\t\t\t\t\t\"org.eclipse.ocl.xtext.base.Base.Identifier\");\n \t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\n }\n\n }\n\n\n }\n\n otherlv_4=(Token)match(input,42,FOLLOW_51); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_4, grammarAccess.getImportCSAccess().getColonKeyword_1_1());\n \t\t\t\n }\n\n }\n break;\n\n }\n\n // InternalMyDsl.g:4205:3: ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) )\n // InternalMyDsl.g:4206:4: (lv_ownedPathName_5_0= ruleURIPathNameCS )\n {\n // InternalMyDsl.g:4206:4: (lv_ownedPathName_5_0= ruleURIPathNameCS )\n // InternalMyDsl.g:4207:5: lv_ownedPathName_5_0= ruleURIPathNameCS\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportCSAccess().getOwnedPathNameURIPathNameCSParserRuleCall_2_0());\n \t\t\t\t\n }\n pushFollow(FOLLOW_52);\n lv_ownedPathName_5_0=ruleURIPathNameCS();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getImportCSRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"ownedPathName\",\n \t\t\t\t\t\tlv_ownedPathName_5_0,\n \t\t\t\t\t\t\"org.eclipse.ocl.xtext.essentialocl.EssentialOCL.URIPathNameCS\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n }\n\n }\n\n\n }\n\n // InternalMyDsl.g:4224:3: ( (lv_isAll_6_0= '::*' ) )?\n int alt49=2;\n int LA49_0 = input.LA(1);\n\n if ( (LA49_0==62) ) {\n alt49=1;\n }\n switch (alt49) {\n case 1 :\n // InternalMyDsl.g:4225:4: (lv_isAll_6_0= '::*' )\n {\n // InternalMyDsl.g:4225:4: (lv_isAll_6_0= '::*' )\n // InternalMyDsl.g:4226:5: lv_isAll_6_0= '::*'\n {\n lv_isAll_6_0=(Token)match(input,62,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(lv_isAll_6_0, grammarAccess.getImportCSAccess().getIsAllColonColonAsteriskKeyword_3_0());\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportCSRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(current, \"isAll\", true, \"::*\");\n \t\t\t\t\n }\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "protected String getImportStatement() {\n return \"\";\n }", "@Test\r\n public void testNamedImportStringHandling() throws ClassNotFoundException\r\n {\r\n TypeParser typeParser = TypeParsers.create();\r\n typeParser.addImport(\"java.util.List\");\r\n typeParser.addImport(\"java. util . Collection \");\r\n\r\n Type t0 = typeParser.parse(\"List\");\r\n assertEquals(t0, java.util.List.class);\r\n \r\n Type t1 = typeParser.parse(\"Collection\");\r\n assertEquals(t1, java.util.Collection.class);\r\n \r\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16803:1: ( ( ( ';' )? ) )\r\n // InternalDroneScript.g:16804:1: ( ( ';' )? )\r\n {\r\n // InternalDroneScript.g:16804:1: ( ( ';' )? )\r\n // InternalDroneScript.g:16805:2: ( ';' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \r\n }\r\n // InternalDroneScript.g:16806:2: ( ';' )?\r\n int alt128=2;\r\n int LA128_0 = input.LA(1);\r\n\r\n if ( (LA128_0==75) ) {\r\n alt128=1;\r\n }\r\n switch (alt128) {\r\n case 1 :\r\n // InternalDroneScript.g:16806:3: ';'\r\n {\r\n match(input,75,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "String getQualifiedName();", "public final EObject entryRuleImportNamespace() throws RecognitionException {\r\n EObject current = null;\r\n\r\n EObject iv_ruleImportNamespace = null;\r\n\r\n\r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5298:2: (iv_ruleImportNamespace= ruleImportNamespace EOF )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5299:2: iv_ruleImportNamespace= ruleImportNamespace EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n newCompositeNode(grammarAccess.getImportNamespaceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImportNamespace_in_entryRuleImportNamespace12240);\r\n iv_ruleImportNamespace=ruleImportNamespace();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n current =iv_ruleImportNamespace; \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImportNamespace12250); if (state.failed) return current;\r\n\r\n }\r\n\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "@Override\n public TypeOnDemandImportDeclaration parse(Parser parser) {\n if (!parser.peekPresentAndSkip(\"import\")) {\n return null;\n }\n //whitespace required here\n if (parseWhiteSpaceAndComments(parser).isEmpty()) {\n return null;\n }\n //simple type name\n QualifiedName name = parser.next(QualifiedName.class);\n if (name == null) {\n return null;\n }\n //spacing\n parseWhiteSpaceAndComments(parser);\n //dot\n if (!parser.peekPresentAndSkip('.')) {\n return null;\n }\n //spacing\n parseWhiteSpaceAndComments(parser);\n //asterisk\n if (!parser.peekPresentAndSkip('*')) {\n return null;\n }\n //spacing\n parseWhiteSpaceAndComments(parser);\n //semicolon\n if (!parser.peekPresentAndSkip(';')) {\n return null;\n }\n return new TypeOnDemandImportDeclaration(name);\n }", "public final void ruleImportPath() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3092:2: ( ( RULE_STRING ) )\r\n // InternalGo.g:3093:2: ( RULE_STRING )\r\n {\r\n // InternalGo.g:3093:2: ( RULE_STRING )\r\n // InternalGo.g:3094:3: RULE_STRING\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportPathAccess().getSTRINGTerminalRuleCall()); \r\n }\r\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportPathAccess().getSTRINGTerminalRuleCall()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3340:1: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n {\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n // InternalCsv.g:3342:2: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private static void validateImportString(String importString)\r\n {\r\n String tokens[] = importString.split(\"\\\\.\");\r\n for (int i=0; i<tokens.length; i++)\r\n {\r\n String token = tokens[i];\r\n if (!isValidJavaIdentifier(token) &&\r\n !(i == tokens.length-1 && token.equals(\"*\")))\r\n {\r\n throw new IllegalArgumentException(\r\n \"Invalid import string: \"+importString);\r\n }\r\n }\r\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:567:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n {\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n // InternalCsv.g:569:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n // InternalCsv.g:570:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n // InternalCsv.g:570:4: rule__QualifiedNameWithWildcard__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void imports() throws RecognitionException {\n try {\n // css21.g:46:5: ( IMPORT_SYM ( STRING | URI ) ( medium ( COMMA medium )* )? SEMI )\n // css21.g:46:9: IMPORT_SYM ( STRING | URI ) ( medium ( COMMA medium )* )? SEMI\n {\n match(input,IMPORT_SYM,FOLLOW_IMPORT_SYM_in_imports128); if (state.failed) return ;\n\n if ( input.LA(1)==STRING||input.LA(1)==URI ) {\n input.consume();\n state.errorRecovery=false;\n state.failed=false;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n MismatchedSetException mse = new MismatchedSetException(null,input);\n throw mse;\n }\n\n\n // css21.g:46:33: ( medium ( COMMA medium )* )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==IDENT) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // css21.g:46:34: medium ( COMMA medium )*\n {\n pushFollow(FOLLOW_medium_in_imports137);\n medium();\n\n state._fsp--;\n if (state.failed) return ;\n\n // css21.g:46:41: ( COMMA medium )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==COMMA) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // css21.g:46:42: COMMA medium\n \t {\n \t match(input,COMMA,FOLLOW_COMMA_in_imports140); if (state.failed) return ;\n\n \t pushFollow(FOLLOW_medium_in_imports142);\n \t medium();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n break;\n\n }\n\n\n match(input,SEMI,FOLLOW_SEMI_in_imports148); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n\n finally {\n \t// do for sure before leaving\n }\n return ;\n }", "public final void entryRuleImport() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:118:1: ( ruleImport EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:119:1: ruleImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportRule()); \r\n }\r\n pushFollow(FOLLOW_ruleImport_in_entryRuleImport187);\r\n ruleImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleImport194); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XTypeLiteral__TypeAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19041:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19042:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19042:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19043:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n // InternalDroneScript.g:19044:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19045:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public String getQualifiedName();", "public final void rule__XImportDeclaration__MemberNameAssignment_1_0_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4221:1: ( ( ruleValidID ) )\n // InternalCsv.g:4222:2: ( ruleValidID )\n {\n // InternalCsv.g:4222:2: ( ruleValidID )\n // InternalCsv.g:4223:3: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public abstract String getQualifiedName();", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3534:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\r\n int alt44=2;\r\n int LA44_0 = input.LA(1);\r\n\r\n if ( (LA44_0==36) ) {\r\n alt44=1;\r\n }\r\n else if ( (LA44_0==RULE_ID) ) {\r\n alt44=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 44, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt44) {\r\n case 1 :\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n {\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n // InternalDroneScript.g:3536:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n // InternalDroneScript.g:3537:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n // InternalDroneScript.g:3537:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n {\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n // InternalDroneScript.g:3542:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n // InternalDroneScript.g:3543:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n // InternalDroneScript.g:3543:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "String buildQualifiedName(String separator);", "public final void entryRuleQualifiedNameWithWildCard() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:285:1: ( ruleQualifiedNameWithWildCard EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:286:1: ruleQualifiedNameWithWildCard EOF\n {\n before(grammarAccess.getQualifiedNameWithWildCardRule()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_entryRuleQualifiedNameWithWildCard541);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedNameWithWildCard548); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3286:1: ( ( '.' ) )\n // InternalCsv.g:3287:1: ( '.' )\n {\n // InternalCsv.g:3287:1: ( '.' )\n // InternalCsv.g:3288:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16669:1: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n {\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n // InternalDroneScript.g:16671:2: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1548:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1550:1: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:1: ( rule__QualifiedName__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3246);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final AntlrDatatypeRuleToken ruleQualifiedName() throws RecognitionException {\n AntlrDatatypeRuleToken current = new AntlrDatatypeRuleToken();\n\n Token kw=null;\n AntlrDatatypeRuleToken this_ValidID_0 = null;\n\n AntlrDatatypeRuleToken this_ValidID_2 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3034:28: ( (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3035:1: (this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3036:5: this_ValidID_0= ruleValidID (kw= '.' this_ValidID_2= ruleValidID )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7241);\n this_ValidID_0=ruleValidID();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\tcurrent.merge(this_ValidID_0);\n \n }\n if ( state.backtracking==0 ) {\n \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3046:1: (kw= '.' this_ValidID_2= ruleValidID )*\n loop41:\n do {\n int alt41=2;\n int LA41_0 = input.LA(1);\n\n if ( (LA41_0==40) ) {\n alt41=1;\n }\n\n\n switch (alt41) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3047:2: kw= '.' this_ValidID_2= ruleValidID\n \t {\n \t kw=(Token)match(input,40,FOLLOW_40_in_ruleQualifiedName7260); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t current.merge(kw);\n \t newLeafNode(kw, grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t newCompositeNode(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n \t \n \t }\n \t pushFollow(FOLLOW_ruleValidID_in_ruleQualifiedName7282);\n \t this_ValidID_2=ruleValidID();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t\tcurrent.merge(this_ValidID_2);\n \t \n \t }\n \t if ( state.backtracking==0 ) {\n \t \n \t afterParserOrEnumRuleCall();\n \t \n \t }\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop41;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "private String imported(String string) {\n string = IMPORT.matcher(string).replaceAll(\"\");\n string = DOT.matcher(string).replaceAll(\"/\");\n string = SEMICOLON.matcher(string).replaceAll(\"\");\n string = \"/\" + string.trim() + \".java\";\n return string;\n }", "public final void entryRuleXStringLiteral() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1368:1: ( ruleXStringLiteral EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1369:1: ruleXStringLiteral EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXStringLiteralRule()); \n }\n pushFollow(FOLLOW_ruleXStringLiteral_in_entryRuleXStringLiteral2853);\n ruleXStringLiteral();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXStringLiteralRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleXStringLiteral2860); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3274:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // InternalCsv.g:3275:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_5);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final PythonParser.import_stmt_return import_stmt() throws RecognitionException {\n PythonParser.import_stmt_return retval = new PythonParser.import_stmt_return();\n retval.start = input.LT(1);\n\n PythonTree root_0 = null;\n\n PythonParser.import_name_return import_name102 = null;\n\n PythonParser.import_from_return import_from103 = null;\n\n\n\n try {\n // /run/media/abhi/0cc7e6ad-008e-43cd-b47d-f3ed6f127f92/home/abhi/dacapo-9.12-bach-src (2)/benchmarks/bms/jython/build/grammar/Python.g:769:5: ( import_name | import_from )\n int alt48=2;\n int LA48_0 = input.LA(1);\n\n if ( (LA48_0==IMPORT) ) {\n alt48=1;\n }\n else if ( (LA48_0==FROM) ) {\n alt48=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return retval;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 48, 0, input);\n\n throw nvae;\n }\n switch (alt48) {\n case 1 :\n // /run/media/abhi/0cc7e6ad-008e-43cd-b47d-f3ed6f127f92/home/abhi/dacapo-9.12-bach-src (2)/benchmarks/bms/jython/build/grammar/Python.g:769:7: import_name\n {\n root_0 = (PythonTree)adaptor.nil();\n\n pushFollow(FOLLOW_import_name_in_import_stmt2839);\n import_name102=import_name();\n\n state._fsp--;\n if (state.failed) return retval;\n if ( state.backtracking==0 ) adaptor.addChild(root_0, import_name102.getTree());\n\n }\n break;\n case 2 :\n // /run/media/abhi/0cc7e6ad-008e-43cd-b47d-f3ed6f127f92/home/abhi/dacapo-9.12-bach-src (2)/benchmarks/bms/jython/build/grammar/Python.g:770:7: import_from\n {\n root_0 = (PythonTree)adaptor.nil();\n\n pushFollow(FOLLOW_import_from_in_import_stmt2847);\n import_from103=import_from();\n\n state._fsp--;\n if (state.failed) return retval;\n if ( state.backtracking==0 ) adaptor.addChild(root_0, import_from103.getTree());\n\n }\n break;\n\n }\n retval.stop = input.LT(-1);\n\n if ( state.backtracking==0 ) {\n\n retval.tree = (PythonTree)adaptor.rulePostProcessing(root_0);\n adaptor.setTokenBoundaries(retval.tree, retval.start, retval.stop);\n }\n }\n\n catch (RecognitionException re) {\n errorHandler.reportError(this, re);\n errorHandler.recover(this, input,re);\n retval.tree = (PythonTree)adaptor.errorNode(input, retval.start, input.LT(-1), re);\n }\n finally {\n }\n return retval;\n }", "public final void entryRuleStaticQualifier() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1470:1: ( ruleStaticQualifier EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1471:1: ruleStaticQualifier EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStaticQualifierRule()); \r\n }\r\n pushFollow(FOLLOW_ruleStaticQualifier_in_entryRuleStaticQualifier3074);\r\n ruleStaticQualifier();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStaticQualifierRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleStaticQualifier3081); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "String getImportedNamespace();", "public void addStaticImport(String name, ClassEntity importEntity)\n {\n List l = (List) staticImports.get(name);\n if (l == null) {\n l = new ArrayList();\n staticImports.put(name, l);\n }\n l.add(importEntity);\n }", "static public String[] parseImport(String value) {\n \treturn value.split(\";\");\n }", "public final EObject entryRuleImport() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleImport = null;\n\n\n try {\n // InternalMappingDsl.g:1797:47: (iv_ruleImport= ruleImport EOF )\n // InternalMappingDsl.g:1798:2: iv_ruleImport= ruleImport EOF\n {\n newCompositeNode(grammarAccess.getImportRule()); \n pushFollow(FOLLOW_1);\n iv_ruleImport=ruleImport();\n\n state._fsp--;\n\n current =iv_ruleImport; \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XTypeLiteral__TypeAssignment_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18843:1: ( ( ( ruleQualifiedName ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18844:1: ( ( ruleQualifiedName ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18844:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18845:1: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18846:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18847:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__XTypeLiteral__TypeAssignment_338082);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeQualifiedNameParserRuleCall_3_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXTypeLiteralAccess().getTypeJvmTypeCrossReference_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void addWildcardImport(PackageOrClass importEntity)\n {\n wildcardImports.add(importEntity);\n }", "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1942:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n // InternalDroneScript.g:1944:3: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1945:3: ( rule__QualifiedName__Group__0 )\r\n // InternalDroneScript.g:1945:4: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__WildcardAssignment_1_0_3_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4202:1: ( ( ( '*' ) ) )\n // InternalCsv.g:4203:2: ( ( '*' ) )\n {\n // InternalCsv.g:4203:2: ( ( '*' ) )\n // InternalCsv.g:4204:3: ( '*' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n // InternalCsv.g:4205:3: ( '*' )\n // InternalCsv.g:4206:4: '*'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n match(input,38,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__MemberNameAssignment_1_0_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19579:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:19580:2: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:19580:2: ( ruleValidID )\r\n // InternalDroneScript.g:19581:3: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.77367187", "0.70896614", "0.7071718", "0.6836874", "0.65959406", "0.6587286", "0.6459045", "0.63342625", "0.62245876", "0.61844236", "0.61840105", "0.61751133", "0.6171493", "0.61401594", "0.61293197", "0.60586196", "0.6033366", "0.6008337", "0.59725934", "0.5970421", "0.59696096", "0.596211", "0.59378004", "0.5929451", "0.59236616", "0.58655024", "0.581476", "0.58014613", "0.57795864", "0.57759494", "0.5760393", "0.56913173", "0.5670778", "0.56523097", "0.56386125", "0.5601592", "0.5539526", "0.5479825", "0.54349905", "0.5432988", "0.5428698", "0.5421427", "0.53824276", "0.5348082", "0.5344992", "0.5335251", "0.53229916", "0.5286302", "0.52424467", "0.52320963", "0.51857907", "0.51769376", "0.5167163", "0.51500434", "0.51477545", "0.5121457", "0.51091266", "0.51084566", "0.5106584", "0.50919807", "0.5050986", "0.50464565", "0.50388145", "0.50219756", "0.49955258", "0.49867383", "0.49735352", "0.49726477", "0.49713996", "0.4965543", "0.4958535", "0.49546644", "0.49258035", "0.48957765", "0.48669407", "0.48635", "0.4854556", "0.48394197", "0.48138347", "0.4782995", "0.47664243", "0.47581694", "0.47551405", "0.4748534", "0.47200885", "0.4708293", "0.46938854", "0.46930557", "0.4690961", "0.46878988", "0.4686433", "0.4681388", "0.46773368", "0.46719578", "0.46690392", "0.4664543", "0.46638015", "0.46624336", "0.46618012", "0.46612448" ]
0.81016636
0
$ANTLR end "entryRuleQualifiedNameInStaticImport" $ANTLR start "ruleQualifiedNameInStaticImport" InternalCsv.g:638:1: ruleQualifiedNameInStaticImport : ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ) ;
public final void ruleQualifiedNameInStaticImport() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) ) // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) { // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) { // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); } // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 ) // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0 { pushFollow(FOLLOW_3); rule__QualifiedNameInStaticImport__Group__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); } } // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )* { if ( state.backtracking==0 ) { before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); } // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )* loop1: do { int alt1=2; int LA1_0 = input.LA(1); if ( (LA1_0==RULE_ID) ) { int LA1_2 = input.LA(2); if ( (LA1_2==33) ) { alt1=1; } } switch (alt1) { case 1 : // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0 { pushFollow(FOLLOW_3); rule__QualifiedNameInStaticImport__Group__0(); state._fsp--; if (state.failed) return ; } break; default : break loop1; } } while (true); if ( state.backtracking==0 ) { after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); } } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2357:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n {\r\n // InternalDroneScript.g:2358:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n {\r\n // InternalDroneScript.g:2359:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\r\n // InternalDroneScript.g:2360:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2361:4: ( rule__QualifiedNameInStaticImport__Group__0 )\r\n // InternalDroneScript.g:2361:5: rule__QualifiedNameInStaticImport__Group__0\r\n {\r\n pushFollow(FOLLOW_4);\r\n rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n // InternalDroneScript.g:2364:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\r\n // InternalDroneScript.g:2365:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2366:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\r\n loop2:\r\n do {\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( (LA2_0==RULE_ID) ) {\r\n int LA2_2 = input.LA(2);\r\n\r\n if ( (LA2_2==43) ) {\r\n alt2=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt2) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:2366:5: rule__QualifiedNameInStaticImport__Group__0\r\n \t {\r\n \t pushFollow(FOLLOW_4);\r\n \t rule__QualifiedNameInStaticImport__Group__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop2;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3598:1: ( rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1 )\n // InternalCsv.g:3599:2: rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameInStaticImport__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameInStaticImport__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\n try {\n // InternalCsv.g:630:1: ( ruleQualifiedNameInStaticImport EOF )\n // InternalCsv.g:631:1: ruleQualifiedNameInStaticImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16927:1: ( rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1 )\r\n // InternalDroneScript.g:16928:2: rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__QualifiedNameInStaticImport__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameInStaticImport__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3636:1: ( ( '.' ) )\n // InternalCsv.g:3637:1: ( '.' )\n {\n // InternalCsv.g:3637:1: ( '.' )\n // InternalCsv.g:3638:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getFullStopKeyword_1()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getFullStopKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2345:1: ( ruleQualifiedNameInStaticImport EOF )\r\n // InternalDroneScript.g:2346:1: ruleQualifiedNameInStaticImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16965:1: ( ( '.' ) )\r\n // InternalDroneScript.g:16966:1: ( '.' )\r\n {\r\n // InternalDroneScript.g:16966:1: ( '.' )\r\n // InternalDroneScript.g:16967:2: '.'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getFullStopKeyword_1()); \r\n }\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getFullStopKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3625:1: ( rule__QualifiedNameInStaticImport__Group__1__Impl )\n // InternalCsv.g:3626:2: rule__QualifiedNameInStaticImport__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameInStaticImport__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16954:1: ( rule__QualifiedNameInStaticImport__Group__1__Impl )\r\n // InternalDroneScript.g:16955:2: rule__QualifiedNameInStaticImport__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameInStaticImport__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3610:1: ( ( ruleValidID ) )\n // InternalCsv.g:3611:1: ( ruleValidID )\n {\n // InternalCsv.g:3611:1: ( ruleValidID )\n // InternalCsv.g:3612:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:542:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n {\n // InternalCsv.g:543:2: ( ( rule__QualifiedName__Group__0 ) )\n // InternalCsv.g:544:3: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // InternalCsv.g:545:3: ( rule__QualifiedName__Group__0 )\n // InternalCsv.g:545:4: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16939:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:16940:1: ( ruleValidID )\r\n // InternalDroneScript.g:16941:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4183:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n {\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n // InternalCsv.g:4185:3: ( ruleQualifiedNameInStaticImport )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n // InternalCsv.g:4186:3: ( ruleQualifiedNameInStaticImport )\n // InternalCsv.g:4187:4: ruleQualifiedNameInStaticImport\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3340:1: ( ( ruleQualifiedName ) )\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n {\n // InternalCsv.g:3341:1: ( ruleQualifiedName )\n // InternalCsv.g:3342:2: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:567:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n {\n // InternalCsv.g:568:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\n // InternalCsv.g:569:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n // InternalCsv.g:570:3: ( rule__QualifiedNameWithWildcard__Group__0 )\n // InternalCsv.g:570:4: rule__QualifiedNameWithWildcard__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3286:1: ( ( '.' ) )\n // InternalCsv.g:3287:1: ( '.' )\n {\n // InternalCsv.g:3287:1: ( '.' )\n // InternalCsv.g:3288:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19541:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n {\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n // InternalDroneScript.g:19543:3: ( ruleQualifiedNameInStaticImport )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n // InternalDroneScript.g:19544:3: ( ruleQualifiedNameInStaticImport )\r\n // InternalDroneScript.g:19545:4: ruleQualifiedNameInStaticImport\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3274:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // InternalCsv.g:3275:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_5);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1548:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1549:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1550:1: ( rule__QualifiedName__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:1: ( rule__QualifiedName__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1551:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3246);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1797:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1798:1: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1798:1: ( ( rule__QualifiedName__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1799:1: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1800:1: ( rule__QualifiedName__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1800:2: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName3784);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedName() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1942:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:1943:2: ( ( rule__QualifiedName__Group__0 ) )\r\n // InternalDroneScript.g:1944:3: ( rule__QualifiedName__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:1945:3: ( rule__QualifiedName__Group__0 )\r\n // InternalDroneScript.g:1945:4: rule__QualifiedName__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3258:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // InternalCsv.g:3259:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // InternalCsv.g:3259:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // InternalCsv.g:3260:2: ( rule__QualifiedName__Group_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n // InternalCsv.g:3261:2: ( rule__QualifiedName__Group_1__0 )*\n loop26:\n do {\n int alt26=2;\n int LA26_0 = input.LA(1);\n\n if ( (LA26_0==33) ) {\n int LA26_2 = input.LA(2);\n\n if ( (LA26_2==RULE_ID) ) {\n alt26=1;\n }\n\n\n }\n\n\n switch (alt26) {\n \tcase 1 :\n \t // InternalCsv.g:3261:3: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_35);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop26;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedName() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:269:2: ( ( ( rule__QualifiedName__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:270:1: ( ( rule__QualifiedName__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:270:1: ( ( rule__QualifiedName__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:271:1: ( rule__QualifiedName__Group__0 )\n {\n before(grammarAccess.getQualifiedNameAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:272:1: ( rule__QualifiedName__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:272:2: rule__QualifiedName__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0_in_ruleQualifiedName514);\n rule__QualifiedName__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getQualifiedNameAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16669:1: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n {\r\n // InternalDroneScript.g:16670:1: ( ruleQualifiedName )\r\n // InternalDroneScript.g:16671:2: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getQualifiedNameParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleQualifiedNameWithWildcard() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2250:2: ( ( ( rule__QualifiedNameWithWildcard__Group__0 ) ) )\r\n // InternalDroneScript.g:2251:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2251:2: ( ( rule__QualifiedNameWithWildcard__Group__0 ) )\r\n // InternalDroneScript.g:2252:3: ( rule__QualifiedNameWithWildcard__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2253:3: ( rule__QualifiedNameWithWildcard__Group__0 )\r\n // InternalDroneScript.g:2253:4: rule__QualifiedNameWithWildcard__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3328:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\n // InternalCsv.g:3329:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameWithWildcard__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15509:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15510:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15510:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15511:1: ( rule__QualifiedName__Group_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15512:1: ( rule__QualifiedName__Group_1__0 )*\r\n loop98:\r\n do {\r\n int alt98=2;\r\n int LA98_0 = input.LA(1);\r\n\r\n if ( (LA98_0==37) ) {\r\n int LA98_2 = input.LA(2);\r\n\r\n if ( (LA98_2==RULE_ID) ) {\r\n int LA98_3 = input.LA(3);\r\n\r\n if ( (synpred155_InternalFin()) ) {\r\n alt98=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt98) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15512:2: rule__QualifiedName__Group_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__QualifiedName__Group_1__0_in_rule__QualifiedName__Group__1__Impl31359);\r\n \t rule__QualifiedName__Group_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop98;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15542:1: ( ( ( '.' ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15543:1: ( ( '.' ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15543:1: ( ( '.' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15544:1: ( '.' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15545:1: ( '.' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15546:2: '.'\r\n {\r\n match(input,37,FOLLOW_37_in_rule__QualifiedName__Group_1__0__Impl31426); if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11054:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11055:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__0__Impl_in_rule__QualifiedName__Group_1__022189);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1_in_rule__QualifiedName__Group_1__022192);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15530:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15531:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__0__Impl_in_rule__QualifiedName__Group_1__031394);\r\n rule__QualifiedName__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1_in_rule__QualifiedName__Group_1__031397);\r\n rule__QualifiedName__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15064:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\r\n // InternalDroneScript.g:15065:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\r\n {\r\n pushFollow(FOLLOW_6);\r\n rule__QualifiedName__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // InternalCsv.g:530:1: ( ruleQualifiedName EOF )\n // InternalCsv.g:531:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4219:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4220:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__0__Impl_in_rule__QualifiedName__Group_1__09041);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1_in_rule__QualifiedName__Group_1__09044);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3367:1: ( ( '.' ) )\n // InternalCsv.g:3368:1: ( '.' )\n {\n // InternalCsv.g:3368:1: ( '.' )\n // InternalCsv.g:3369:2: '.'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \n }\n match(input,33,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2638:1: ( ( ruleQualifiedName ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2639:1: ( ruleQualifiedName )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2639:1: ( ruleQualifiedName )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2640:1: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildCard__Group__0__Impl5669);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11033:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11034:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11034:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11035:1: ( rule__QualifiedName__Group_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11036:1: ( rule__QualifiedName__Group_1__0 )*\n loop68:\n do {\n int alt68=2;\n int LA68_0 = input.LA(1);\n\n if ( (LA68_0==30) ) {\n int LA68_2 = input.LA(2);\n\n if ( (LA68_2==RULE_ID) ) {\n int LA68_3 = input.LA(3);\n\n if ( (synpred89_InternalInstances()) ) {\n alt68=1;\n }\n\n\n }\n\n\n }\n\n\n switch (alt68) {\n \tcase 1 :\n \t // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11036:2: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_rule__QualifiedName__Group_1__0_in_rule__QualifiedName__Group__1__Impl22154);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop68;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10993:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10994:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0__Impl_in_rule__QualifiedName__Group__022068);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__QualifiedName__Group__1_in_rule__QualifiedName__Group__022071);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3355:1: ( rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2 )\n // InternalCsv.g:3356:2: rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2\n {\n pushFollow(FOLLOW_39);\n rule__QualifiedNameWithWildcard__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15010:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\r\n // InternalDroneScript.g:15011:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__QualifiedName__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15469:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15470:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__0__Impl_in_rule__QualifiedName__Group__031273);\r\n rule__QualifiedName__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__QualifiedName__Group__1_in_rule__QualifiedName__Group__031276);\r\n rule__QualifiedName__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11066:1: ( ( ( '.' ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11067:1: ( ( '.' ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11067:1: ( ( '.' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11068:1: ( '.' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11069:1: ( '.' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11070:2: '.'\n {\n match(input,30,FOLLOW_30_in_rule__QualifiedName__Group_1__0__Impl22221); if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4294:1: ( ( ruleQualifiedName ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4295:1: ( ruleQualifiedName )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4295:1: ( ruleQualifiedName )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4296:1: ruleQualifiedName\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n pushFollow(FOLLOW_ruleQualifiedName_in_rule__QualifiedNameWithWildCard__Group__0__Impl9193);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getQualifiedNameParserRuleCall_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4198:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4199:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4199:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4200:1: ( rule__QualifiedName__Group_1__0 )*\n {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4201:1: ( rule__QualifiedName__Group_1__0 )*\n loop38:\n do {\n int alt38=2;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==55) ) {\n alt38=1;\n }\n\n\n switch (alt38) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4201:2: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_rule__QualifiedName__Group_1__0_in_rule__QualifiedName__Group__1__Impl9006);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop38;\n }\n } while (true);\n\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15048:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\r\n // InternalDroneScript.g:15049:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n {\r\n // InternalDroneScript.g:15049:1: ( ( rule__QualifiedName__Group_1__0 )* )\r\n // InternalDroneScript.g:15050:2: ( rule__QualifiedName__Group_1__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n // InternalDroneScript.g:15051:2: ( rule__QualifiedName__Group_1__0 )*\r\n loop114:\r\n do {\r\n int alt114=2;\r\n int LA114_0 = input.LA(1);\r\n\r\n if ( (LA114_0==43) ) {\r\n int LA114_2 = input.LA(2);\r\n\r\n if ( (LA114_2==RULE_ID) ) {\r\n int LA114_3 = input.LA(3);\r\n\r\n if ( (synpred163_InternalDroneScript()) ) {\r\n alt114=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt114) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:15051:3: rule__QualifiedName__Group_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_106);\r\n \t rule__QualifiedName__Group_1__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop114;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15076:1: ( ( ( '.' ) ) )\r\n // InternalDroneScript.g:15077:1: ( ( '.' ) )\r\n {\r\n // InternalDroneScript.g:15077:1: ( ( '.' ) )\r\n // InternalDroneScript.g:15078:2: ( '.' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n // InternalDroneScript.g:15079:2: ( '.' )\r\n // InternalDroneScript.g:15079:3: '.'\r\n {\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16834:1: ( ( ruleQualifiedName ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16835:1: ( ruleQualifiedName )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16836:1: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_rule__Import__ImportedNamespaceAssignment_133961);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4231:1: ( ( '.' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4232:1: ( '.' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4232:1: ( '.' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4233:1: '.'\n {\n before(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n match(input,55,FOLLOW_55_in_rule__QualifiedName__Group_1__0__Impl9072); \n after(grammarAccess.getQualifiedNameAccess().getFullStopKeyword_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4158:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4159:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__0__Impl_in_rule__QualifiedName__Group__08920);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__QualifiedName__Group__1_in_rule__QualifiedName__Group__08923);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__StaticQualifier__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13727:1: ( ( '::' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13728:1: ( '::' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13728:1: ( '::' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:13729:1: '::'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStaticQualifierAccess().getColonColonKeyword_1()); \r\n }\r\n match(input,116,FOLLOW_116_in_rule__StaticQualifier__Group__1__Impl27863); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStaticQualifierAccess().getColonColonKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11970:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11972:1: ruleQualifiedNameWithWildCard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_123994);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22765:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22767:1: ruleQualifiedNameWithWildCard\n {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_145606);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\n try {\n // InternalCsv.g:555:1: ( ruleQualifiedNameWithWildcard EOF )\n // InternalCsv.g:556:1: ruleQualifiedNameWithWildcard EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleQualifiedNameWithWildCard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:131:2: ( ( ( rule__QualifiedNameWithWildCard__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:132:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:132:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:133:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:134:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:134:2: rule__QualifiedNameWithWildCard__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0_in_ruleQualifiedNameWithWildCard220);\n rule__QualifiedNameWithWildCard__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__StaticAssignment_1_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4145:1: ( ( ( 'static' ) ) )\n // InternalCsv.g:4146:2: ( ( 'static' ) )\n {\n // InternalCsv.g:4146:2: ( ( 'static' ) )\n // InternalCsv.g:4147:3: ( 'static' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n // InternalCsv.g:4148:3: ( 'static' )\n // InternalCsv.g:4149:4: 'static'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n match(input,41,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11096:1: ( ( RULE_ID ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11097:1: ( RULE_ID )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11097:1: ( RULE_ID )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11098:1: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n }\n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group_1__1__Impl22280); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private static String getFullyQualifiedImport(\n\t\t\tImportDeclaration importDeclaration) {\n\t\tNameExpr nameExpr = importDeclaration.getName();\n\n\t\tString buf = nameExpr.getName();\n\n\t\twhile (nameExpr instanceof QualifiedNameExpr) {\n\t\t\tnameExpr = ((QualifiedNameExpr) nameExpr).getQualifier();\n\t\t\tbuf = nameExpr.getName() + \".\" + buf;\n\t\t}\n\n\t\treturn buf;\n\t}", "public final void rule__QualifiedNameWithWildcard__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16657:1: ( rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1 )\r\n // InternalDroneScript.g:16658:2: rule__QualifiedNameWithWildcard__Group__0__Impl rule__QualifiedNameWithWildcard__Group__1\r\n {\r\n pushFollow(FOLLOW_28);\r\n rule__QualifiedNameWithWildcard__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__StaticQualifier__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9406:1: ( ( '::' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9407:1: ( '::' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9407:1: ( '::' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9408:1: '::'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getStaticQualifierAccess().getColonColonKeyword_1()); \n }\n match(input,54,FOLLOW_54_in_rule__StaticQualifier__Group__1__Impl18970); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getStaticQualifierAccess().getColonColonKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11005:1: ( ( RULE_ID ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11006:1: ( RULE_ID )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11006:1: ( RULE_ID )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11007:1: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n }\n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group__0__Impl22098); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3232:1: ( ( ruleValidID ) )\n // InternalCsv.g:3233:1: ( ruleValidID )\n {\n // InternalCsv.g:3233:1: ( ruleValidID )\n // InternalCsv.g:3234:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameWithWildCard() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:297:2: ( ( ( rule__QualifiedNameWithWildCard__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:298:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:298:1: ( ( rule__QualifiedNameWithWildCard__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:299:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:300:1: ( rule__QualifiedNameWithWildCard__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:300:2: rule__QualifiedNameWithWildCard__Group__0\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0_in_ruleQualifiedNameWithWildCard574);\n rule__QualifiedNameWithWildCard__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1536:1: ( ruleQualifiedName EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1537:1: ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3220); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3312:1: ( ( ruleValidID ) )\n // InternalCsv.g:3313:1: ( ruleValidID )\n {\n // InternalCsv.g:3313:1: ( ruleValidID )\n // InternalCsv.g:3314:2: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3301:1: ( rule__QualifiedName__Group_1__1__Impl )\n // InternalCsv.g:3302:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19594:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19596:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n // InternalDroneScript.g:19597:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19598:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildcard__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16696:1: ( ( '.' ) )\r\n // InternalDroneScript.g:16697:1: ( '.' )\r\n {\r\n // InternalDroneScript.g:16697:1: ( '.' )\r\n // InternalDroneScript.g:16698:2: '.'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \r\n }\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardAccess().getFullStopKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\r\n String current = null;\r\n\r\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\r\n\r\n\r\n try {\r\n // InternalNestDsl.g:414:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\r\n // InternalNestDsl.g:415:2: iv_ruleQualifiedName= ruleQualifiedName EOF\r\n {\r\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \r\n pushFollow(FOLLOW_1);\r\n iv_ruleQualifiedName=ruleQualifiedName();\r\n\r\n state._fsp--;\r\n\r\n current =iv_ruleQualifiedName.getText(); \r\n match(input,EOF,FOLLOW_2); \r\n\r\n }\r\n\r\n }\r\n\r\n catch (RecognitionException re) {\r\n recover(input,re);\r\n appendSkippedTokens();\r\n }\r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3247:1: ( rule__QualifiedName__Group__1__Impl )\n // InternalCsv.g:3248:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void importDeclaration() throws RecognitionException {\n int importDeclaration_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"importDeclaration\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(189, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 3) ) { return ; }\n // Java.g:190:5: ( 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';' )\n dbg.enterAlt(1);\n\n // Java.g:190:9: 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';'\n {\n dbg.location(190,9);\n match(input,27,FOLLOW_27_in_importDeclaration154); if (state.failed) return ;\n dbg.location(190,18);\n // Java.g:190:18: ( 'static' )?\n int alt9=2;\n try { dbg.enterSubRule(9);\n try { dbg.enterDecision(9);\n\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==28) ) {\n alt9=1;\n }\n } finally {dbg.exitDecision(9);}\n\n switch (alt9) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:0:0: 'static'\n {\n dbg.location(190,18);\n match(input,28,FOLLOW_28_in_importDeclaration156); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(9);}\n\n dbg.location(190,28);\n pushFollow(FOLLOW_qualifiedName_in_importDeclaration159);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(190,42);\n // Java.g:190:42: ( '.' '*' )?\n int alt10=2;\n try { dbg.enterSubRule(10);\n try { dbg.enterDecision(10);\n\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==29) ) {\n alt10=1;\n }\n } finally {dbg.exitDecision(10);}\n\n switch (alt10) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:190:43: '.' '*'\n {\n dbg.location(190,43);\n match(input,29,FOLLOW_29_in_importDeclaration162); if (state.failed) return ;\n dbg.location(190,47);\n match(input,30,FOLLOW_30_in_importDeclaration164); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(10);}\n\n dbg.location(190,53);\n match(input,26,FOLLOW_26_in_importDeclaration168); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 3, importDeclaration_StartIndex); }\n }\n dbg.location(191, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"importDeclaration\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1785:1: ( ruleQualifiedName EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1786:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName3751);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName3758); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalMappingDsl.g:6449:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalMappingDsl.g:6450:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleStaticQualifier() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1482:2: ( ( ( ( rule__StaticQualifier__Group__0 ) ) ( ( rule__StaticQualifier__Group__0 )* ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1483:1: ( ( ( rule__StaticQualifier__Group__0 ) ) ( ( rule__StaticQualifier__Group__0 )* ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1483:1: ( ( ( rule__StaticQualifier__Group__0 ) ) ( ( rule__StaticQualifier__Group__0 )* ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1484:1: ( ( rule__StaticQualifier__Group__0 ) ) ( ( rule__StaticQualifier__Group__0 )* )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1484:1: ( ( rule__StaticQualifier__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1485:1: ( rule__StaticQualifier__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStaticQualifierAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1486:1: ( rule__StaticQualifier__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1486:2: rule__StaticQualifier__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__StaticQualifier__Group__0_in_ruleStaticQualifier3109);\r\n rule__StaticQualifier__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStaticQualifierAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1489:1: ( ( rule__StaticQualifier__Group__0 )* )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1490:1: ( rule__StaticQualifier__Group__0 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStaticQualifierAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1491:1: ( rule__StaticQualifier__Group__0 )*\r\n loop1:\r\n do {\r\n int alt1=2;\r\n int LA1_0 = input.LA(1);\r\n\r\n if ( (LA1_0==RULE_ID) ) {\r\n int LA1_2 = input.LA(2);\r\n\r\n if ( (LA1_2==116) ) {\r\n alt1=1;\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n switch (alt1) {\r\n \tcase 1 :\r\n \t // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1491:2: rule__StaticQualifier__Group__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__StaticQualifier__Group__0_in_ruleStaticQualifier3121);\r\n \t rule__StaticQualifier__Group__0();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop1;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStaticQualifierAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedNameWithWildCard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2626:1: ( rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2627:2: rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0__Impl_in_rule__QualifiedNameWithWildCard__Group__05639);\n rule__QualifiedNameWithWildCard__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__1_in_rule__QualifiedNameWithWildCard__Group__05642);\n rule__QualifiedNameWithWildCard__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalNgt.g:1709:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalNgt.g:1710:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n\n current =iv_ruleQualifiedName.getText(); \n match(input,EOF,FOLLOW_2); \n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1930:1: ( ruleQualifiedName EOF )\r\n // InternalDroneScript.g:1931:1: ruleQualifiedName EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4255:1: ( ( ruleQualifiedNameWithWildcard ) )\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n {\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n // InternalCsv.g:4257:3: ruleQualifiedNameWithWildcard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4261:1: ( ( RULE_ID ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4262:1: ( RULE_ID )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4262:1: ( RULE_ID )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4263:1: RULE_ID\n {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group_1__1__Impl9130); \n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_1_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2666:1: ( ( ( '.*' )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2667:1: ( ( '.*' )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2667:1: ( ( '.*' )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2668:1: ( '.*' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2669:1: ( '.*' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==34) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2670:2: '.*'\n {\n match(input,34,FOLLOW_34_in_rule__QualifiedNameWithWildCard__Group__1__Impl5727); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameWithWildCardAccess().getFullStopAsteriskKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildCard__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4282:1: ( rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4283:2: rule__QualifiedNameWithWildCard__Group__0__Impl rule__QualifiedNameWithWildCard__Group__1\n {\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__0__Impl_in_rule__QualifiedNameWithWildCard__Group__09163);\n rule__QualifiedNameWithWildCard__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__QualifiedNameWithWildCard__Group__1_in_rule__QualifiedNameWithWildCard__Group__09166);\n rule__QualifiedNameWithWildCard__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:103:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:105:1: ( rule__Import__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:1: ( rule__Import__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport160);\n rule__Import__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // InternalStl.g:1675:53: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // InternalStl.g:1676:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_1);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return current;\n\n }\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4170:1: ( ( RULE_ID ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4171:1: ( RULE_ID )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4171:1: ( RULE_ID )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4172:1: RULE_ID\n {\n before(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n match(input,RULE_ID,FOLLOW_RULE_ID_in_rule__QualifiedName__Group__0__Impl8950); \n after(grammarAccess.getQualifiedNameAccess().getIDTerminalRuleCall_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final String entryRuleQualifiedName() throws RecognitionException {\n String current = null;\n\n AntlrDatatypeRuleToken iv_ruleQualifiedName = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3023:2: (iv_ruleQualifiedName= ruleQualifiedName EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:3024:2: iv_ruleQualifiedName= ruleQualifiedName EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getQualifiedNameRule()); \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName7183);\n iv_ruleQualifiedName=ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleQualifiedName.getText(); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName7194); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19613:1: ( ( ruleQualifiedNameWithWildcard ) )\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n {\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n // InternalDroneScript.g:19615:3: ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3502:1: ( ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) ) )\n // InternalCsv.g:3503:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\n {\n // InternalCsv.g:3503:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\n // InternalCsv.g:3504:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \n }\n // InternalCsv.g:3505:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\n // InternalCsv.g:3505:3: rule__XImportDeclaration__StaticAssignment_1_0_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__StaticAssignment_1_0_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleStaticQualifier() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1261:2: ( ( ( ( rule__StaticQualifier__Group__0 ) ) ( ( rule__StaticQualifier__Group__0 )* ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1262:1: ( ( ( rule__StaticQualifier__Group__0 ) ) ( ( rule__StaticQualifier__Group__0 )* ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1262:1: ( ( ( rule__StaticQualifier__Group__0 ) ) ( ( rule__StaticQualifier__Group__0 )* ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1263:1: ( ( rule__StaticQualifier__Group__0 ) ) ( ( rule__StaticQualifier__Group__0 )* )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1263:1: ( ( rule__StaticQualifier__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1264:1: ( rule__StaticQualifier__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getStaticQualifierAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1265:1: ( rule__StaticQualifier__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1265:2: rule__StaticQualifier__Group__0\n {\n pushFollow(FOLLOW_rule__StaticQualifier__Group__0_in_ruleStaticQualifier2631);\n rule__StaticQualifier__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getStaticQualifierAccess().getGroup()); \n }\n\n }\n\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1268:1: ( ( rule__StaticQualifier__Group__0 )* )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1269:1: ( rule__StaticQualifier__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getStaticQualifierAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1270:1: ( rule__StaticQualifier__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==54) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1270:2: rule__StaticQualifier__Group__0\n \t {\n \t pushFollow(FOLLOW_rule__StaticQualifier__Group__0_in_ruleStaticQualifier2643);\n \t rule__StaticQualifier__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getStaticQualifierAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16684:1: ( rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2 )\r\n // InternalDroneScript.g:16685:2: rule__QualifiedNameWithWildcard__Group__1__Impl rule__QualifiedNameWithWildcard__Group__2\r\n {\r\n pushFollow(FOLLOW_112);\r\n rule__QualifiedNameWithWildcard__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedNameWithWildcard__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleQualifiedName() throws RecognitionException {\n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:257:1: ( ruleQualifiedName EOF )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:258:1: ruleQualifiedName EOF\n {\n before(grammarAccess.getQualifiedNameRule()); \n pushFollow(FOLLOW_ruleQualifiedName_in_entryRuleQualifiedName481);\n ruleQualifiedName();\n\n state._fsp--;\n\n after(grammarAccess.getQualifiedNameRule()); \n match(input,EOF,FOLLOW_EOF_in_entryRuleQualifiedName488); \n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11085:1: ( rule__QualifiedName__Group_1__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11086:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1__Impl_in_rule__QualifiedName__Group_1__122253);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void synpred163_InternalDroneScript_fragment() throws RecognitionException { \r\n // InternalDroneScript.g:15051:3: ( rule__QualifiedName__Group_1__0 )\r\n // InternalDroneScript.g:15051:3: rule__QualifiedName__Group_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11022:1: ( rule__QualifiedName__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11023:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__1__Impl_in_rule__QualifiedName__Group__122127);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameWithWildcard() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2238:1: ( ruleQualifiedNameWithWildcard EOF )\r\n // InternalDroneScript.g:2239:1: ruleQualifiedNameWithWildcard EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameWithWildcardRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15561:1: ( rule__QualifiedName__Group_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15562:2: rule__QualifiedName__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1__Impl_in_rule__QualifiedName__Group_1__131458);\r\n rule__QualifiedName__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15022:1: ( ( ruleValidID ) )\r\n // InternalDroneScript.g:15023:1: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:15023:1: ( ruleValidID )\r\n // InternalDroneScript.g:15024:2: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__StaticAssignment_1_0_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19503:1: ( ( ( 'static' ) ) )\r\n // InternalDroneScript.g:19504:2: ( ( 'static' ) )\r\n {\r\n // InternalDroneScript.g:19504:2: ( ( 'static' ) )\r\n // InternalDroneScript.g:19505:3: ( 'static' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n // InternalDroneScript.g:19506:3: ( 'static' )\r\n // InternalDroneScript.g:19507:4: 'static'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n match(input,46,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15037:1: ( rule__QualifiedName__Group__1__Impl )\r\n // InternalDroneScript.g:15038:2: rule__QualifiedName__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15091:1: ( rule__QualifiedName__Group_1__1__Impl )\r\n // InternalDroneScript.g:15092:2: rule__QualifiedName__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__QualifiedName__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4250:1: ( rule__QualifiedName__Group_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4251:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1__Impl_in_rule__QualifiedName__Group_1__19103);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.8047142", "0.79250705", "0.7800647", "0.7776412", "0.76115084", "0.73965544", "0.73225236", "0.69613534", "0.6935075", "0.68936926", "0.6709314", "0.66983277", "0.6580148", "0.6543721", "0.6502201", "0.65021735", "0.64744496", "0.6454996", "0.64340115", "0.63896734", "0.6367799", "0.6288602", "0.6277464", "0.625829", "0.6240677", "0.6203347", "0.6168988", "0.61400336", "0.6127172", "0.6110974", "0.6074456", "0.601785", "0.60125154", "0.59707797", "0.59604007", "0.5957941", "0.592925", "0.59129304", "0.590108", "0.5891597", "0.58872974", "0.5884366", "0.588286", "0.5868669", "0.5864477", "0.5859402", "0.58584833", "0.5799107", "0.57818204", "0.5748412", "0.5720451", "0.5714284", "0.5692759", "0.5683348", "0.5670227", "0.56687254", "0.5663037", "0.5654274", "0.56415427", "0.5622547", "0.562086", "0.5615568", "0.5593373", "0.5589274", "0.5583762", "0.5573506", "0.5543176", "0.55006933", "0.5487198", "0.5478372", "0.54634666", "0.54624176", "0.5438893", "0.5437329", "0.54351664", "0.5402824", "0.5382285", "0.53814", "0.53773725", "0.53629255", "0.5362763", "0.53558886", "0.5344241", "0.53215307", "0.5321461", "0.53170913", "0.5299998", "0.52978206", "0.5287301", "0.5284313", "0.5280599", "0.52803016", "0.5278316", "0.52690053", "0.5238402", "0.5233859", "0.52255476", "0.5211122", "0.520585", "0.5204695" ]
0.84976166
0
$ANTLR end "ruleQualifiedNameInStaticImport" $ANTLR start "rule__Action__Alternatives" InternalCsv.g:660:1: rule__Action__Alternatives : ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) );
public final void rule__Action__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) ) int alt2=2; int LA2_0 = input.LA(1); if ( (LA2_0==20) ) { alt2=1; } else if ( ((LA2_0>=23 && LA2_0<=26)) ) { alt2=2; } else { if (state.backtracking>0) {state.failed=true; return ;} NoViableAltException nvae = new NoViableAltException("", 2, 0, input); throw nvae; } switch (alt2) { case 1 : // InternalCsv.g:665:2: ( ruleOpenCSV ) { // InternalCsv.g:665:2: ( ruleOpenCSV ) // InternalCsv.g:666:3: ruleOpenCSV { if ( state.backtracking==0 ) { before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); } pushFollow(FOLLOW_2); ruleOpenCSV(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); } } } break; case 2 : // InternalCsv.g:671:2: ( ruleRefOpenAction ) { // InternalCsv.g:671:2: ( ruleRefOpenAction ) // InternalCsv.g:672:3: ruleRefOpenAction { if ( state.backtracking==0 ) { before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); } pushFollow(FOLLOW_2); ruleRefOpenAction(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); } } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) )\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n {\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n // InternalCsv.g:119:3: ( rule__Action__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getAlternatives()); \n }\n // InternalCsv.g:120:3: ( rule__Action__Alternatives )\n // InternalCsv.g:120:4: rule__Action__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Action__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleRefOpenAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) )\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n {\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives )\n // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__RefOpenAction__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\n try {\n // InternalCsv.g:630:1: ( ruleQualifiedNameInStaticImport EOF )\n // InternalCsv.g:631:1: ruleQualifiedNameInStaticImport EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n pushFollow(FOLLOW_1);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4183:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n {\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n // InternalCsv.g:4185:3: ( ruleQualifiedNameInStaticImport )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n // InternalCsv.g:4186:3: ( ruleQualifiedNameInStaticImport )\n // InternalCsv.g:4187:4: ruleQualifiedNameInStaticImport\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:140:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) ) )\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n {\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n // InternalMyDsl.g:142:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n {\n otherlv_0=(Token)match(input,19,FOLLOW_5); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n }\n // InternalMyDsl.g:146:3: ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n {\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n // InternalMyDsl.g:148:5: lv_importURI_1_0= RULE_IMPORT_URI\n {\n lv_importURI_1_0=(Token)match(input,RULE_IMPORT_URI,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURIIMPORT_URITerminalRuleCall_1_0());\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.xtext.example.mydsl.MyDsl.IMPORT_URI\");\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_2=null;\n Token lv_importURI_3_0=null;\n Token otherlv_4=null;\n Token lv_name_5_0=null;\n Enumerator lv_importType_1_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:1810:2: ( (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) ) )\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n {\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n // InternalMappingDsl.g:1812:3: otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) )\n {\n otherlv_0=(Token)match(input,35,FOLLOW_45); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n // InternalMappingDsl.g:1816:3: ( (lv_importType_1_0= ruleImportType ) )\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n {\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n // InternalMappingDsl.g:1818:5: lv_importType_1_0= ruleImportType\n {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportAccess().getImportTypeImportTypeEnumRuleCall_1_0());\n \t\t\t\t\n pushFollow(FOLLOW_46);\n lv_importType_1_0=ruleImportType();\n\n state._fsp--;\n\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importType\",\n \t\t\t\t\t\tlv_importType_1_0,\n \t\t\t\t\t\t\"de.fhdo.ddmm.technology.mappingdsl.MappingDsl.ImportType\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_2=(Token)match(input,36,FOLLOW_41); \n\n \t\t\tnewLeafNode(otherlv_2, grammarAccess.getImportAccess().getFromKeyword_2());\n \t\t\n // InternalMappingDsl.g:1839:3: ( (lv_importURI_3_0= RULE_STRING ) )\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n {\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n // InternalMappingDsl.g:1841:5: lv_importURI_3_0= RULE_STRING\n {\n lv_importURI_3_0=(Token)match(input,RULE_STRING,FOLLOW_47); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_3_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_3_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_3_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_4=(Token)match(input,37,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_4, grammarAccess.getImportAccess().getAsKeyword_4());\n \t\t\n // InternalMappingDsl.g:1861:3: ( (lv_name_5_0= RULE_ID ) )\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n {\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n // InternalMappingDsl.g:1863:5: lv_name_5_0= RULE_ID\n {\n lv_name_5_0=(Token)match(input,RULE_ID,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_name_5_0, grammarAccess.getImportAccess().getNameIDTerminalRuleCall_5_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"name\",\n \t\t\t\t\t\tlv_name_5_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.ID\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleother() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:327:2: ( ( ( rule__Other__Alternatives ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:329:1: ( rule__Other__Alternatives )\n {\n before(grammarAccess.getOtherAccess().getAlternatives()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:1: ( rule__Other__Alternatives )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:2: rule__Other__Alternatives\n {\n pushFollow(FOLLOW_rule__Other__Alternatives_in_ruleother637);\n rule__Other__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getOtherAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19541:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n {\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n // InternalDroneScript.g:19543:3: ( ruleQualifiedNameInStaticImport )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n // InternalDroneScript.g:19544:3: ( ruleQualifiedNameInStaticImport )\r\n // InternalDroneScript.g:19545:4: ruleQualifiedNameInStaticImport\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16911:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n {\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n // InternalDroneScript.g:16913:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n // InternalDroneScript.g:16914:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n // InternalDroneScript.g:16914:3: rule__XImportDeclaration__Alternatives_1_0_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1_0_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ImportSpec__Alternatives_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4358:1: ( ( '.' ) | ( ruleIDENTIFIER ) )\r\n int alt48=2;\r\n int LA48_0 = input.LA(1);\r\n\r\n if ( (LA48_0==47) ) {\r\n alt48=1;\r\n }\r\n else if ( (LA48_0==RULE_ID||LA48_0==46) ) {\r\n alt48=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 48, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt48) {\r\n case 1 :\r\n // InternalGo.g:4359:2: ( '.' )\r\n {\r\n // InternalGo.g:4359:2: ( '.' )\r\n // InternalGo.g:4360:3: '.'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getFullStopKeyword_0_0()); \r\n }\r\n match(input,47,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getFullStopKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4365:2: ( ruleIDENTIFIER )\r\n {\r\n // InternalGo.g:4365:2: ( ruleIDENTIFIER )\r\n // InternalGo.g:4366:3: ruleIDENTIFIER\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getIDENTIFIERParserRuleCall_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleIDENTIFIER();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getIDENTIFIERParserRuleCall_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n enterRule(); \n \n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:298:28: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_15_in_ruleImport672); \n\n \tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:303:1: ( (lv_importURI_1_0= RULE_STRING ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:305:3: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_RULE_STRING_in_ruleImport689); \n\n \t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_1_0()); \n \t\t\n\n \t if (current==null) {\n \t current = createModelElement(grammarAccess.getImportRule());\n \t }\n \t\tsetWithLastConsumed(\n \t\t\tcurrent, \n \t\t\t\"importURI\",\n \t\tlv_importURI_1_0, \n \t\t\"STRING\");\n \t \n\n }\n\n\n }\n\n\n }\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final EObject ruleTypeImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalNgt.g:1345:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // InternalNgt.g:1346:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // InternalNgt.g:1346:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // InternalNgt.g:1347:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_5); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getTypeImportAccess().getImportKeyword_0());\n \t\t\n // InternalNgt.g:1351:3: ( (lv_importURI_1_0= RULE_STRING ) )\n // InternalNgt.g:1352:4: (lv_importURI_1_0= RULE_STRING )\n {\n // InternalNgt.g:1352:4: (lv_importURI_1_0= RULE_STRING )\n // InternalNgt.g:1353:5: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getTypeImportAccess().getImportURISTRINGTerminalRuleCall_1_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getTypeImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==38) ) {\n alt10=1;\n }\n else if ( (LA10_0==RULE_ID) ) {\n alt10=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 10, 0, input);\n\n throw nvae;\n }\n switch (alt10) {\n case 1 :\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n {\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n {\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3448:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n {\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n // InternalCsv.g:3450:2: ( rule__XImportDeclaration__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n // InternalCsv.g:3451:2: ( rule__XImportDeclaration__Alternatives_1 )\n // InternalCsv.g:3451:3: rule__XImportDeclaration__Alternatives_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleQualifiedNameInStaticImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:642:2: ( ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) ) )\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n {\n // InternalCsv.g:643:2: ( ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* ) )\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) ) ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n {\n // InternalCsv.g:644:3: ( ( rule__QualifiedNameInStaticImport__Group__0 ) )\n // InternalCsv.g:645:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:646:4: ( rule__QualifiedNameInStaticImport__Group__0 )\n // InternalCsv.g:646:5: rule__QualifiedNameInStaticImport__Group__0\n {\n pushFollow(FOLLOW_3);\n rule__QualifiedNameInStaticImport__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n // InternalCsv.g:649:3: ( ( rule__QualifiedNameInStaticImport__Group__0 )* )\n // InternalCsv.g:650:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n // InternalCsv.g:651:4: ( rule__QualifiedNameInStaticImport__Group__0 )*\n loop1:\n do {\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_ID) ) {\n int LA1_2 = input.LA(2);\n\n if ( (LA1_2==33) ) {\n alt1=1;\n }\n\n\n }\n\n\n switch (alt1) {\n \tcase 1 :\n \t // InternalCsv.g:651:5: rule__QualifiedNameInStaticImport__Group__0\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__QualifiedNameInStaticImport__Group__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop1;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameInStaticImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__CharsetAssignment_4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3757:1: ( ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) ) )\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n {\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n // InternalCsv.g:3759:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n // InternalCsv.g:3760:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n // InternalCsv.g:3760:4: rule__OpenCSV__CharsetAlternatives_4_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAlternatives_4_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Alternatives_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==40) ) {\n alt4=1;\n }\n else if ( (LA4_0==12) ) {\n alt4=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n {\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__HeaderAssignment_7_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:713:2: ( 'false' )\n {\n // InternalCsv.g:713:2: ( 'false' )\n // InternalCsv.g:714:3: 'false'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n match(input,12,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpOther() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:698:2: ( ( ( rule__OpOther__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:699:1: ( ( rule__OpOther__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:699:1: ( ( rule__OpOther__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:700:1: ( rule__OpOther__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:701:1: ( rule__OpOther__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:701:2: rule__OpOther__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Alternatives_in_ruleOpOther1427);\r\n rule__OpOther__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpOther() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:615:2: ( ( ( rule__OpOther__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:616:1: ( ( rule__OpOther__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:616:1: ( ( rule__OpOther__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:617:1: ( rule__OpOther__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:618:1: ( rule__OpOther__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:618:2: rule__OpOther__Alternatives\n {\n pushFollow(FOLLOW_rule__OpOther__Alternatives_in_ruleOpOther1247);\n rule__OpOther__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3742:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3743:2: ( RULE_STRING )\n {\n // InternalCsv.g:3743:2: ( RULE_STRING )\n // InternalCsv.g:3744:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleQualifiedNameInStaticImport() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2345:1: ( ruleQualifiedNameInStaticImport EOF )\r\n // InternalDroneScript.g:2346:1: ruleQualifiedNameInStaticImport EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getQualifiedNameInStaticImportRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void ruleOpOther() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:792:2: ( ( ( rule__OpOther__Alternatives ) ) )\r\n // InternalDroneScript.g:793:2: ( ( rule__OpOther__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:793:2: ( ( rule__OpOther__Alternatives ) )\r\n // InternalDroneScript.g:794:3: ( rule__OpOther__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:795:3: ( rule__OpOther__Alternatives )\r\n // InternalDroneScript.g:795:4: rule__OpOther__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__StaticAssignment_1_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4145:1: ( ( ( 'static' ) ) )\n // InternalCsv.g:4146:2: ( ( 'static' ) )\n {\n // InternalCsv.g:4146:2: ( ( 'static' ) )\n // InternalCsv.g:4147:3: ( 'static' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n // InternalCsv.g:4148:3: ( 'static' )\n // InternalCsv.g:4149:4: 'static'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n match(input,41,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__StatementList__Alternatives_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3428:1: ( ( ';' ) | ( ',' ) )\r\n int alt14=2;\r\n int LA14_0 = input.LA(1);\r\n\r\n if ( (LA14_0==42) ) {\r\n alt14=1;\r\n }\r\n else if ( (LA14_0==43) ) {\r\n alt14=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 14, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt14) {\r\n case 1 :\r\n // InternalGo.g:3429:2: ( ';' )\r\n {\r\n // InternalGo.g:3429:2: ( ';' )\r\n // InternalGo.g:3430:3: ';'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementListAccess().getSemicolonKeyword_1_1_0()); \r\n }\r\n match(input,42,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementListAccess().getSemicolonKeyword_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3435:2: ( ',' )\r\n {\r\n // InternalGo.g:3435:2: ( ',' )\r\n // InternalGo.g:3436:3: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementListAccess().getCommaKeyword_1_1_1()); \r\n }\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementListAccess().getCommaKeyword_1_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleImportedType() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:3271:2: ( ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) ) )\n // InternalMappingDsl.g:3272:2: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) )\n {\n // InternalMappingDsl.g:3272:2: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) )\n // InternalMappingDsl.g:3273:3: ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) )\n {\n // InternalMappingDsl.g:3273:3: ( (otherlv_0= RULE_ID ) )\n // InternalMappingDsl.g:3274:4: (otherlv_0= RULE_ID )\n {\n // InternalMappingDsl.g:3274:4: (otherlv_0= RULE_ID )\n // InternalMappingDsl.g:3275:5: otherlv_0= RULE_ID\n {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportedTypeRule());\n \t\t\t\t\t}\n \t\t\t\t\n otherlv_0=(Token)match(input,RULE_ID,FOLLOW_32); \n\n \t\t\t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportedTypeAccess().getImportImportCrossReference_0_0());\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_1=(Token)match(input,29,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_1, grammarAccess.getImportedTypeAccess().getColonColonKeyword_1());\n \t\t\n // InternalMappingDsl.g:3290:3: ( ( ruleQualifiedName ) )\n // InternalMappingDsl.g:3291:4: ( ruleQualifiedName )\n {\n // InternalMappingDsl.g:3291:4: ( ruleQualifiedName )\n // InternalMappingDsl.g:3292:5: ruleQualifiedName\n {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportedTypeRule());\n \t\t\t\t\t}\n \t\t\t\t\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportedTypeAccess().getTypeTypeCrossReference_2_0());\n \t\t\t\t\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n\n\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleDeclaration() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1167:2: ( ( ( rule__Declaration__Alternatives ) ) )\r\n // InternalGo.g:1168:2: ( ( rule__Declaration__Alternatives ) )\r\n {\r\n // InternalGo.g:1168:2: ( ( rule__Declaration__Alternatives ) )\r\n // InternalGo.g:1169:3: ( rule__Declaration__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDeclarationAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:1170:3: ( rule__Declaration__Alternatives )\r\n // InternalGo.g:1170:4: rule__Declaration__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Declaration__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDeclarationAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpCompare() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:742:2: ( ( ( rule__OpCompare__Alternatives ) ) )\r\n // InternalDroneScript.g:743:2: ( ( rule__OpCompare__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:743:2: ( ( rule__OpCompare__Alternatives ) )\r\n // InternalDroneScript.g:744:3: ( rule__OpCompare__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:745:3: ( rule__OpCompare__Alternatives )\r\n // InternalDroneScript.g:745:4: rule__OpCompare__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpCompare__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpCompare() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:559:2: ( ( ( rule__OpCompare__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:560:1: ( ( rule__OpCompare__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:560:1: ( ( rule__OpCompare__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:561:1: ( rule__OpCompare__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:562:1: ( rule__OpCompare__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:562:2: rule__OpCompare__Alternatives\n {\n pushFollow(FOLLOW_rule__OpCompare__Alternatives_in_ruleOpCompare1127);\n rule__OpCompare__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4337:1: ( ( ( rule__ImportDecl__ImportsAssignment_2_0 ) ) | ( ( rule__ImportDecl__Group_2_1__0 ) ) )\r\n int alt47=2;\r\n int LA47_0 = input.LA(1);\r\n\r\n if ( ((LA47_0>=RULE_STRING && LA47_0<=RULE_ID)||(LA47_0>=46 && LA47_0<=47)) ) {\r\n alt47=1;\r\n }\r\n else if ( (LA47_0==52) ) {\r\n alt47=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 47, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt47) {\r\n case 1 :\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n {\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n // InternalGo.g:4339:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n // InternalGo.g:4340:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n // InternalGo.g:4340:4: rule__ImportDecl__ImportsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__ImportsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n {\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n // InternalGo.g:4345:3: ( rule__ImportDecl__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n // InternalGo.g:4346:3: ( rule__ImportDecl__Group_2_1__0 )\r\n // InternalGo.g:4346:4: rule__ImportDecl__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpCompare() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:642:2: ( ( ( rule__OpCompare__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:643:1: ( ( rule__OpCompare__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:643:1: ( ( rule__OpCompare__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:644:1: ( rule__OpCompare__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:645:1: ( rule__OpCompare__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:645:2: rule__OpCompare__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpCompare__Alternatives_in_ruleOpCompare1307);\r\n rule__OpCompare__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__TypeName__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3245:1: ( ( ruleIDENTIFIER ) | ( ruleQualifiedIdent ) )\r\n int alt7=2;\r\n int LA7_0 = input.LA(1);\r\n\r\n if ( (LA7_0==RULE_ID) ) {\r\n int LA7_1 = input.LA(2);\r\n\r\n if ( (LA7_1==47) ) {\r\n alt7=2;\r\n }\r\n else if ( (LA7_1==EOF||LA7_1==RULE_ID||(LA7_1>=RULE_RAW_STRING_LIT && LA7_1<=RULE_INTERPRETED_STRING_LIT)||LA7_1==42||(LA7_1>=45 && LA7_1<=46)||(LA7_1>=57 && LA7_1<=58)) ) {\r\n alt7=1;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 7, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else if ( (LA7_0==46) ) {\r\n int LA7_2 = input.LA(2);\r\n\r\n if ( (LA7_2==RULE_ID) ) {\r\n int LA7_5 = input.LA(3);\r\n\r\n if ( (LA7_5==EOF||LA7_5==RULE_ID||(LA7_5>=RULE_RAW_STRING_LIT && LA7_5<=RULE_INTERPRETED_STRING_LIT)||LA7_5==42||(LA7_5>=45 && LA7_5<=46)||(LA7_5>=57 && LA7_5<=58)) ) {\r\n alt7=1;\r\n }\r\n else if ( (LA7_5==47) ) {\r\n alt7=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 7, 5, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 7, 2, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 7, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt7) {\r\n case 1 :\r\n // InternalGo.g:3246:2: ( ruleIDENTIFIER )\r\n {\r\n // InternalGo.g:3246:2: ( ruleIDENTIFIER )\r\n // InternalGo.g:3247:3: ruleIDENTIFIER\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeNameAccess().getIDENTIFIERParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleIDENTIFIER();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeNameAccess().getIDENTIFIERParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3252:2: ( ruleQualifiedIdent )\r\n {\r\n // InternalGo.g:3252:2: ( ruleQualifiedIdent )\r\n // InternalGo.g:3253:3: ruleQualifiedIdent\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeNameAccess().getQualifiedIdentParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedIdent();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeNameAccess().getQualifiedIdentParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleIDENTIFIER() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:267:2: ( ( ( rule__IDENTIFIER__Alternatives ) ) )\r\n // InternalGo.g:268:2: ( ( rule__IDENTIFIER__Alternatives ) )\r\n {\r\n // InternalGo.g:268:2: ( ( rule__IDENTIFIER__Alternatives ) )\r\n // InternalGo.g:269:3: ( rule__IDENTIFIER__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIDENTIFIERAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:270:3: ( rule__IDENTIFIER__Alternatives )\r\n // InternalGo.g:270:4: rule__IDENTIFIER__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IDENTIFIER__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIDENTIFIERAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3507:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\r\n int alt43=3;\r\n alt43 = dfa43.predict(input);\r\n switch (alt43) {\r\n case 1 :\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n // InternalDroneScript.g:3509:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n // InternalDroneScript.g:3510:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n // InternalDroneScript.g:3510:4: rule__XImportDeclaration__Group_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n {\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n // InternalDroneScript.g:3515:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n // InternalDroneScript.g:3516:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n // InternalDroneScript.g:3516:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n {\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n // InternalDroneScript.g:3521:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n // InternalDroneScript.g:3522:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n // InternalDroneScript.g:3522:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16777:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n // InternalDroneScript.g:16779:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:16780:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n // InternalDroneScript.g:16780:3: rule__XImportDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Other__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:416:1: ( ( RULE_ML_COMMENT ) | ( RULE_OTHER_COMMAND ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==RULE_ML_COMMENT) ) {\n alt4=1;\n }\n else if ( (LA4_0==RULE_OTHER_COMMAND) ) {\n alt4=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:417:1: ( RULE_ML_COMMENT )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:417:1: ( RULE_ML_COMMENT )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:418:1: RULE_ML_COMMENT\n {\n before(grammarAccess.getOtherAccess().getML_COMMENTTerminalRuleCall_0()); \n match(input,RULE_ML_COMMENT,FOLLOW_RULE_ML_COMMENT_in_rule__Other__Alternatives843); \n after(grammarAccess.getOtherAccess().getML_COMMENTTerminalRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:423:6: ( RULE_OTHER_COMMAND )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:423:6: ( RULE_OTHER_COMMAND )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:424:1: RULE_OTHER_COMMAND\n {\n before(grammarAccess.getOtherAccess().getOTHER_COMMANDTerminalRuleCall_1()); \n match(input,RULE_OTHER_COMMAND,FOLLOW_RULE_OTHER_COMMAND_in_rule__Other__Alternatives860); \n after(grammarAccess.getOtherAccess().getOTHER_COMMANDTerminalRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleIdOrString() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:270:2: ( ( ( rule__IdOrString__Alternatives ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:271:1: ( ( rule__IdOrString__Alternatives ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:271:1: ( ( rule__IdOrString__Alternatives ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:272:1: ( rule__IdOrString__Alternatives )\n {\n before(grammarAccess.getIdOrStringAccess().getAlternatives()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:273:1: ( rule__IdOrString__Alternatives )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:273:2: rule__IdOrString__Alternatives\n {\n pushFollow(FollowSets000.FOLLOW_rule__IdOrString__Alternatives_in_ruleIdOrString514);\n rule__IdOrString__Alternatives();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getIdOrStringAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpAdd() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:671:2: ( ( ( rule__OpAdd__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:672:1: ( ( rule__OpAdd__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:672:1: ( ( rule__OpAdd__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:673:1: ( rule__OpAdd__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpAddAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:674:1: ( rule__OpAdd__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:674:2: rule__OpAdd__Alternatives\n {\n pushFollow(FOLLOW_rule__OpAdd__Alternatives_in_ruleOpAdd1367);\n rule__OpAdd__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpAddAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15514:1: ( ( ( rule__ImportDecl__Alternatives_2 ) ) )\r\n // InternalGo.g:15515:1: ( ( rule__ImportDecl__Alternatives_2 ) )\r\n {\r\n // InternalGo.g:15515:1: ( ( rule__ImportDecl__Alternatives_2 ) )\r\n // InternalGo.g:15516:2: ( rule__ImportDecl__Alternatives_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getAlternatives_2()); \r\n }\r\n // InternalGo.g:15517:2: ( rule__ImportDecl__Alternatives_2 )\r\n // InternalGo.g:15517:3: rule__ImportDecl__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleInput() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:166:2: ( ( ( rule__Input__Alternatives ) ) )\n // InternalWh.g:167:2: ( ( rule__Input__Alternatives ) )\n {\n // InternalWh.g:167:2: ( ( rule__Input__Alternatives ) )\n // InternalWh.g:168:3: ( rule__Input__Alternatives )\n {\n before(grammarAccess.getInputAccess().getAlternatives()); \n // InternalWh.g:169:3: ( rule__Input__Alternatives )\n // InternalWh.g:169:4: rule__Input__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Input__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpAdd() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:842:2: ( ( ( rule__OpAdd__Alternatives ) ) )\r\n // InternalDroneScript.g:843:2: ( ( rule__OpAdd__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:843:2: ( ( rule__OpAdd__Alternatives ) )\r\n // InternalDroneScript.g:844:3: ( rule__OpAdd__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:845:3: ( rule__OpAdd__Alternatives )\r\n // InternalDroneScript.g:845:4: rule__OpAdd__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpAdd__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleImportCS() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n Token otherlv_2=null;\n Token otherlv_4=null;\n Token lv_isAll_6_0=null;\n AntlrDatatypeRuleToken lv_name_3_0 = null;\n\n EObject lv_ownedPathName_5_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:4162:2: ( ( (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' ) ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )? ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) ) ( (lv_isAll_6_0= '::*' ) )? ) )\n // InternalMyDsl.g:4163:2: ( (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' ) ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )? ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) ) ( (lv_isAll_6_0= '::*' ) )? )\n {\n // InternalMyDsl.g:4163:2: ( (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' ) ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )? ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) ) ( (lv_isAll_6_0= '::*' ) )? )\n // InternalMyDsl.g:4164:3: (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' ) ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )? ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) ) ( (lv_isAll_6_0= '::*' ) )?\n {\n // InternalMyDsl.g:4164:3: (otherlv_0= 'import' | otherlv_1= 'include' | otherlv_2= 'library' )\n int alt47=3;\n switch ( input.LA(1) ) {\n case 19:\n {\n alt47=1;\n }\n break;\n case 60:\n {\n alt47=2;\n }\n break;\n case 61:\n {\n alt47=3;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 47, 0, input);\n\n throw nvae;\n }\n\n switch (alt47) {\n case 1 :\n // InternalMyDsl.g:4165:4: otherlv_0= 'import'\n {\n otherlv_0=(Token)match(input,19,FOLLOW_51); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportCSAccess().getImportKeyword_0_0());\n \t\t\t\n }\n\n }\n break;\n case 2 :\n // InternalMyDsl.g:4170:4: otherlv_1= 'include'\n {\n otherlv_1=(Token)match(input,60,FOLLOW_51); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_1, grammarAccess.getImportCSAccess().getIncludeKeyword_0_1());\n \t\t\t\n }\n\n }\n break;\n case 3 :\n // InternalMyDsl.g:4175:4: otherlv_2= 'library'\n {\n otherlv_2=(Token)match(input,61,FOLLOW_51); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_2, grammarAccess.getImportCSAccess().getLibraryKeyword_0_2());\n \t\t\t\n }\n\n }\n break;\n\n }\n\n // InternalMyDsl.g:4180:3: ( ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':' )?\n int alt48=2;\n int LA48_0 = input.LA(1);\n\n if ( (LA48_0==RULE_SIMPLE_ID) ) {\n int LA48_1 = input.LA(2);\n\n if ( (LA48_1==42) ) {\n alt48=1;\n }\n }\n else if ( (LA48_0==RULE_ESCAPED_ID) ) {\n int LA48_2 = input.LA(2);\n\n if ( (LA48_2==42) ) {\n alt48=1;\n }\n }\n switch (alt48) {\n case 1 :\n // InternalMyDsl.g:4181:4: ( (lv_name_3_0= ruleIdentifier ) ) otherlv_4= ':'\n {\n // InternalMyDsl.g:4181:4: ( (lv_name_3_0= ruleIdentifier ) )\n // InternalMyDsl.g:4182:5: (lv_name_3_0= ruleIdentifier )\n {\n // InternalMyDsl.g:4182:5: (lv_name_3_0= ruleIdentifier )\n // InternalMyDsl.g:4183:6: lv_name_3_0= ruleIdentifier\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tnewCompositeNode(grammarAccess.getImportCSAccess().getNameIdentifierParserRuleCall_1_0_0());\n \t\t\t\t\t\n }\n pushFollow(FOLLOW_28);\n lv_name_3_0=ruleIdentifier();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getImportCSRule());\n \t\t\t\t\t\t}\n \t\t\t\t\t\tset(\n \t\t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\t\"name\",\n \t\t\t\t\t\t\tlv_name_3_0,\n \t\t\t\t\t\t\t\"org.eclipse.ocl.xtext.base.Base.Identifier\");\n \t\t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\t\n }\n\n }\n\n\n }\n\n otherlv_4=(Token)match(input,42,FOLLOW_51); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\tnewLeafNode(otherlv_4, grammarAccess.getImportCSAccess().getColonKeyword_1_1());\n \t\t\t\n }\n\n }\n break;\n\n }\n\n // InternalMyDsl.g:4205:3: ( (lv_ownedPathName_5_0= ruleURIPathNameCS ) )\n // InternalMyDsl.g:4206:4: (lv_ownedPathName_5_0= ruleURIPathNameCS )\n {\n // InternalMyDsl.g:4206:4: (lv_ownedPathName_5_0= ruleURIPathNameCS )\n // InternalMyDsl.g:4207:5: lv_ownedPathName_5_0= ruleURIPathNameCS\n {\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportCSAccess().getOwnedPathNameURIPathNameCSParserRuleCall_2_0());\n \t\t\t\t\n }\n pushFollow(FOLLOW_52);\n lv_ownedPathName_5_0=ruleURIPathNameCS();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getImportCSRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"ownedPathName\",\n \t\t\t\t\t\tlv_ownedPathName_5_0,\n \t\t\t\t\t\t\"org.eclipse.ocl.xtext.essentialocl.EssentialOCL.URIPathNameCS\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n }\n\n }\n\n\n }\n\n // InternalMyDsl.g:4224:3: ( (lv_isAll_6_0= '::*' ) )?\n int alt49=2;\n int LA49_0 = input.LA(1);\n\n if ( (LA49_0==62) ) {\n alt49=1;\n }\n switch (alt49) {\n case 1 :\n // InternalMyDsl.g:4225:4: (lv_isAll_6_0= '::*' )\n {\n // InternalMyDsl.g:4225:4: (lv_isAll_6_0= '::*' )\n // InternalMyDsl.g:4226:5: lv_isAll_6_0= '::*'\n {\n lv_isAll_6_0=(Token)match(input,62,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(lv_isAll_6_0, grammarAccess.getImportCSAccess().getIsAllColonColonAsteriskKeyword_3_0());\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportCSRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(current, \"isAll\", true, \"::*\");\n \t\t\t\t\n }\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__Connective__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1705:1: ( ( ruleJoint ) | ( ruleConstraint ) | ( ruleExternalLoad ) )\n int alt6=3;\n switch ( input.LA(1) ) {\n case 50:\n {\n alt6=1;\n }\n break;\n case 67:\n {\n alt6=2;\n }\n break;\n case 70:\n {\n alt6=3;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n\n switch (alt6) {\n case 1 :\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1706:1: ( ruleJoint )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1706:1: ( ruleJoint )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1707:1: ruleJoint\n {\n before(grammarAccess.getConnectiveAccess().getJointParserRuleCall_0()); \n pushFollow(FOLLOW_ruleJoint_in_rule__Connective__Alternatives3594);\n ruleJoint();\n\n state._fsp--;\n\n after(grammarAccess.getConnectiveAccess().getJointParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1712:6: ( ruleConstraint )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1712:6: ( ruleConstraint )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1713:1: ruleConstraint\n {\n before(grammarAccess.getConnectiveAccess().getConstraintParserRuleCall_1()); \n pushFollow(FOLLOW_ruleConstraint_in_rule__Connective__Alternatives3611);\n ruleConstraint();\n\n state._fsp--;\n\n after(grammarAccess.getConnectiveAccess().getConstraintParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1718:6: ( ruleExternalLoad )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1718:6: ( ruleExternalLoad )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1719:1: ruleExternalLoad\n {\n before(grammarAccess.getConnectiveAccess().getExternalLoadParserRuleCall_2()); \n pushFollow(FOLLOW_ruleExternalLoad_in_rule__Connective__Alternatives3628);\n ruleExternalLoad();\n\n state._fsp--;\n\n after(grammarAccess.getConnectiveAccess().getExternalLoadParserRuleCall_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleEntry() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:74:2: ( ( ( rule__Entry__Alternatives ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:75:1: ( ( rule__Entry__Alternatives ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:75:1: ( ( rule__Entry__Alternatives ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:76:1: ( rule__Entry__Alternatives )\n {\n before(grammarAccess.getEntryAccess().getAlternatives()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:77:1: ( rule__Entry__Alternatives )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:77:2: rule__Entry__Alternatives\n {\n pushFollow(FollowSets000.FOLLOW_rule__Entry__Alternatives_in_ruleEntry94);\n rule__Entry__Alternatives();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getEntryAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "ActionImport()\n {\n super(\"Import\");\n this.setShortcut(UtilGUI.createKeyStroke('I', true));\n }", "public final void rule__SaveCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3848:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n // InternalCsv.g:3850:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3851:3: ( RULE_ID )\n // InternalCsv.g:3852:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Lines__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:956:1: ( ( ruleDeclaration ) | ( ruleAffectation ) | ( ruleFunctionCall ) | ( ruleCheckContainsLink ) | ( ruleCheckContainsText ) | ( ruleFindProperty ) | ( ruleFindFirstProperty ) | ( ruleFindSecondProperty ) | ( ruleGetTitle ) )\n int alt3=9;\n alt3 = dfa3.predict(input);\n switch (alt3) {\n case 1 :\n // InternalBrowser.g:957:2: ( ruleDeclaration )\n {\n // InternalBrowser.g:957:2: ( ruleDeclaration )\n // InternalBrowser.g:958:3: ruleDeclaration\n {\n before(grammarAccess.getLinesAccess().getDeclarationParserRuleCall_0()); \n pushFollow(FOLLOW_2);\n ruleDeclaration();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getDeclarationParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // InternalBrowser.g:963:2: ( ruleAffectation )\n {\n // InternalBrowser.g:963:2: ( ruleAffectation )\n // InternalBrowser.g:964:3: ruleAffectation\n {\n before(grammarAccess.getLinesAccess().getAffectationParserRuleCall_1()); \n pushFollow(FOLLOW_2);\n ruleAffectation();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getAffectationParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // InternalBrowser.g:969:2: ( ruleFunctionCall )\n {\n // InternalBrowser.g:969:2: ( ruleFunctionCall )\n // InternalBrowser.g:970:3: ruleFunctionCall\n {\n before(grammarAccess.getLinesAccess().getFunctionCallParserRuleCall_2()); \n pushFollow(FOLLOW_2);\n ruleFunctionCall();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFunctionCallParserRuleCall_2()); \n\n }\n\n\n }\n break;\n case 4 :\n // InternalBrowser.g:975:2: ( ruleCheckContainsLink )\n {\n // InternalBrowser.g:975:2: ( ruleCheckContainsLink )\n // InternalBrowser.g:976:3: ruleCheckContainsLink\n {\n before(grammarAccess.getLinesAccess().getCheckContainsLinkParserRuleCall_3()); \n pushFollow(FOLLOW_2);\n ruleCheckContainsLink();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getCheckContainsLinkParserRuleCall_3()); \n\n }\n\n\n }\n break;\n case 5 :\n // InternalBrowser.g:981:2: ( ruleCheckContainsText )\n {\n // InternalBrowser.g:981:2: ( ruleCheckContainsText )\n // InternalBrowser.g:982:3: ruleCheckContainsText\n {\n before(grammarAccess.getLinesAccess().getCheckContainsTextParserRuleCall_4()); \n pushFollow(FOLLOW_2);\n ruleCheckContainsText();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getCheckContainsTextParserRuleCall_4()); \n\n }\n\n\n }\n break;\n case 6 :\n // InternalBrowser.g:987:2: ( ruleFindProperty )\n {\n // InternalBrowser.g:987:2: ( ruleFindProperty )\n // InternalBrowser.g:988:3: ruleFindProperty\n {\n before(grammarAccess.getLinesAccess().getFindPropertyParserRuleCall_5()); \n pushFollow(FOLLOW_2);\n ruleFindProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindPropertyParserRuleCall_5()); \n\n }\n\n\n }\n break;\n case 7 :\n // InternalBrowser.g:993:2: ( ruleFindFirstProperty )\n {\n // InternalBrowser.g:993:2: ( ruleFindFirstProperty )\n // InternalBrowser.g:994:3: ruleFindFirstProperty\n {\n before(grammarAccess.getLinesAccess().getFindFirstPropertyParserRuleCall_6()); \n pushFollow(FOLLOW_2);\n ruleFindFirstProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindFirstPropertyParserRuleCall_6()); \n\n }\n\n\n }\n break;\n case 8 :\n // InternalBrowser.g:999:2: ( ruleFindSecondProperty )\n {\n // InternalBrowser.g:999:2: ( ruleFindSecondProperty )\n // InternalBrowser.g:1000:3: ruleFindSecondProperty\n {\n before(grammarAccess.getLinesAccess().getFindSecondPropertyParserRuleCall_7()); \n pushFollow(FOLLOW_2);\n ruleFindSecondProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindSecondPropertyParserRuleCall_7()); \n\n }\n\n\n }\n break;\n case 9 :\n // InternalBrowser.g:1005:2: ( ruleGetTitle )\n {\n // InternalBrowser.g:1005:2: ( ruleGetTitle )\n // InternalBrowser.g:1006:3: ruleGetTitle\n {\n before(grammarAccess.getLinesAccess().getGetTitleParserRuleCall_8()); \n pushFollow(FOLLOW_2);\n ruleGetTitle();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getGetTitleParserRuleCall_8()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpAdd() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:754:2: ( ( ( rule__OpAdd__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:755:1: ( ( rule__OpAdd__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:755:1: ( ( rule__OpAdd__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:756:1: ( rule__OpAdd__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:757:1: ( rule__OpAdd__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:757:2: rule__OpAdd__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpAdd__Alternatives_in_ruleOpAdd1547);\r\n rule__OpAdd__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__IdOrString__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:339:1: ( ( RULE_ID ) | ( RULE_STRING ) )\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==RULE_ID) ) {\n alt3=1;\n }\n else if ( (LA3_0==RULE_STRING) ) {\n alt3=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"335:1: rule__IdOrString__Alternatives : ( ( RULE_ID ) | ( RULE_STRING ) );\", 3, 0, input);\n\n throw nvae;\n }\n switch (alt3) {\n case 1 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:340:1: ( RULE_ID )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:340:1: ( RULE_ID )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:341:1: RULE_ID\n {\n before(grammarAccess.getIdOrStringAccess().getIDTerminalRuleCall_0()); \n match(input,RULE_ID,FollowSets000.FOLLOW_RULE_ID_in_rule__IdOrString__Alternatives665); \n after(grammarAccess.getIdOrStringAccess().getIDTerminalRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:346:6: ( RULE_STRING )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:346:6: ( RULE_STRING )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:347:1: RULE_STRING\n {\n before(grammarAccess.getIdOrStringAccess().getSTRINGTerminalRuleCall_1()); \n match(input,RULE_STRING,FollowSets000.FOLLOW_RULE_STRING_in_rule__IdOrString__Alternatives682); \n after(grammarAccess.getIdOrStringAccess().getSTRINGTerminalRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3791:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n // InternalCsv.g:3793:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3794:3: ( RULE_ID )\n // InternalCsv.g:3795:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void testDynamicImport() throws Exception {\n\t\tdoTest(\";version=\\\"[1,2)\\\"\", TEST_ALT_IMPORT_SYM_NAME + \"_1.0.0\");\n\t}", "public final void ruleExpressions() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:908:2: ( ( ( rule__Expressions__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:909:1: ( ( rule__Expressions__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:909:1: ( ( rule__Expressions__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:910:1: ( rule__Expressions__Alternatives )\n {\n before(grammarAccess.getExpressionsAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:911:1: ( rule__Expressions__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:911:2: rule__Expressions__Alternatives\n {\n pushFollow(FOLLOW_rule__Expressions__Alternatives_in_ruleExpressions1687);\n rule__Expressions__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getExpressionsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void importDeclaration() throws RecognitionException {\n int importDeclaration_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"importDeclaration\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(189, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 3) ) { return ; }\n // Java.g:190:5: ( 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';' )\n dbg.enterAlt(1);\n\n // Java.g:190:9: 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';'\n {\n dbg.location(190,9);\n match(input,27,FOLLOW_27_in_importDeclaration154); if (state.failed) return ;\n dbg.location(190,18);\n // Java.g:190:18: ( 'static' )?\n int alt9=2;\n try { dbg.enterSubRule(9);\n try { dbg.enterDecision(9);\n\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==28) ) {\n alt9=1;\n }\n } finally {dbg.exitDecision(9);}\n\n switch (alt9) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:0:0: 'static'\n {\n dbg.location(190,18);\n match(input,28,FOLLOW_28_in_importDeclaration156); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(9);}\n\n dbg.location(190,28);\n pushFollow(FOLLOW_qualifiedName_in_importDeclaration159);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(190,42);\n // Java.g:190:42: ( '.' '*' )?\n int alt10=2;\n try { dbg.enterSubRule(10);\n try { dbg.enterDecision(10);\n\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==29) ) {\n alt10=1;\n }\n } finally {dbg.exitDecision(10);}\n\n switch (alt10) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:190:43: '.' '*'\n {\n dbg.location(190,43);\n match(input,29,FOLLOW_29_in_importDeclaration162); if (state.failed) return ;\n dbg.location(190,47);\n match(input,30,FOLLOW_30_in_importDeclaration164); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(10);}\n\n dbg.location(190,53);\n match(input,26,FOLLOW_26_in_importDeclaration168); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 3, importDeclaration_StartIndex); }\n }\n dbg.location(191, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"importDeclaration\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void rule__AstNamespace__ExternalsAssignment_4_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22659:1: ( ( ( rule__AstNamespace__ExternalsAlternatives_4_2_0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22660:1: ( ( rule__AstNamespace__ExternalsAlternatives_4_2_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22660:1: ( ( rule__AstNamespace__ExternalsAlternatives_4_2_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22661:1: ( rule__AstNamespace__ExternalsAlternatives_4_2_0 )\n {\n before(grammarAccess.getAstNamespaceAccess().getExternalsAlternatives_4_2_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22662:1: ( rule__AstNamespace__ExternalsAlternatives_4_2_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22662:2: rule__AstNamespace__ExternalsAlternatives_4_2_0\n {\n pushFollow(FOLLOW_rule__AstNamespace__ExternalsAlternatives_4_2_0_in_rule__AstNamespace__ExternalsAssignment_4_245387);\n rule__AstNamespace__ExternalsAlternatives_4_2_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstNamespaceAccess().getExternalsAlternatives_4_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__CharsetAlternatives_4_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:685:1: ( ( 'latin1' ) | ( 'utf8' ) )\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==10) ) {\n alt3=1;\n }\n else if ( (LA3_0==11) ) {\n alt3=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 3, 0, input);\n\n throw nvae;\n }\n switch (alt3) {\n case 1 :\n // InternalCsv.g:686:2: ( 'latin1' )\n {\n // InternalCsv.g:686:2: ( 'latin1' )\n // InternalCsv.g:687:3: 'latin1'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetLatin1Keyword_4_0_0()); \n }\n match(input,10,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetLatin1Keyword_4_0_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:692:2: ( 'utf8' )\n {\n // InternalCsv.g:692:2: ( 'utf8' )\n // InternalCsv.g:693:3: 'utf8'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetUtf8Keyword_4_0_1()); \n }\n match(input,11,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetUtf8Keyword_4_0_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2974:1: ( ( ( rule__Action__Alternatives_0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2975:1: ( ( rule__Action__Alternatives_0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2975:1: ( ( rule__Action__Alternatives_0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2976:1: ( rule__Action__Alternatives_0 )\n {\n before(grammarAccess.getActionAccess().getAlternatives_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2977:1: ( rule__Action__Alternatives_0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2977:2: rule__Action__Alternatives_0\n {\n pushFollow(FOLLOW_rule__Action__Alternatives_0_in_rule__Action__Group__0__Impl5860);\n rule__Action__Alternatives_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getActionAccess().getAlternatives_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FeatureCallID__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3258:1: ( ( ruleValidID ) | ( 'extends' ) | ( 'static' ) | ( 'import' ) | ( 'extension' ) )\r\n int alt32=5;\r\n switch ( input.LA(1) ) {\r\n case RULE_ID:\r\n {\r\n alt32=1;\r\n }\r\n break;\r\n case 45:\r\n {\r\n alt32=2;\r\n }\r\n break;\r\n case 46:\r\n {\r\n alt32=3;\r\n }\r\n break;\r\n case 47:\r\n {\r\n alt32=4;\r\n }\r\n break;\r\n case 48:\r\n {\r\n alt32=5;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 32, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt32) {\r\n case 1 :\r\n // InternalDroneScript.g:3259:2: ( ruleValidID )\r\n {\r\n // InternalDroneScript.g:3259:2: ( ruleValidID )\r\n // InternalDroneScript.g:3260:3: ruleValidID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getValidIDParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleValidID();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getValidIDParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3265:2: ( 'extends' )\r\n {\r\n // InternalDroneScript.g:3265:2: ( 'extends' )\r\n // InternalDroneScript.g:3266:3: 'extends'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getExtendsKeyword_1()); \r\n }\r\n match(input,45,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getExtendsKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:3271:2: ( 'static' )\r\n {\r\n // InternalDroneScript.g:3271:2: ( 'static' )\r\n // InternalDroneScript.g:3272:3: 'static'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getStaticKeyword_2()); \r\n }\r\n match(input,46,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getStaticKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 4 :\r\n // InternalDroneScript.g:3277:2: ( 'import' )\r\n {\r\n // InternalDroneScript.g:3277:2: ( 'import' )\r\n // InternalDroneScript.g:3278:3: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getImportKeyword_3()); \r\n }\r\n match(input,47,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getImportKeyword_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 5 :\r\n // InternalDroneScript.g:3283:2: ( 'extension' )\r\n {\r\n // InternalDroneScript.g:3283:2: ( 'extension' )\r\n // InternalDroneScript.g:3284:3: 'extension'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFeatureCallIDAccess().getExtensionKeyword_4()); \r\n }\r\n match(input,48,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFeatureCallIDAccess().getExtensionKeyword_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private String importDeclaration()\r\n {\r\n String handle;\r\n\r\n matchKeyword(Keyword.IMPORTSY);\r\n handle = nextToken.string;\r\n matchKeyword(Keyword.IDENTSY);\r\n handle = qualifiedImport(handle);\r\n matchKeyword(Keyword.SEMICOLONSY);\r\n\r\n return handle;\r\n }", "public final void ruleUpdate() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1052:2: ( ( ( rule__Update__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1053:1: ( ( rule__Update__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1053:1: ( ( rule__Update__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1054:1: ( rule__Update__Alternatives )\n {\n before(grammarAccess.getUpdateAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1055:1: ( rule__Update__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:1055:2: rule__Update__Alternatives\n {\n pushFollow(FOLLOW_rule__Update__Alternatives_in_ruleUpdate1962);\n rule__Update__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getUpdateAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void rulePredicateAtomic() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:728:2: ( ( ( rule__PredicateAtomic__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:729:1: ( ( rule__PredicateAtomic__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:729:1: ( ( rule__PredicateAtomic__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:730:1: ( rule__PredicateAtomic__Alternatives )\n {\n before(grammarAccess.getPredicateAtomicAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:731:1: ( rule__PredicateAtomic__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:731:2: rule__PredicateAtomic__Alternatives\n {\n pushFollow(FOLLOW_rule__PredicateAtomic__Alternatives_in_rulePredicateAtomic1344);\n rule__PredicateAtomic__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getPredicateAtomicAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void rule__IDENTIFIER__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3134:1: ( ( RULE_ID ) | ( ( rule__IDENTIFIER__Group_1__0 ) ) )\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( (LA2_0==RULE_ID) ) {\r\n int LA2_1 = input.LA(2);\r\n\r\n if ( (synpred3_InternalGo()) ) {\r\n alt2=1;\r\n }\r\n else if ( (true) ) {\r\n alt2=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 2, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else if ( (LA2_0==46) ) {\r\n alt2=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 2, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt2) {\r\n case 1 :\r\n // InternalGo.g:3135:2: ( RULE_ID )\r\n {\r\n // InternalGo.g:3135:2: ( RULE_ID )\r\n // InternalGo.g:3136:3: RULE_ID\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIDENTIFIERAccess().getIDTerminalRuleCall_0()); \r\n }\r\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIDENTIFIERAccess().getIDTerminalRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3141:2: ( ( rule__IDENTIFIER__Group_1__0 ) )\r\n {\r\n // InternalGo.g:3141:2: ( ( rule__IDENTIFIER__Group_1__0 ) )\r\n // InternalGo.g:3142:3: ( rule__IDENTIFIER__Group_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIDENTIFIERAccess().getGroup_1()); \r\n }\r\n // InternalGo.g:3143:3: ( rule__IDENTIFIER__Group_1__0 )\r\n // InternalGo.g:3143:4: rule__IDENTIFIER__Group_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IDENTIFIER__Group_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIDENTIFIERAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpMulti() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:892:2: ( ( ( rule__OpMulti__Alternatives ) ) )\r\n // InternalDroneScript.g:893:2: ( ( rule__OpMulti__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:893:2: ( ( rule__OpMulti__Alternatives ) )\r\n // InternalDroneScript.g:894:3: ( rule__OpMulti__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:895:3: ( rule__OpMulti__Alternatives )\r\n // InternalDroneScript.g:895:4: rule__OpMulti__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpMulti__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpOther__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1927:1: ( ( '->' ) | ( '..' ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==21) ) {\n alt7=1;\n }\n else if ( (LA7_0==22) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1928:1: ( '->' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1928:1: ( '->' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1929:1: '->'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \n }\n match(input,21,FOLLOW_21_in_rule__OpOther__Alternatives4068); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1936:6: ( '..' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1936:6: ( '..' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1937:1: '..'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \n }\n match(input,22,FOLLOW_22_in_rule__OpOther__Alternatives4088); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3598:1: ( rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1 )\n // InternalCsv.g:3599:2: rule__QualifiedNameInStaticImport__Group__0__Impl rule__QualifiedNameInStaticImport__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedNameInStaticImport__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedNameInStaticImport__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpUnary() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:942:2: ( ( ( rule__OpUnary__Alternatives ) ) )\r\n // InternalDroneScript.g:943:2: ( ( rule__OpUnary__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:943:2: ( ( rule__OpUnary__Alternatives ) )\r\n // InternalDroneScript.g:944:3: ( rule__OpUnary__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpUnaryAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:945:3: ( rule__OpUnary__Alternatives )\r\n // InternalDroneScript.g:945:4: rule__OpUnary__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpUnary__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpUnaryAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3534:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\r\n int alt44=2;\r\n int LA44_0 = input.LA(1);\r\n\r\n if ( (LA44_0==36) ) {\r\n alt44=1;\r\n }\r\n else if ( (LA44_0==RULE_ID) ) {\r\n alt44=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 44, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt44) {\r\n case 1 :\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n {\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n // InternalDroneScript.g:3536:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n // InternalDroneScript.g:3537:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n // InternalDroneScript.g:3537:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n {\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n // InternalDroneScript.g:3542:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n // InternalDroneScript.g:3543:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n // InternalDroneScript.g:3543:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleR() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:141:2: ( ( ( rule__R__Alternatives ) ) )\n // InternalMLRegression.g:142:2: ( ( rule__R__Alternatives ) )\n {\n // InternalMLRegression.g:142:2: ( ( rule__R__Alternatives ) )\n // InternalMLRegression.g:143:3: ( rule__R__Alternatives )\n {\n before(grammarAccess.getRAccess().getAlternatives()); \n // InternalMLRegression.g:144:3: ( rule__R__Alternatives )\n // InternalMLRegression.g:144:4: rule__R__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__R__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getRAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImportPath() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3092:2: ( ( RULE_STRING ) )\r\n // InternalGo.g:3093:2: ( RULE_STRING )\r\n {\r\n // InternalGo.g:3093:2: ( RULE_STRING )\r\n // InternalGo.g:3094:3: RULE_STRING\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportPathAccess().getSTRINGTerminalRuleCall()); \r\n }\r\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportPathAccess().getSTRINGTerminalRuleCall()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Widget__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:311:1: ( ( ruleText ) | ( ruleSpinner ) | ( ruleLink ) )\n int alt2=3;\n switch ( input.LA(1) ) {\n case 15:\n {\n alt2=1;\n }\n break;\n case 16:\n {\n alt2=2;\n }\n break;\n case 17:\n {\n alt2=3;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"307:1: rule__Widget__Alternatives : ( ( ruleText ) | ( ruleSpinner ) | ( ruleLink ) );\", 2, 0, input);\n\n throw nvae;\n }\n\n switch (alt2) {\n case 1 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:312:1: ( ruleText )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:312:1: ( ruleText )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:313:1: ruleText\n {\n before(grammarAccess.getWidgetAccess().getTextParserRuleCall_0()); \n pushFollow(FollowSets000.FOLLOW_ruleText_in_rule__Widget__Alternatives599);\n ruleText();\n _fsp--;\n\n after(grammarAccess.getWidgetAccess().getTextParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:318:6: ( ruleSpinner )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:318:6: ( ruleSpinner )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:319:1: ruleSpinner\n {\n before(grammarAccess.getWidgetAccess().getSpinnerParserRuleCall_1()); \n pushFollow(FollowSets000.FOLLOW_ruleSpinner_in_rule__Widget__Alternatives616);\n ruleSpinner();\n _fsp--;\n\n after(grammarAccess.getWidgetAccess().getSpinnerParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:324:6: ( ruleLink )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:324:6: ( ruleLink )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:325:1: ruleLink\n {\n before(grammarAccess.getWidgetAccess().getLinkParserRuleCall_2()); \n pushFollow(FollowSets000.FOLLOW_ruleLink_in_rule__Widget__Alternatives633);\n ruleLink();\n _fsp--;\n\n after(grammarAccess.getWidgetAccess().getLinkParserRuleCall_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleComplexTypeImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n Token otherlv_2=null;\n Token lv_importURI_3_0=null;\n Token otherlv_4=null;\n Token lv_name_5_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:5386:2: ( (otherlv_0= 'import' otherlv_1= 'datatypes' otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) ) )\n // InternalMappingDsl.g:5387:2: (otherlv_0= 'import' otherlv_1= 'datatypes' otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n {\n // InternalMappingDsl.g:5387:2: (otherlv_0= 'import' otherlv_1= 'datatypes' otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n // InternalMappingDsl.g:5388:3: otherlv_0= 'import' otherlv_1= 'datatypes' otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) )\n {\n otherlv_0=(Token)match(input,35,FOLLOW_102); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getComplexTypeImportAccess().getImportKeyword_0());\n \t\t\n otherlv_1=(Token)match(input,70,FOLLOW_46); \n\n \t\t\tnewLeafNode(otherlv_1, grammarAccess.getComplexTypeImportAccess().getDatatypesKeyword_1());\n \t\t\n otherlv_2=(Token)match(input,36,FOLLOW_41); \n\n \t\t\tnewLeafNode(otherlv_2, grammarAccess.getComplexTypeImportAccess().getFromKeyword_2());\n \t\t\n // InternalMappingDsl.g:5400:3: ( (lv_importURI_3_0= RULE_STRING ) )\n // InternalMappingDsl.g:5401:4: (lv_importURI_3_0= RULE_STRING )\n {\n // InternalMappingDsl.g:5401:4: (lv_importURI_3_0= RULE_STRING )\n // InternalMappingDsl.g:5402:5: lv_importURI_3_0= RULE_STRING\n {\n lv_importURI_3_0=(Token)match(input,RULE_STRING,FOLLOW_47); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_3_0, grammarAccess.getComplexTypeImportAccess().getImportURISTRINGTerminalRuleCall_3_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getComplexTypeImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_3_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_4=(Token)match(input,37,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_4, grammarAccess.getComplexTypeImportAccess().getAsKeyword_4());\n \t\t\n // InternalMappingDsl.g:5422:3: ( (lv_name_5_0= RULE_ID ) )\n // InternalMappingDsl.g:5423:4: (lv_name_5_0= RULE_ID )\n {\n // InternalMappingDsl.g:5423:4: (lv_name_5_0= RULE_ID )\n // InternalMappingDsl.g:5424:5: lv_name_5_0= RULE_ID\n {\n lv_name_5_0=(Token)match(input,RULE_ID,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_name_5_0, grammarAccess.getComplexTypeImportAccess().getNameIDTerminalRuleCall_5_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getComplexTypeImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"name\",\n \t\t\t\t\t\tlv_name_5_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.ID\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rulePredicatePrimary() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:692:2: ( ( ( rule__PredicatePrimary__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:693:1: ( ( rule__PredicatePrimary__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:693:1: ( ( rule__PredicatePrimary__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:694:1: ( rule__PredicatePrimary__Alternatives )\n {\n before(grammarAccess.getPredicatePrimaryAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:695:1: ( rule__PredicatePrimary__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:695:2: rule__PredicatePrimary__Alternatives\n {\n pushFollow(FOLLOW_rule__PredicatePrimary__Alternatives_in_rulePredicatePrimary1275);\n rule__PredicatePrimary__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getPredicatePrimaryAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final EObject ruleTopLevelImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalNgt.g:210:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // InternalNgt.g:211:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // InternalNgt.g:211:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // InternalNgt.g:212:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_5); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getTopLevelImportAccess().getImportKeyword_0());\n \t\t\n // InternalNgt.g:216:3: ( (lv_importURI_1_0= RULE_STRING ) )\n // InternalNgt.g:217:4: (lv_importURI_1_0= RULE_STRING )\n {\n // InternalNgt.g:217:4: (lv_importURI_1_0= RULE_STRING )\n // InternalNgt.g:218:5: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getTopLevelImportAccess().getImportURISTRINGTerminalRuleCall_1_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getTopLevelImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleOpMulti() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:727:2: ( ( ( rule__OpMulti__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:728:1: ( ( rule__OpMulti__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:728:1: ( ( rule__OpMulti__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:729:1: ( rule__OpMulti__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpMultiAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:730:1: ( rule__OpMulti__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:730:2: rule__OpMulti__Alternatives\n {\n pushFollow(FOLLOW_rule__OpMulti__Alternatives_in_ruleOpMulti1487);\n rule__OpMulti__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpMultiAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePython() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:116:2: ( ( ( rule__Python__Alternatives ) ) )\n // InternalMLRegression.g:117:2: ( ( rule__Python__Alternatives ) )\n {\n // InternalMLRegression.g:117:2: ( ( rule__Python__Alternatives ) )\n // InternalMLRegression.g:118:3: ( rule__Python__Alternatives )\n {\n before(grammarAccess.getPythonAccess().getAlternatives()); \n // InternalMLRegression.g:119:3: ( rule__Python__Alternatives )\n // InternalMLRegression.g:119:4: rule__Python__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Python__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getPythonAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public interface DboCsvTransformer<DBO extends DatabaseObject<?>> extends DboFileTransformer<DBO> {\n\n String COMMA_IN_QUOTES_REGEX = \",(?=(?:[^\\\\\\\"]*\\\\\\\"[^\\\\\\\"]*\\\\\\\")*[^\\\\\\\"]*$)\";\n\n /**\n * This method consumes a single line of CSV to produce a DatabaseObject.\n *\n * @param csv the single line of CSV representing a single DatabaseObject\n * @return the DatabaseObject represented\n * @throws TransformerException if the object cannot be produced\n */\n @Override\n DBO consume(String csv) throws TransformerException;\n\n /**\n * This method consumes a DatabaseObject to produce a String in CSV format.\n *\n * @param object the DatabaseObject\n * @return a String in CSV format\n * @throws TransformerException if the object cannot be consumed\n */\n @Override\n String produce(DBO object) throws TransformerException;\n\n}", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleGoalReference() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_1=null;\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1868:28: ( ( () otherlv_1= '$' ( ( ruleQualifiedName ) ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1869:1: ( () otherlv_1= '$' ( ( ruleQualifiedName ) ) )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1869:1: ( () otherlv_1= '$' ( ( ruleQualifiedName ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1869:2: () otherlv_1= '$' ( ( ruleQualifiedName ) )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1869:2: ()\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1870:5: \r\n {\r\n if ( state.backtracking==0 ) {\r\n\r\n current = forceCreateModelElement(\r\n grammarAccess.getGoalReferenceAccess().getGoalReferenceAction_0(),\r\n current);\r\n \r\n }\r\n\r\n }\r\n\r\n otherlv_1=(Token)match(input,42,FOLLOW_42_in_ruleGoalReference3918); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_1, grammarAccess.getGoalReferenceAccess().getDollarSignKeyword_1());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1879:1: ( ( ruleQualifiedName ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1880:1: ( ruleQualifiedName )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1880:1: ( ruleQualifiedName )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:1881:3: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n\r\n \t\t\tif (current==null) {\r\n \t current = createModelElement(grammarAccess.getGoalReferenceRule());\r\n \t }\r\n \r\n }\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getGoalReferenceAccess().getValueGoalCrossReference_2_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleGoalReference3941);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n \r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void ruleElement() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:102:2: ( ( ( rule__Element__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:103:1: ( ( rule__Element__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:103:1: ( ( rule__Element__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:104:1: ( rule__Element__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getElementAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:105:1: ( rule__Element__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:105:2: rule__Element__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__Element__Alternatives_in_ruleElement160);\r\n rule__Element__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getElementAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Entry__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:289:1: ( ( ruleApplication ) | ( ruleActivity ) )\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==11) ) {\n alt1=1;\n }\n else if ( (LA1_0==12) ) {\n alt1=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"285:1: rule__Entry__Alternatives : ( ( ruleApplication ) | ( ruleActivity ) );\", 1, 0, input);\n\n throw nvae;\n }\n switch (alt1) {\n case 1 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:290:1: ( ruleApplication )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:290:1: ( ruleApplication )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:291:1: ruleApplication\n {\n before(grammarAccess.getEntryAccess().getApplicationParserRuleCall_0()); \n pushFollow(FollowSets000.FOLLOW_ruleApplication_in_rule__Entry__Alternatives550);\n ruleApplication();\n _fsp--;\n\n after(grammarAccess.getEntryAccess().getApplicationParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:296:6: ( ruleActivity )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:296:6: ( ruleActivity )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:297:1: ruleActivity\n {\n before(grammarAccess.getEntryAccess().getActivityParserRuleCall_1()); \n pushFollow(FollowSets000.FOLLOW_ruleActivity_in_rule__Entry__Alternatives567);\n ruleActivity();\n _fsp--;\n\n after(grammarAccess.getEntryAccess().getActivityParserRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleExpression() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:266:2: ( ( ( rule__Expression__Alternatives ) ) )\n // InternalBrowser.g:267:2: ( ( rule__Expression__Alternatives ) )\n {\n // InternalBrowser.g:267:2: ( ( rule__Expression__Alternatives ) )\n // InternalBrowser.g:268:3: ( rule__Expression__Alternatives )\n {\n before(grammarAccess.getExpressionAccess().getAlternatives()); \n // InternalBrowser.g:269:3: ( rule__Expression__Alternatives )\n // InternalBrowser.g:269:4: rule__Expression__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Expression__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getExpressionAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpMulti() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:810:2: ( ( ( rule__OpMulti__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:811:1: ( ( rule__OpMulti__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:811:1: ( ( rule__OpMulti__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:812:1: ( rule__OpMulti__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:813:1: ( rule__OpMulti__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:813:2: rule__OpMulti__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpMulti__Alternatives_in_ruleOpMulti1667);\r\n rule__OpMulti__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject rulePossiblyImportedOperation() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:2448:2: ( ( ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' )? ( ( ruleQualifiedName ) ) ) )\n // InternalMappingDsl.g:2449:2: ( ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' )? ( ( ruleQualifiedName ) ) )\n {\n // InternalMappingDsl.g:2449:2: ( ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' )? ( ( ruleQualifiedName ) ) )\n // InternalMappingDsl.g:2450:3: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' )? ( ( ruleQualifiedName ) )\n {\n // InternalMappingDsl.g:2450:3: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' )?\n int alt70=2;\n int LA70_0 = input.LA(1);\n\n if ( (LA70_0==RULE_ID) ) {\n int LA70_1 = input.LA(2);\n\n if ( (LA70_1==29) ) {\n alt70=1;\n }\n }\n switch (alt70) {\n case 1 :\n // InternalMappingDsl.g:2451:4: ( (otherlv_0= RULE_ID ) ) otherlv_1= '::'\n {\n // InternalMappingDsl.g:2451:4: ( (otherlv_0= RULE_ID ) )\n // InternalMappingDsl.g:2452:5: (otherlv_0= RULE_ID )\n {\n // InternalMappingDsl.g:2452:5: (otherlv_0= RULE_ID )\n // InternalMappingDsl.g:2453:6: otherlv_0= RULE_ID\n {\n\n \t\t\t\t\t\tif (current==null) {\n \t\t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getPossiblyImportedOperationRule());\n \t\t\t\t\t\t}\n \t\t\t\t\t\n otherlv_0=(Token)match(input,RULE_ID,FOLLOW_32); \n\n \t\t\t\t\t\tnewLeafNode(otherlv_0, grammarAccess.getPossiblyImportedOperationAccess().getImportImportCrossReference_0_0_0());\n \t\t\t\t\t\n\n }\n\n\n }\n\n otherlv_1=(Token)match(input,29,FOLLOW_7); \n\n \t\t\t\tnewLeafNode(otherlv_1, grammarAccess.getPossiblyImportedOperationAccess().getColonColonKeyword_0_1());\n \t\t\t\n\n }\n break;\n\n }\n\n // InternalMappingDsl.g:2469:3: ( ( ruleQualifiedName ) )\n // InternalMappingDsl.g:2470:4: ( ruleQualifiedName )\n {\n // InternalMappingDsl.g:2470:4: ( ruleQualifiedName )\n // InternalMappingDsl.g:2471:5: ruleQualifiedName\n {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getPossiblyImportedOperationRule());\n \t\t\t\t\t}\n \t\t\t\t\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getPossiblyImportedOperationAccess().getOperationOperationCrossReference_1_0());\n \t\t\t\t\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n\n\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "@Override\n public String visit(ImportDeclaration n, Object arg) {\n return null;\n }", "public final void rule__AstNamespace__ExternalsAlternatives_4_2_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2586:1: ( ( ruleAstExternalVariable ) | ( ruleAstExternalFunction ) | ( ruleAstExternalProcedure ) )\n int alt6=3;\n alt6 = dfa6.predict(input);\n switch (alt6) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2587:1: ( ruleAstExternalVariable )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2587:1: ( ruleAstExternalVariable )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2588:1: ruleAstExternalVariable\n {\n before(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalVariableParserRuleCall_4_2_0_0()); \n pushFollow(FOLLOW_ruleAstExternalVariable_in_rule__AstNamespace__ExternalsAlternatives_4_2_05517);\n ruleAstExternalVariable();\n\n state._fsp--;\n\n after(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalVariableParserRuleCall_4_2_0_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2593:6: ( ruleAstExternalFunction )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2593:6: ( ruleAstExternalFunction )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2594:1: ruleAstExternalFunction\n {\n before(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalFunctionParserRuleCall_4_2_0_1()); \n pushFollow(FOLLOW_ruleAstExternalFunction_in_rule__AstNamespace__ExternalsAlternatives_4_2_05534);\n ruleAstExternalFunction();\n\n state._fsp--;\n\n after(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalFunctionParserRuleCall_4_2_0_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2599:6: ( ruleAstExternalProcedure )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2599:6: ( ruleAstExternalProcedure )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2600:1: ruleAstExternalProcedure\n {\n before(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalProcedureParserRuleCall_4_2_0_2()); \n pushFollow(FOLLOW_ruleAstExternalProcedure_in_rule__AstNamespace__ExternalsAlternatives_4_2_05551);\n ruleAstExternalProcedure();\n\n state._fsp--;\n\n after(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalProcedureParserRuleCall_4_2_0_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void imports() throws RecognitionException {\n try {\n // css21.g:46:5: ( IMPORT_SYM ( STRING | URI ) ( medium ( COMMA medium )* )? SEMI )\n // css21.g:46:9: IMPORT_SYM ( STRING | URI ) ( medium ( COMMA medium )* )? SEMI\n {\n match(input,IMPORT_SYM,FOLLOW_IMPORT_SYM_in_imports128); if (state.failed) return ;\n\n if ( input.LA(1)==STRING||input.LA(1)==URI ) {\n input.consume();\n state.errorRecovery=false;\n state.failed=false;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n MismatchedSetException mse = new MismatchedSetException(null,input);\n throw mse;\n }\n\n\n // css21.g:46:33: ( medium ( COMMA medium )* )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==IDENT) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // css21.g:46:34: medium ( COMMA medium )*\n {\n pushFollow(FOLLOW_medium_in_imports137);\n medium();\n\n state._fsp--;\n if (state.failed) return ;\n\n // css21.g:46:41: ( COMMA medium )*\n loop3:\n do {\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==COMMA) ) {\n alt3=1;\n }\n\n\n switch (alt3) {\n \tcase 1 :\n \t // css21.g:46:42: COMMA medium\n \t {\n \t match(input,COMMA,FOLLOW_COMMA_in_imports140); if (state.failed) return ;\n\n \t pushFollow(FOLLOW_medium_in_imports142);\n \t medium();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop3;\n }\n } while (true);\n\n\n }\n break;\n\n }\n\n\n match(input,SEMI,FOLLOW_SEMI_in_imports148); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n\n finally {\n \t// do for sure before leaving\n }\n return ;\n }", "public final void ruleAstType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2157:2: ( ( ( rule__AstType__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2159:1: ( rule__AstType__Alternatives )\n {\n before(grammarAccess.getAstTypeAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:1: ( rule__AstType__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:2: rule__AstType__Alternatives\n {\n pushFollow(FOLLOW_rule__AstType__Alternatives_in_ruleAstType4547);\n rule__AstType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleArguments() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:800:2: ( ( ( rule__Arguments__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:801:1: ( ( rule__Arguments__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:801:1: ( ( rule__Arguments__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:802:1: ( rule__Arguments__Alternatives )\n {\n before(grammarAccess.getArgumentsAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:803:1: ( rule__Arguments__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:803:2: rule__Arguments__Alternatives\n {\n pushFollow(FOLLOW_rule__Arguments__Alternatives_in_ruleArguments1482);\n rule__Arguments__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getArgumentsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleAstAbstractActor() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:213:2: ( ( ( rule__AstAbstractActor__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:214:1: ( ( rule__AstAbstractActor__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:214:1: ( ( rule__AstAbstractActor__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:215:1: ( rule__AstAbstractActor__Alternatives )\n {\n before(grammarAccess.getAstAbstractActorAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:216:1: ( rule__AstAbstractActor__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:216:2: rule__AstAbstractActor__Alternatives\n {\n pushFollow(FOLLOW_rule__AstAbstractActor__Alternatives_in_ruleAstAbstractActor394);\n rule__AstAbstractActor__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstAbstractActorAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__StaticAssignment_1_0_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19503:1: ( ( ( 'static' ) ) )\r\n // InternalDroneScript.g:19504:2: ( ( 'static' ) )\r\n {\r\n // InternalDroneScript.g:19504:2: ( ( 'static' ) )\r\n // InternalDroneScript.g:19505:3: ( 'static' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n // InternalDroneScript.g:19506:3: ( 'static' )\r\n // InternalDroneScript.g:19507:4: 'static'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n match(input,46,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}" ]
[ "0.63473934", "0.62734044", "0.6013191", "0.54369336", "0.5382592", "0.5265367", "0.52628857", "0.51060975", "0.50229096", "0.49787393", "0.49441394", "0.49106872", "0.48985043", "0.48915017", "0.48678455", "0.48411414", "0.48280704", "0.475532", "0.47169566", "0.46914485", "0.46913174", "0.46912003", "0.4685426", "0.46840498", "0.46811554", "0.46789265", "0.46745384", "0.46518242", "0.4633643", "0.46285963", "0.45920166", "0.45646048", "0.4544155", "0.45226616", "0.4520545", "0.44913688", "0.44824174", "0.44793436", "0.44603217", "0.4459114", "0.4446412", "0.44175237", "0.44165868", "0.44109336", "0.44097516", "0.44092482", "0.44042343", "0.43951964", "0.4392309", "0.43811035", "0.43163744", "0.43120384", "0.43120024", "0.42995113", "0.42910942", "0.4279716", "0.42751282", "0.42742407", "0.42603758", "0.4254141", "0.4254035", "0.42361403", "0.4227802", "0.42235658", "0.42172998", "0.42171305", "0.4214249", "0.42065686", "0.41942376", "0.41941038", "0.41800243", "0.4179489", "0.4170773", "0.41679448", "0.41633305", "0.41622835", "0.4156664", "0.41552192", "0.4145534", "0.41400957", "0.4135258", "0.41311356", "0.41288128", "0.41199735", "0.41173053", "0.41168174", "0.41089675", "0.41079652", "0.41036087", "0.41017818", "0.40848413", "0.40796587", "0.4079569", "0.40792337", "0.40787983", "0.40759906", "0.40758777", "0.40710932", "0.40703958", "0.4066841" ]
0.7165831
0
$ANTLR end "rule__Action__Alternatives" $ANTLR start "rule__OpenCSV__CharsetAlternatives_4_0" InternalCsv.g:681:1: rule__OpenCSV__CharsetAlternatives_4_0 : ( ( 'latin1' ) | ( 'utf8' ) );
public final void rule__OpenCSV__CharsetAlternatives_4_0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:685:1: ( ( 'latin1' ) | ( 'utf8' ) ) int alt3=2; int LA3_0 = input.LA(1); if ( (LA3_0==10) ) { alt3=1; } else if ( (LA3_0==11) ) { alt3=2; } else { if (state.backtracking>0) {state.failed=true; return ;} NoViableAltException nvae = new NoViableAltException("", 3, 0, input); throw nvae; } switch (alt3) { case 1 : // InternalCsv.g:686:2: ( 'latin1' ) { // InternalCsv.g:686:2: ( 'latin1' ) // InternalCsv.g:687:3: 'latin1' { if ( state.backtracking==0 ) { before(grammarAccess.getOpenCSVAccess().getCharsetLatin1Keyword_4_0_0()); } match(input,10,FOLLOW_2); if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getOpenCSVAccess().getCharsetLatin1Keyword_4_0_0()); } } } break; case 2 : // InternalCsv.g:692:2: ( 'utf8' ) { // InternalCsv.g:692:2: ( 'utf8' ) // InternalCsv.g:693:3: 'utf8' { if ( state.backtracking==0 ) { before(grammarAccess.getOpenCSVAccess().getCharsetUtf8Keyword_4_0_1()); } match(input,11,FOLLOW_2); if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getOpenCSVAccess().getCharsetUtf8Keyword_4_0_1()); } } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__OpenCSV__CharsetAssignment_4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3757:1: ( ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) ) )\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n {\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n // InternalCsv.g:3759:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n // InternalCsv.g:3760:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n // InternalCsv.g:3760:4: rule__OpenCSV__CharsetAlternatives_4_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAlternatives_4_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Alternatives_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==40) ) {\n alt4=1;\n }\n else if ( (LA4_0==12) ) {\n alt4=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n {\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__HeaderAssignment_7_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:713:2: ( 'false' )\n {\n // InternalCsv.g:713:2: ( 'false' )\n // InternalCsv.g:714:3: 'false'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n match(input,12,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test\n public void Test4216006() throws Exception {\n boolean caughtException = false;\n try {\n new RuleBasedCollator(\"\\u00e0<a\\u0300\");\n }\n catch (ParseException e) {\n caughtException = true;\n }\n if (!caughtException) {\n throw new Exception(\"\\\"a<a\\\" collation sequence didn't cause parse error!\");\n }\n\n RuleBasedCollator collator = new RuleBasedCollator(\"&a<\\u00e0=a\\u0300\");\n //commented by Kevin 2003/10/21 \n //for \"FULL_DECOMPOSITION is not supported here.\" in ICU4J DOC\n //collator.setDecomposition(Collator.FULL_DECOMPOSITION);\n collator.setStrength(Collator.IDENTICAL);\n\n String[] tests = {\n \"a\\u0300\", \"=\", \"\\u00e0\",\n \"\\u00e0\", \"=\", \"a\\u0300\"\n };\n\n compareArray(collator, tests);\n }", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "protected ISO8859_1()\r\n {\r\n }", "@Override\n public void setCharacterEncoding(String arg0) {\n\n }", "public final void rule__OpenCSV__HeaderAssignment_7_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3772:1: ( ( ( 'true' ) ) )\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n {\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n // InternalCsv.g:3774:3: ( 'true' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n // InternalCsv.g:3775:3: ( 'true' )\n // InternalCsv.g:3776:4: 'true'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n match(input,40,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1342:1: ( ( ( rule__OpenCSV__CharsetAssignment_4 ) ) )\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n {\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n // InternalCsv.g:1344:2: ( rule__OpenCSV__CharsetAssignment_4 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n // InternalCsv.g:1345:2: ( rule__OpenCSV__CharsetAssignment_4 )\n // InternalCsv.g:1345:3: rule__OpenCSV__CharsetAssignment_4\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAssignment_4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3448:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n {\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n // InternalCsv.g:3450:2: ( rule__XImportDeclaration__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n // InternalCsv.g:3451:2: ( rule__XImportDeclaration__Alternatives_1 )\n // InternalCsv.g:3451:3: rule__XImportDeclaration__Alternatives_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public abstract void mo2153a(CharSequence charSequence);", "public final void ruleAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) )\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n {\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n // InternalCsv.g:119:3: ( rule__Action__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getAlternatives()); \n }\n // InternalCsv.g:120:3: ( rule__Action__Alternatives )\n // InternalCsv.g:120:4: rule__Action__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Action__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3742:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3743:2: ( RULE_STRING )\n {\n // InternalCsv.g:3743:2: ( RULE_STRING )\n // InternalCsv.g:3744:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic void visit(CollateExpression arg0) {\n\t\t\n\t}", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Field__ValueAlternatives_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:346:1: ( ( ruleEString ) | ( ( rule__Field__ValueAlternatives_1_0_1 ) ) | ( RULE_CAST_HEXA_VALUE_TO_DATETIME ) | ( ruleEStringAsInt ) | ( RULE_ESTRING_AS_DOUBLE ) | ( 'NULL' ) )\n int alt2=6;\n switch ( input.LA(1) ) {\n case RULE_STRING:\n {\n alt2=1;\n }\n break;\n case RULE_N_SPEC_CHAR:\n case RULE_N_ESTRING:\n {\n alt2=2;\n }\n break;\n case RULE_CAST_HEXA_VALUE_TO_DATETIME:\n {\n alt2=3;\n }\n break;\n case RULE_INT:\n {\n alt2=4;\n }\n break;\n case RULE_ESTRING_AS_DOUBLE:\n {\n alt2=5;\n }\n break;\n case 17:\n {\n alt2=6;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n\n switch (alt2) {\n case 1 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:347:1: ( ruleEString )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:347:1: ( ruleEString )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:348:1: ruleEString\n {\n before(grammarAccess.getFieldAccess().getValueEStringParserRuleCall_1_0_0()); \n pushFollow(FOLLOW_ruleEString_in_rule__Field__ValueAlternatives_1_0673);\n ruleEString();\n\n state._fsp--;\n\n after(grammarAccess.getFieldAccess().getValueEStringParserRuleCall_1_0_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:353:6: ( ( rule__Field__ValueAlternatives_1_0_1 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:353:6: ( ( rule__Field__ValueAlternatives_1_0_1 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:354:1: ( rule__Field__ValueAlternatives_1_0_1 )\n {\n before(grammarAccess.getFieldAccess().getValueAlternatives_1_0_1()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:355:1: ( rule__Field__ValueAlternatives_1_0_1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:355:2: rule__Field__ValueAlternatives_1_0_1\n {\n pushFollow(FOLLOW_rule__Field__ValueAlternatives_1_0_1_in_rule__Field__ValueAlternatives_1_0690);\n rule__Field__ValueAlternatives_1_0_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getFieldAccess().getValueAlternatives_1_0_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:359:6: ( RULE_CAST_HEXA_VALUE_TO_DATETIME )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:359:6: ( RULE_CAST_HEXA_VALUE_TO_DATETIME )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:360:1: RULE_CAST_HEXA_VALUE_TO_DATETIME\n {\n before(grammarAccess.getFieldAccess().getValueCAST_HEXA_VALUE_TO_DATETIMETerminalRuleCall_1_0_2()); \n match(input,RULE_CAST_HEXA_VALUE_TO_DATETIME,FOLLOW_RULE_CAST_HEXA_VALUE_TO_DATETIME_in_rule__Field__ValueAlternatives_1_0708); \n after(grammarAccess.getFieldAccess().getValueCAST_HEXA_VALUE_TO_DATETIMETerminalRuleCall_1_0_2()); \n\n }\n\n\n }\n break;\n case 4 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:365:6: ( ruleEStringAsInt )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:365:6: ( ruleEStringAsInt )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:366:1: ruleEStringAsInt\n {\n before(grammarAccess.getFieldAccess().getValueEStringAsIntParserRuleCall_1_0_3()); \n pushFollow(FOLLOW_ruleEStringAsInt_in_rule__Field__ValueAlternatives_1_0725);\n ruleEStringAsInt();\n\n state._fsp--;\n\n after(grammarAccess.getFieldAccess().getValueEStringAsIntParserRuleCall_1_0_3()); \n\n }\n\n\n }\n break;\n case 5 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:371:6: ( RULE_ESTRING_AS_DOUBLE )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:371:6: ( RULE_ESTRING_AS_DOUBLE )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:372:1: RULE_ESTRING_AS_DOUBLE\n {\n before(grammarAccess.getFieldAccess().getValueESTRING_AS_DOUBLETerminalRuleCall_1_0_4()); \n match(input,RULE_ESTRING_AS_DOUBLE,FOLLOW_RULE_ESTRING_AS_DOUBLE_in_rule__Field__ValueAlternatives_1_0742); \n after(grammarAccess.getFieldAccess().getValueESTRING_AS_DOUBLETerminalRuleCall_1_0_4()); \n\n }\n\n\n }\n break;\n case 6 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:377:6: ( 'NULL' )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:377:6: ( 'NULL' )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:378:1: 'NULL'\n {\n before(grammarAccess.getFieldAccess().getValueNULLKeyword_1_0_5()); \n match(input,17,FOLLOW_17_in_rule__Field__ValueAlternatives_1_0760); \n after(grammarAccess.getFieldAccess().getValueNULLKeyword_1_0_5()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16911:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n {\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n // InternalDroneScript.g:16913:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n // InternalDroneScript.g:16914:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n // InternalDroneScript.g:16914:3: rule__XImportDeclaration__Alternatives_1_0_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1_0_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public static void main(String[] args) throws IOException {\n\t\tint id_telefone = 4;\n\t\t\n\t\tFileInputStream fis = new FileInputStream(SAMPLE_CSV_FILE_PATH);\n\t\tInputStreamReader isr = new InputStreamReader(fis, \"UTF-8\");\n\t\t\n\t\t@SuppressWarnings(\"deprecation\")\n\t\tCSVReader reader = new CSVReader(isr, ';' , '\"' , 0);\n \tString[] nextLine;\n \t\n// \tWriter writer = Files.newBufferedWriter(Paths.get(\"saida.csv\"));\n// \tCSVWriter csvWriter = new CSVWriter(writer,\n// CSVWriter.DEFAULT_SEPARATOR,\n// CSVWriter.NO_QUOTE_CHARACTER,\n// CSVWriter.DEFAULT_ESCAPE_CHARACTER,\n// CSVWriter.DEFAULT_LINE_END);\n \t\n \tFile file = new File(\"Clientes.sql\");\n \n BufferedWriter fr = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file),\"UTF-8\"));\n \t\n \twhile ((nextLine = reader.readNext()) != null) {\n \t\t\n if (nextLine != null) {\n \t\n// \tSystem.out.println(nextLine.length);\n \t\n \tString id = nextLine[0];\n \tif(!id.isEmpty()) {\n \t\n \t\tid = id.substring(5);\n \t\tid = id.replace(\".\", \"\");\n \t\t\n \t\tboolean temCEP = false;\n \t\t\n \t\tif(nextLine.length > 12) temCEP = true;\n \t\t\n \t\tString CEP = \"\";\n \t\tif(temCEP) {\n \t\t CEP = nextLine[12];\n CEP = CEP.replace(\".\", \"\");\n CEP = CEP.replaceAll(\"-\",\"\");\n CEP = CEP.replaceAll(\" \",\"\");\n \t\t};\n \n \t\n \n \tfr.write(\"INSERT INTO hmprojetos.cliente values (\" \n + id \n + \",'\" + nextLine[1]\n \t\t+ \"','\" + nextLine[2]\n \t\t\t\t+ \"','\" + nextLine[3]\n \t\t\t\t\t\t+ \"','\" + nextLine[4]\n \t\t\t\t\t\t\t\t+ \"','\" + nextLine[5]\n \t\t\t\t\t\t\t\t\t\t+ \"','\" + CEP\n \t\t\t\t\t\t\t\t\t\t\t\t+ \"','\" + nextLine[10]\n \t\t\t\t\t\t\t\t\t\t\t\t\t\t+ \"','\" + nextLine[11]\n \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t+ \"','\" + nextLine[6]\n + \"');\\n\");\n \t\n \t//Criação dos INSERTS dos telefones\n \tif(!nextLine[7].isEmpty()) {\n \tfr.write(\"INSERT INTO hmprojetos.telefone values (\"\n \t\t\t+ id_telefone\n \t\t\t+ \",'','\" + nextLine[7]\n \t\t\t+ \"',\"\n \t\t\t+ id \n \t\t\t+ \");\\n\"\n \t\t\t);\n \t\tid_telefone++;\n \t}\n \tif(!nextLine[8].isEmpty()) {\n \tfr.write(\"INSERT INTO hmprojetos.telefone values (\"\n \t\t\t+ id_telefone\n \t\t\t+ \",'','\" + nextLine[8]\n \t\t\t+ \"',\"\n \t\t\t+ id \n \t\t\t+ \");\\n\"\n \t\t\t);\n \t\tid_telefone++;\n \t}\n \tif(!nextLine[9].isEmpty()) {\n \tfr.write(\"INSERT INTO hmprojetos.telefone values (\"\n \t\t\t+ id_telefone\n \t\t\t+ \",'','\" + nextLine[9]\n \t\t\t+ \"',\"\n \t\t\t+ id \n \t\t\t+ \");\\n\"\n \t\t\t);\n \t\tid_telefone++;\n \t}\n \t\n \t}\n }\n \t}\n \t\n \tfr.close();\n \tSystem.out.println(\"Done\");\n\t}", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleRefOpenAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) )\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n {\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives )\n // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__RefOpenAction__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test\n\tpublic void testUTF8() throws IOException {\n\t\tBufferedReader reader = new BufferedReader(\n\t\t\t\tnew InputStreamReader(new FileInputStream(UTF8_FILE), \"UTF-8\")\n\t\t);\n\t\tReadTestCSVFile(reader);\n\t}", "UnescapeTransliterator(String ID, char[] spec)\n/* */ {\n/* 131 */ super(ID, null);\n/* 132 */ this.spec = spec;\n/* */ }", "public final void rule__Field__ValueAlternatives_1_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:394:1: ( ( RULE_N_SPEC_CHAR ) | ( RULE_N_ESTRING ) )\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==RULE_N_SPEC_CHAR) ) {\n alt3=1;\n }\n else if ( (LA3_0==RULE_N_ESTRING) ) {\n alt3=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 3, 0, input);\n\n throw nvae;\n }\n switch (alt3) {\n case 1 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:395:1: ( RULE_N_SPEC_CHAR )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:395:1: ( RULE_N_SPEC_CHAR )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:396:1: RULE_N_SPEC_CHAR\n {\n before(grammarAccess.getFieldAccess().getValueN_SPEC_CHARTerminalRuleCall_1_0_1_0()); \n match(input,RULE_N_SPEC_CHAR,FOLLOW_RULE_N_SPEC_CHAR_in_rule__Field__ValueAlternatives_1_0_1794); \n after(grammarAccess.getFieldAccess().getValueN_SPEC_CHARTerminalRuleCall_1_0_1_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:401:6: ( RULE_N_ESTRING )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:401:6: ( RULE_N_ESTRING )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:402:1: RULE_N_ESTRING\n {\n before(grammarAccess.getFieldAccess().getValueN_ESTRINGTerminalRuleCall_1_0_1_1()); \n match(input,RULE_N_ESTRING,FOLLOW_RULE_N_ESTRING_in_rule__Field__ValueAlternatives_1_0_1811); \n after(grammarAccess.getFieldAccess().getValueN_ESTRINGTerminalRuleCall_1_0_1_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mRULE_ARG_OR_CHARSET() throws RecognitionException {\n try {\n int _type = RULE_ARG_OR_CHARSET;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalUniMapperGenerator.g:5137:21: ( ( RULE_ARG_ACTION | RULE_LEXER_CHAR_SET ) )\n // InternalUniMapperGenerator.g:5137:23: ( RULE_ARG_ACTION | RULE_LEXER_CHAR_SET )\n {\n // InternalUniMapperGenerator.g:5137:23: ( RULE_ARG_ACTION | RULE_LEXER_CHAR_SET )\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0=='[') ) {\n alt11=1;\n }\n else if ( (LA11_0=='_') ) {\n alt11=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 11, 0, input);\n\n throw nvae;\n }\n switch (alt11) {\n case 1 :\n // InternalUniMapperGenerator.g:5137:24: RULE_ARG_ACTION\n {\n mRULE_ARG_ACTION(); \n\n }\n break;\n case 2 :\n // InternalUniMapperGenerator.g:5137:40: RULE_LEXER_CHAR_SET\n {\n mRULE_LEXER_CHAR_SET(); \n\n }\n break;\n\n }\n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "private void caseFirstCompressionSub(RuleBasedCollator col, String opt) {\n final int maxLength = 50;\n\n StringBuilder buf1 = new StringBuilder();\n StringBuilder buf2 = new StringBuilder();\n String str1, str2;\n\n for (int n = 1; n <= maxLength; n++) {\n buf1.setLength(0);\n buf2.setLength(0);\n\n for (int i = 0; i < n - 1; i++) {\n buf1.append('a');\n buf2.append('a');\n }\n buf1.append('A');\n buf2.append('a');\n\n str1 = buf1.toString();\n str2 = buf2.toString();\n\n CollationKey key1 = col.getCollationKey(str1);\n CollationKey key2 = col.getCollationKey(str2);\n\n int cmpKey = key1.compareTo(key2);\n int cmpCol = col.compare(str1, str2);\n\n if ((cmpKey < 0 && cmpCol >= 0) || (cmpKey > 0 && cmpCol <= 0) || (cmpKey == 0 && cmpCol != 0)) {\n errln(\"Inconsistent comparison(\" + opt + \"): str1=\" + str1 + \", str2=\" + str2 + \", cmpKey=\" + cmpKey + \" , cmpCol=\" + cmpCol);\n }\n }\n }", "@Override\n public void accept(CharSequence charSequence) {\n }", "public URLCodec(String charset) {\n/* 114 */ this.charset = charset;\n/* */ }", "Builder addEncodings(String value);", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "@Override\n\tpublic void visit(RegExpMySQLOperator arg0) {\n\t\t\n\t}", "protected LR1_Grammar(Grammar grammar) {\n\t\tsuper(grammar);\n\t\tSet follow = new Set(1);\n\t\tfollow.append(END_OF_SOURCE);\n\t\tthis.start.follow = follow;\n\t}", "public final void rule__OpOther__Alternatives_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2438:1: ( ( ( rule__OpOther__Group_3_1_0__0 ) ) | ( '>' ) )\r\n int alt10=2;\r\n int LA10_0 = input.LA(1);\r\n\r\n if ( (LA10_0==22) ) {\r\n int LA10_1 = input.LA(2);\r\n\r\n if ( (LA10_1==22) ) {\r\n alt10=1;\r\n }\r\n else if ( (LA10_1==EOF||(LA10_1>=RULE_ID && LA10_1<=RULE_STRING)||LA10_1==23||(LA10_1>=30 && LA10_1<=31)||LA10_1==36||(LA10_1>=39 && LA10_1<=40)||LA10_1==74||LA10_1==104||(LA10_1>=106 && LA10_1<=107)||LA10_1==109||(LA10_1>=113 && LA10_1<=115)||(LA10_1>=117 && LA10_1<=122)||LA10_1==132) ) {\r\n alt10=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 10, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 10, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt10) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2439:1: ( ( rule__OpOther__Group_3_1_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2439:1: ( ( rule__OpOther__Group_3_1_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2440:1: ( rule__OpOther__Group_3_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_3_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2441:1: ( rule__OpOther__Group_3_1_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2441:2: rule__OpOther__Group_3_1_0__0\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Group_3_1_0__0_in_rule__OpOther__Alternatives_3_15187);\r\n rule__OpOther__Group_3_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2445:6: ( '>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2445:6: ( '>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2446:1: '>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_3_1_1()); \r\n }\r\n match(input,22,FOLLOW_22_in_rule__OpOther__Alternatives_3_15206); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGreaterThanSignKeyword_3_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public static java.lang.CharSequence escapeCsv(java.lang.CharSequence r13, boolean r14) {\n /*\n java.lang.String r0 = \"value\"\n java.lang.Object r0 = p043io.netty.util.internal.ObjectUtil.checkNotNull(r13, r0)\n java.lang.CharSequence r0 = (java.lang.CharSequence) r0\n int r0 = r0.length()\n if (r0 != 0) goto L_0x000f\n return r13\n L_0x000f:\n int r1 = r0 + -1\n r2 = 0\n r3 = 1\n if (r14 == 0) goto L_0x0030\n int r14 = indexOfFirstNonOwsChar(r13, r0)\n if (r14 != r0) goto L_0x001e\n java.lang.String r13 = \"\"\n return r13\n L_0x001e:\n int r4 = indexOfLastNonOwsChar(r13, r14, r0)\n if (r14 > 0) goto L_0x0029\n if (r4 >= r1) goto L_0x0027\n goto L_0x0029\n L_0x0027:\n r1 = 0\n goto L_0x002a\n L_0x0029:\n r1 = 1\n L_0x002a:\n if (r1 == 0) goto L_0x0033\n int r0 = r4 - r14\n int r0 = r0 + r3\n goto L_0x0033\n L_0x0030:\n r4 = r1\n r14 = 0\n r1 = 0\n L_0x0033:\n java.lang.StringBuilder r5 = new java.lang.StringBuilder\n int r6 = r0 + 7\n r5.<init>(r6)\n char r6 = r13.charAt(r14)\n boolean r6 = isDoubleQuote(r6)\n if (r6 == 0) goto L_0x0052\n char r6 = r13.charAt(r4)\n boolean r6 = isDoubleQuote(r6)\n if (r6 == 0) goto L_0x0052\n if (r0 == r3) goto L_0x0052\n r0 = 1\n goto L_0x0053\n L_0x0052:\n r0 = 0\n L_0x0053:\n r2 = r14\n r6 = 0\n r7 = 0\n L_0x0056:\n if (r2 > r4) goto L_0x009d\n char r8 = r13.charAt(r2)\n r9 = 10\n if (r8 == r9) goto L_0x0096\n r9 = 13\n if (r8 == r9) goto L_0x0096\n r9 = 34\n if (r8 == r9) goto L_0x006d\n r9 = 44\n if (r8 == r9) goto L_0x0096\n goto L_0x0097\n L_0x006d:\n if (r2 == r14) goto L_0x0091\n if (r2 != r4) goto L_0x0072\n goto L_0x0091\n L_0x0072:\n int r10 = r2 + 1\n char r11 = r13.charAt(r10)\n boolean r11 = isDoubleQuote(r11)\n int r12 = r2 + -1\n char r12 = r13.charAt(r12)\n boolean r12 = isDoubleQuote(r12)\n if (r12 != 0) goto L_0x0097\n if (r11 == 0) goto L_0x008c\n if (r10 != r4) goto L_0x0097\n L_0x008c:\n r5.append(r9)\n r6 = 1\n goto L_0x0097\n L_0x0091:\n if (r0 != 0) goto L_0x009a\n r5.append(r9)\n L_0x0096:\n r7 = 1\n L_0x0097:\n r5.append(r8)\n L_0x009a:\n int r2 = r2 + 1\n goto L_0x0056\n L_0x009d:\n if (r6 != 0) goto L_0x00ae\n if (r7 == 0) goto L_0x00a4\n if (r0 != 0) goto L_0x00a4\n goto L_0x00ae\n L_0x00a4:\n if (r1 == 0) goto L_0x00ad\n if (r0 == 0) goto L_0x00ac\n java.lang.StringBuilder r5 = quote(r5)\n L_0x00ac:\n return r5\n L_0x00ad:\n return r13\n L_0x00ae:\n java.lang.StringBuilder r13 = quote(r5)\n return r13\n */\n throw new UnsupportedOperationException(\"Method not decompiled: p043io.netty.util.internal.StringUtil.escapeCsv(java.lang.CharSequence, boolean):java.lang.CharSequence\");\n }", "public abstract void mo2157b(CharSequence charSequence);", "protected AbstractCSVParser(TokenStream input) {\n super(input);\n }", "public final void rule__AstExpression__OperatorAlternatives_1_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2784:1: ( ( '||' ) | ( 'or' ) | ( '..' ) )\n int alt12=3;\n switch ( input.LA(1) ) {\n case 14:\n {\n alt12=1;\n }\n break;\n case 15:\n {\n alt12=2;\n }\n break;\n case 16:\n {\n alt12=3;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 12, 0, input);\n\n throw nvae;\n }\n\n switch (alt12) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2785:1: ( '||' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2785:1: ( '||' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2786:1: '||'\n {\n before(grammarAccess.getAstExpressionAccess().getOperatorVerticalLineVerticalLineKeyword_1_1_0_0()); \n match(input,14,FOLLOW_14_in_rule__AstExpression__OperatorAlternatives_1_1_06010); \n after(grammarAccess.getAstExpressionAccess().getOperatorVerticalLineVerticalLineKeyword_1_1_0_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2793:6: ( 'or' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2793:6: ( 'or' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2794:1: 'or'\n {\n before(grammarAccess.getAstExpressionAccess().getOperatorOrKeyword_1_1_0_1()); \n match(input,15,FOLLOW_15_in_rule__AstExpression__OperatorAlternatives_1_1_06030); \n after(grammarAccess.getAstExpressionAccess().getOperatorOrKeyword_1_1_0_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2801:6: ( '..' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2801:6: ( '..' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2802:1: '..'\n {\n before(grammarAccess.getAstExpressionAccess().getOperatorFullStopFullStopKeyword_1_1_0_2()); \n match(input,16,FOLLOW_16_in_rule__AstExpression__OperatorAlternatives_1_1_06050); \n after(grammarAccess.getAstExpressionAccess().getOperatorFullStopFullStopKeyword_1_1_0_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==38) ) {\n alt10=1;\n }\n else if ( (LA10_0==RULE_ID) ) {\n alt10=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 10, 0, input);\n\n throw nvae;\n }\n switch (alt10) {\n case 1 :\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n {\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n {\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private static String guessAppropriateEncoding(CharSequence contents) {\n\t\tfor (int i = 0; i < contents.length(); i++) {\n\t\t\tif (contents.charAt(i) > 0xFF) {\n\t\t\t\treturn \"UTF-8\";\n\t\t\t}\n\t\t}\n\t\treturn null;\n\t}", "private static String guessAppropriateEncoding(CharSequence contents) {\n\t\tfor (int i = 0; i < contents.length(); i++) {\n\t\t\tif (contents.charAt(i) > 0xFF) {\n\t\t\t\treturn \"UTF-8\";\n\t\t\t}\n\t\t}\n\t\treturn null;\n\t}", "public interface DboCsvTransformer<DBO extends DatabaseObject<?>> extends DboFileTransformer<DBO> {\n\n String COMMA_IN_QUOTES_REGEX = \",(?=(?:[^\\\\\\\"]*\\\\\\\"[^\\\\\\\"]*\\\\\\\")*[^\\\\\\\"]*$)\";\n\n /**\n * This method consumes a single line of CSV to produce a DatabaseObject.\n *\n * @param csv the single line of CSV representing a single DatabaseObject\n * @return the DatabaseObject represented\n * @throws TransformerException if the object cannot be produced\n */\n @Override\n DBO consume(String csv) throws TransformerException;\n\n /**\n * This method consumes a DatabaseObject to produce a String in CSV format.\n *\n * @param object the DatabaseObject\n * @return a String in CSV format\n * @throws TransformerException if the object cannot be consumed\n */\n @Override\n String produce(DBO object) throws TransformerException;\n\n}", "@Override\n\t\tpublic void setCharacterEncoding(String env) throws UnsupportedEncodingException {\n\t\t\t\n\t\t}", "public final void rule__IdOrString__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:339:1: ( ( RULE_ID ) | ( RULE_STRING ) )\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==RULE_ID) ) {\n alt3=1;\n }\n else if ( (LA3_0==RULE_STRING) ) {\n alt3=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"335:1: rule__IdOrString__Alternatives : ( ( RULE_ID ) | ( RULE_STRING ) );\", 3, 0, input);\n\n throw nvae;\n }\n switch (alt3) {\n case 1 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:340:1: ( RULE_ID )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:340:1: ( RULE_ID )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:341:1: RULE_ID\n {\n before(grammarAccess.getIdOrStringAccess().getIDTerminalRuleCall_0()); \n match(input,RULE_ID,FollowSets000.FOLLOW_RULE_ID_in_rule__IdOrString__Alternatives665); \n after(grammarAccess.getIdOrStringAccess().getIDTerminalRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:346:6: ( RULE_STRING )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:346:6: ( RULE_STRING )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:347:1: RULE_STRING\n {\n before(grammarAccess.getIdOrStringAccess().getSTRINGTerminalRuleCall_1()); \n match(input,RULE_STRING,FollowSets000.FOLLOW_RULE_STRING_in_rule__IdOrString__Alternatives682); \n after(grammarAccess.getIdOrStringAccess().getSTRINGTerminalRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public abstract String zza(Charset charset);", "public final void entryRuleSaveCSV() throws RecognitionException {\n try {\n // InternalCsv.g:255:1: ( ruleSaveCSV EOF )\n // InternalCsv.g:256:1: ruleSaveCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Override\n public void importCSV(File file) {\n System.out.println(\"oi\");\n System.out.println(file.isFile()+\" \"+file.getAbsolutePath());\n if(file.isFile() && file.getPath().toLowerCase().contains(\".csv\")){\n System.out.println(\"Entro\");\n try {\n final Reader reader = new FileReader(file);\n final BufferedReader bufferReader = new BufferedReader(reader);\n String[] cabecalho = bufferReader.readLine().split(\",\");\n int tipo;\n if(cabecalho.length == 3){\n if(cabecalho[2].equalsIgnoreCase(\"SIGLA\")){\n tipo = 1;\n System.out.println(\"TIPO PAIS\");\n }\n else {\n tipo = 2;\n System.out.println(\"TIPO CIDADE\");\n }\n }else {\n tipo = 3;\n System.out.println(\"TIPO ESTADO\");\n }\n \n while(true){\n String linha = bufferReader.readLine();\n if(linha == null){\n break;\n }\n String[] row = linha.split(\",\");\n switch (tipo) {\n case 1:\n Pais pais = new Pais();\n pais.setId(Long.parseLong(row[0]));\n pais.setNome(row[1]);\n pais.setSigla(row[2]);\n new PaisDaoImpl().insert(pais);\n break;\n case 2:\n Cidade cidade = new Cidade();\n cidade.setId(Long.parseLong(row[0]));\n cidade.setNome(row[1]);\n cidade.setEstado(Long.parseLong(row[2]));\n new CidadeDaoImpl().insert(cidade);\n break;\n default:\n Estado estado = new Estado();\n estado.setId(Long.parseLong(row[0]));\n estado.setNome(row[1]);\n estado.setUf(row[2]);\n estado.setPais(Long.parseLong(row[3]));\n new EstadoDaoImpl().insert(estado);\n break;\n }\n }\n \n } catch (FileNotFoundException ex) {\n Logger.getLogger(SQLUtilsImpl.class.getName()).log(Level.SEVERE, null, ex);\n } catch (IOException ex) {\n Logger.getLogger(SQLUtilsImpl.class.getName()).log(Level.SEVERE, null, ex);\n }\n }\n }", "Builder addEncoding(String value);", "@Override\n\tpublic void setCharacterEncoding(String env) throws UnsupportedEncodingException {\n\t\t\n\t}", "public static void test000(String[] args) throws IOException\n {\n\n\n //System.out.println(sql_insert_shipto_template);\n\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SALES_ORGANIZATION_CODE%\", \"261\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%DC_SHORTNAME%\", \"PF\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SHIPTO_CODE%\", \"10156409\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%PRODUCT_CODE%\", \"10104574\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%STARTDATE%\", \"01.02.2014\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%FINISHDATE%\", \"31.12.9999\");\n\n\n // String test = \"1\\t2\\t3\\n4\\t5\\t6\";\n\n String test = \"SO;SHIPTO;SHIPTO;DCSHORT;REP;GRD;Name;start date;end date\\n\" +\n \"261;10156405PF;10156405;PF;249394;10104570;A.KORKUNOV DARK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"261;10156405CH;10156405;CH;249410;10104542;A.KORKUNOV MILK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"377;10156409PF;10156409;PF;249399;10104574;A.KORKUNOV DARK ALMOND 5*10*100G;07.10.2014;31.12.9999\\n\";\n\n\n //CSVParser parser = CSVParser.parse(test, CSVFormat.newFormat(';'));\n File file = new File(\"c:\\\\MATDET_SHIPTO_EXAMPLE.csv\");\n CSVParser parser = CSVParser.parse(file, java.nio.charset.Charset.defaultCharset(), CSVFormat.newFormat(';'));\n\n int rownum = 0;\n for (CSVRecord strings : parser)\n {\n\n if (rownum++ == 0)\n continue;\n String SO = strings.get(0);\n String SHIPTO = strings.get(2);\n String DCSHORT = strings.get(3);\n //String REP = strings.get(4);\n String PRODUCT = strings.get(5);\n String START = strings.get(7);\n String END = strings.get(8);\n\n String temp = SQL_INSERT_TMATDET_SHIPTO_TEMPLATE;\n temp = temp.replaceAll(\"%SALES_ORGANIZATION_CODE%\", SO);\n temp = temp.replaceAll(\"%DC_SHORTNAME%\", DCSHORT);\n temp = temp.replaceAll(\"%SHIPTO_CODE%\", SHIPTO);\n temp = temp.replaceAll(\"%PRODUCT_CODE%\", PRODUCT);\n temp = temp.replaceAll(\"%STARTDATE%\", START);\n temp = temp.replaceAll(\"%FINISHDATE%\", END);\n\n\n System.out.println(temp);\n }\n\n System.out.println(\"rows=\" + rownum);\n\n\n// CsvParser parser = new CsvParserImpl();\n// CSV\n// parser.\n// List parsed = parser.parse(\"1\\t2\\t3\\n4\\t5\\t6\");\n// System.out.println(parsed.get(0));\n\n //System.out.println(sql_insert_shipto_template);\n\n }", "@Test(timeout = 4000)\n public void test099() throws Throwable {\n StringBuilder stringBuilder0 = new StringBuilder(90);\n StringBuilder stringBuilder1 = stringBuilder0.appendCodePoint(90);\n SQLUtil.addOptionalCondition(\" NOT NULL\", stringBuilder1);\n assertEquals(\"Z or NOT NULL\", stringBuilder1.toString());\n assertEquals(\"Z or NOT NULL\", stringBuilder0.toString());\n }", "@Test\n public void matchUTF8Postfix() throws Exception {\n tags.put(TAGK, \"Здравей'_хора\");\n TagVFilter filter = new TagVWildcardFilter(TAGK, \n \"*хора\");\n assertTrue(filter.match(tags).join());\n }", "public final void rule__StatementList__Alternatives_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3428:1: ( ( ';' ) | ( ',' ) )\r\n int alt14=2;\r\n int LA14_0 = input.LA(1);\r\n\r\n if ( (LA14_0==42) ) {\r\n alt14=1;\r\n }\r\n else if ( (LA14_0==43) ) {\r\n alt14=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 14, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt14) {\r\n case 1 :\r\n // InternalGo.g:3429:2: ( ';' )\r\n {\r\n // InternalGo.g:3429:2: ( ';' )\r\n // InternalGo.g:3430:3: ';'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementListAccess().getSemicolonKeyword_1_1_0()); \r\n }\r\n match(input,42,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementListAccess().getSemicolonKeyword_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3435:2: ( ',' )\r\n {\r\n // InternalGo.g:3435:2: ( ',' )\r\n // InternalGo.g:3436:3: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementListAccess().getCommaKeyword_1_1_1()); \r\n }\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementListAccess().getCommaKeyword_1_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void convertCsvDataToSQLScrip(List<CorruptionIndex> data, String destinationFile){\n\n }", "public final void ruleother() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:327:2: ( ( ( rule__Other__Alternatives ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:329:1: ( rule__Other__Alternatives )\n {\n before(grammarAccess.getOtherAccess().getAlternatives()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:1: ( rule__Other__Alternatives )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:2: rule__Other__Alternatives\n {\n pushFollow(FOLLOW_rule__Other__Alternatives_in_ruleother637);\n rule__Other__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getOtherAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public WorldGenFeatureBasaltColumns(Codec<WorldGenFeatureBasaltColumnsConfiguration> var0) {\n/* 33 */ super(var0);\n/* */ }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void main(String...args) throws Throwable {\n \tSystem.out.println(toLexer(\"main[] = +hello ' ' +world ; hello = +'hel\\u0009lo'; world = 'world';\").parse(\"hel\tlo world\"));\n \t\n \t// demo using the csv grammar. Note the fact that it can match empty fields\n \tString csvGrammar = toString(new File(\"grammars/csv.g\"));\n \tLexer csvLexer = toLexer(csvGrammar);\n \tSystem.out.println(csvLexer.parse(\n \t\t\"line name,b column,some string\\n\"\n \t\t+\"line 1, some spaces ,\\\"got a comma , inside a quoted value to test protection\\\"\\n\"\n \t\t+\"line 2 with one field,,\\\"\\\"\\\"\\\"\\n\"\n \t));\n \t\n \t// demo/checking using the grammar of the grammar itself\n \tString lexerGrammar = toString(new File(\"src/lexer/lexer.g\"));\n \tLexer lexerLexer = LEXER_PARSER;\n \tNode node;\n \tfor (int i=0; i<4; i++) {\n\t \tnode = lexerLexer.parse(lexerGrammar);\n\t \tSystem.out.println(\"[\"+i+\"] ================================================\");\n\t \tSystem.out.println(node);\n\t \tlexerLexer = toLexer(node);\n \t}\n\t\t\n }", "public URLCodec() {\n/* 104 */ this(\"UTF-8\");\n/* */ }", "protected AbstractCSVParser(TokenStream input, RecognizerSharedState state) {\n super(input, state);\n }", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__AstExpressionAdditive__OperatorAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25355:1: ( ( ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25356:1: ( ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25356:1: ( ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25357:1: ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 )\n {\n before(grammarAccess.getAstExpressionAdditiveAccess().getOperatorAlternatives_1_1_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25358:1: ( rule__AstExpressionAdditive__OperatorAlternatives_1_1_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:25358:2: rule__AstExpressionAdditive__OperatorAlternatives_1_1_0\n {\n pushFollow(FOLLOW_rule__AstExpressionAdditive__OperatorAlternatives_1_1_0_in_rule__AstExpressionAdditive__OperatorAssignment_1_150941);\n rule__AstExpressionAdditive__OperatorAlternatives_1_1_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstExpressionAdditiveAccess().getOperatorAlternatives_1_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static String guessAppropriateEncoding(CharSequence contents) {\n for (int i = 0; i < contents.length(); i++) {\n if (contents.charAt(i) > 0xFF) {\n return \"UTF-8\";\n }\n }\n return null;\n }", "public void loadTermsFromCSV(String table, String dictionary) {\n // Get csv file\n String[] dictionaryList = myContext.getResources().getStringArray(R.array.dictionary_names);\n String[] csvList = myContext.getResources().getStringArray(R.array.dictionary_csv);\n int index = Arrays.asList(dictionaryList).indexOf(dictionary);\n String dictionaryCSV = csvList[index];\n\n // Get database object\n SQLiteDatabase db = this.getWritableDatabase();\n\n // Prepare sql statment\n String sql = \"INSERT INTO \" + table + \" (\" +\n KEY_DICTIONARY + \", \" + KEY_TERM + \", \" + KEY_SUBJECT + \", \" + KEY_DEFINITION + \", \" + KEY_SYNONYMS +\n \") VALUES (?, ?, ?, ?, ?)\";\n\n // Compile sql statment\n SQLiteStatement statement = db.compileStatement(sql);\n\n // Start transaction\n db.beginTransaction();\n try {\n // Source: http://www.simplecodestuffs.com/read-write-csv-file-in-java-using-opencsv-library\n CSVReader reader;\n try {\n reader = new CSVReader(new InputStreamReader(myContext.getAssets().open(dictionaryCSV)));\n String[] row;\n\n while ((row = reader.readNext()) != null) {\n // Clear statment bindings\n statement.clearBindings();\n // Bind corresponding values to sql statement\n statement.bindString(1, dictionary);\n statement.bindString(2, row[1]);\n statement.bindString(3, row[0]);\n statement.bindString(4, row[7] + \";\" + row[8] + \";\" + row[9]);\n statement.bindString(5, row[5]);\n // Execute sql statement\n statement.execute();\n }\n }\n catch (FileNotFoundException e) { }\n catch (IOException e) { }\n\n statement.close();\n db.setTransactionSuccessful();\n } finally {\n // End transaction\n db.endTransaction();\n }\n }", "@Test\r\n public void testValidEncodings() {\r\n assertThatInputIsValid(\"\");\r\n assertThatInputIsValid(\"UTF8\");\r\n assertThatInputIsValid(\"UTF-8\");\r\n assertThatInputIsValid(\"CP1252\");\r\n assertThatInputIsValid(\"ISO-8859-1\");\r\n assertThatInputIsValid(\"ISO-8859-5\");\r\n assertThatInputIsValid(\"ISO-8859-9\");\r\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public void setAcceptCharset(List<Charset> acceptableCharsets)\r\n/* 93: */ {\r\n/* 94:157 */ StringBuilder builder = new StringBuilder();\r\n/* 95:158 */ for (Iterator<Charset> iterator = acceptableCharsets.iterator(); iterator.hasNext();)\r\n/* 96: */ {\r\n/* 97:159 */ Charset charset = (Charset)iterator.next();\r\n/* 98:160 */ builder.append(charset.name().toLowerCase(Locale.ENGLISH));\r\n/* 99:161 */ if (iterator.hasNext()) {\r\n/* 100:162 */ builder.append(\", \");\r\n/* 101: */ }\r\n/* 102: */ }\r\n/* 103:165 */ set(\"Accept-Charset\", builder.toString());\r\n/* 104: */ }", "public final void testCaron2() \n\t\t\tthrows ParserConfigurationException, IOException, SAXException \n\t{\n\t\tassertSingleResult(\"9\", fldName, \"Latviesǔ\");\n\t\tassertSingleResult(\"9\", fldName, \"Latviesu\");\n\t}", "public final void ruleIdOrString() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:270:2: ( ( ( rule__IdOrString__Alternatives ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:271:1: ( ( rule__IdOrString__Alternatives ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:271:1: ( ( rule__IdOrString__Alternatives ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:272:1: ( rule__IdOrString__Alternatives )\n {\n before(grammarAccess.getIdOrStringAccess().getAlternatives()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:273:1: ( rule__IdOrString__Alternatives )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:273:2: rule__IdOrString__Alternatives\n {\n pushFollow(FollowSets000.FOLLOW_rule__IdOrString__Alternatives_in_ruleIdOrString514);\n rule__IdOrString__Alternatives();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getIdOrStringAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16777:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n // InternalDroneScript.g:16779:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:16780:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n // InternalDroneScript.g:16780:3: rule__XImportDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Test(timeout = 4000)\n public void test085() throws Throwable {\n String string0 = SQLUtil.normalize(\"TiI~,Q-Hqtp'@\", true);\n assertEquals(\"TiI ~, Q - Hqtp '@'\", string0);\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public CCPackedGSMCharset() {\n super(NAME,ALIASES,\n BYTE_TO_CHAR_CAPITAL_C_CEDILLA,BYTE_TO_CHAR_ESCAPED_DEFAULT,\n CHAR_TO_BYTE_CAPITAL_C_CEDILLA,CHAR_TO_BYTE_ESCAPED_DEFAULT);\n }", "private AppendableCharSequence(char[] chars)\r\n/* 20: */ {\r\n/* 21: 33 */ this.chars = chars;\r\n/* 22: 34 */ this.pos = chars.length;\r\n/* 23: */ }", "@Override\n DBO consume(String csv) throws TransformerException;", "@Override\n\tpublic void characters(char[] arg0, int arg1, int arg2) throws SAXException {\n\t\t\n\t}", "public abstract int encodeUtf8(CharSequence charSequence, byte[] bArr, int i, int i2);", "@Test\n @JUnitTemporaryDatabase // Relies on specific IDs so we need a fresh database\n public void testImportUtf8() throws Exception {\n createAndFlushServiceTypes();\n createAndFlushCategories();\n \n //Initialize the database\n ModelImporter mi = m_importer;\n String specFile = \"/utf-8.xml\";\n mi.importModelFromResource(new ClassPathResource(specFile));\n \n assertEquals(1, mi.getNodeDao().countAll());\n // \\u00f1 is unicode for n~ \n assertEquals(\"\\u00f1ode2\", mi.getNodeDao().get(1).getLabel());\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test\n\tpublic final void testRussianMacronOverI() \n\t\t\tthrows ParserConfigurationException, IOException, SAXException \n\t{\n\t\tassertSingleResult(\"2099904\", fldName, \"istorīi\");\n\t\tassertSingleResult(\"2099904\", fldName, \"istorii\");\n\t\t// i have no idea if these should work, or how it should look here\n//\t\tassertSingleDocWithValue(\"2099904\", fldName, \"istorī\");\n//\t\tassertSingleDocWithValue(\"2099904\", fldName, \"istori\");\n\t}", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test(timeout = 4000)\n public void test086() throws Throwable {\n String string0 = SQLUtil.normalize(\"aT:7W`oI)N(jLl^oF<HQ\", false);\n assertEquals(\"aT : 7W ` oI) N (jLl ^ oF < HQ\", string0);\n }", "protected void buildFastLatinTable(android.icu.impl.coll.CollationData r1) {\n /*\n // Can't load method instructions: Load method exception: bogus opcode: 00ef in method: android.icu.impl.coll.CollationDataBuilder.buildFastLatinTable(android.icu.impl.coll.CollationData):void, dex: \n */\n throw new UnsupportedOperationException(\"Method not decompiled: android.icu.impl.coll.CollationDataBuilder.buildFastLatinTable(android.icu.impl.coll.CollationData):void\");\n }", "@Test\n public void mapCollation() {\n check(MAPCOLL);\n query(MAPCOLL.args(MAPNEW.args()), Token.string(QueryText.URLCOLL));\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // InternalCsv.g:80:1: ( ruleLanguage EOF )\n // InternalCsv.g:81:1: ruleLanguage EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageRule()); \n }\n pushFollow(FOLLOW_1);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Override\n public String getCharacterEncoding() {\n return null;\n }", "public final void rule__PredicateComparison__OpAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9934:1: ( ( ( rule__PredicateComparison__OpAlternatives_1_1_0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9935:1: ( ( rule__PredicateComparison__OpAlternatives_1_1_0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9935:1: ( ( rule__PredicateComparison__OpAlternatives_1_1_0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9936:1: ( rule__PredicateComparison__OpAlternatives_1_1_0 )\n {\n before(grammarAccess.getPredicateComparisonAccess().getOpAlternatives_1_1_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9937:1: ( rule__PredicateComparison__OpAlternatives_1_1_0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9937:2: rule__PredicateComparison__OpAlternatives_1_1_0\n {\n pushFollow(FOLLOW_rule__PredicateComparison__OpAlternatives_1_1_0_in_rule__PredicateComparison__OpAssignment_1_119494);\n rule__PredicateComparison__OpAlternatives_1_1_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getPredicateComparisonAccess().getOpAlternatives_1_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstUnit__ExternalsAlternatives_4_2_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2506:1: ( ( ruleAstExternalVariable ) | ( ruleAstExternalFunction ) | ( ruleAstExternalProcedure ) )\n int alt4=3;\n alt4 = dfa4.predict(input);\n switch (alt4) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2507:1: ( ruleAstExternalVariable )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2507:1: ( ruleAstExternalVariable )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2508:1: ruleAstExternalVariable\n {\n before(grammarAccess.getAstUnitAccess().getExternalsAstExternalVariableParserRuleCall_4_2_0_0()); \n pushFollow(FOLLOW_ruleAstExternalVariable_in_rule__AstUnit__ExternalsAlternatives_4_2_05310);\n ruleAstExternalVariable();\n\n state._fsp--;\n\n after(grammarAccess.getAstUnitAccess().getExternalsAstExternalVariableParserRuleCall_4_2_0_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2513:6: ( ruleAstExternalFunction )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2513:6: ( ruleAstExternalFunction )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2514:1: ruleAstExternalFunction\n {\n before(grammarAccess.getAstUnitAccess().getExternalsAstExternalFunctionParserRuleCall_4_2_0_1()); \n pushFollow(FOLLOW_ruleAstExternalFunction_in_rule__AstUnit__ExternalsAlternatives_4_2_05327);\n ruleAstExternalFunction();\n\n state._fsp--;\n\n after(grammarAccess.getAstUnitAccess().getExternalsAstExternalFunctionParserRuleCall_4_2_0_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2519:6: ( ruleAstExternalProcedure )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2519:6: ( ruleAstExternalProcedure )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2520:1: ruleAstExternalProcedure\n {\n before(grammarAccess.getAstUnitAccess().getExternalsAstExternalProcedureParserRuleCall_4_2_0_2()); \n pushFollow(FOLLOW_ruleAstExternalProcedure_in_rule__AstUnit__ExternalsAlternatives_4_2_05344);\n ruleAstExternalProcedure();\n\n state._fsp--;\n\n after(grammarAccess.getAstUnitAccess().getExternalsAstExternalProcedureParserRuleCall_4_2_0_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public LintParser(final String defaultEncoding) {\n\t\tsuper(defaultEncoding);\n\t}", "protected Trie(char[] paramArrayOfchar, int paramInt, DataManipulate paramDataManipulate) {\n/* 147 */ this.m_options_ = paramInt;\n/* 148 */ if (paramDataManipulate != null) {\n/* 149 */ this.m_dataManipulate_ = paramDataManipulate;\n/* */ } else {\n/* 151 */ this.m_dataManipulate_ = new DefaultGetFoldingOffset();\n/* */ } \n/* 153 */ this.m_isLatin1Linear_ = ((this.m_options_ & 0x200) != 0);\n/* */ \n/* 155 */ this.m_index_ = paramArrayOfchar;\n/* 156 */ this.m_dataOffset_ = this.m_index_.length;\n/* */ }", "public String getDefaultCharset() {\n/* 359 */ return this.charset;\n/* */ }", "String toAlpha2(final String iso3166Alpha3);", "public NParseCsv(String charset, boolean isHeaderPresent)\n {\n try\n {\n _decoder = Charset.forName(charset).newDecoder();\n _inBytes = null;\n _outChars = null;\n }\n catch(Exception e)\n {\n System.err.println(\"Error creating charset decoder for '\"+charset+\"' in NParseCsv(): \"+e);\n }\n \n _isHeaderPresent = isHeaderPresent;\n _linePos = 0;\n _fieldPos = 0;\n _charPos = 0;\n }", "private void a2z(StringBuilder sb2) {\n for (; ; ) {\n int ch = reader.peekChar();\n if (isA2Z(ch)) {\n reader.readChar();\n stringBuilder.append((char) ch);\n } else return;\n }\n }", "public final void rule__OpOther__Group_3__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7732:1: ( ( ( rule__OpOther__Alternatives_3_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7733:1: ( ( rule__OpOther__Alternatives_3_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7733:1: ( ( rule__OpOther__Alternatives_3_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7734:1: ( rule__OpOther__Alternatives_3_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives_3_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7735:1: ( rule__OpOther__Alternatives_3_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7735:2: rule__OpOther__Alternatives_3_1\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Alternatives_3_1_in_rule__OpOther__Group_3__1__Impl16071);\r\n rule__OpOther__Alternatives_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstUnit__ExternalsAssignment_4_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22583:1: ( ( ( rule__AstUnit__ExternalsAlternatives_4_2_0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22584:1: ( ( rule__AstUnit__ExternalsAlternatives_4_2_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22584:1: ( ( rule__AstUnit__ExternalsAlternatives_4_2_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22585:1: ( rule__AstUnit__ExternalsAlternatives_4_2_0 )\n {\n before(grammarAccess.getAstUnitAccess().getExternalsAlternatives_4_2_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22586:1: ( rule__AstUnit__ExternalsAlternatives_4_2_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22586:2: rule__AstUnit__ExternalsAlternatives_4_2_0\n {\n pushFollow(FOLLOW_rule__AstUnit__ExternalsAlternatives_4_2_0_in_rule__AstUnit__ExternalsAssignment_4_245230);\n rule__AstUnit__ExternalsAlternatives_4_2_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstUnitAccess().getExternalsAlternatives_4_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.6722924", "0.5378133", "0.51235795", "0.5103643", "0.5031326", "0.49145147", "0.47735232", "0.46957698", "0.45959705", "0.45872065", "0.45573872", "0.4486593", "0.4485411", "0.44725308", "0.44673377", "0.44396687", "0.43848166", "0.43218353", "0.43010303", "0.42930207", "0.42573854", "0.4228952", "0.42112634", "0.42069164", "0.41970634", "0.4195156", "0.41799378", "0.41780153", "0.41386208", "0.41367567", "0.41326126", "0.41261902", "0.4121762", "0.41099474", "0.40905687", "0.40781358", "0.40707394", "0.4057832", "0.40492502", "0.40486503", "0.40416124", "0.40353101", "0.40198535", "0.40198535", "0.4005209", "0.39995593", "0.39826915", "0.3973989", "0.39565095", "0.39480108", "0.39395207", "0.39325085", "0.39323393", "0.39079627", "0.3906832", "0.38845935", "0.38758782", "0.3875274", "0.38730296", "0.3870629", "0.38677904", "0.38663724", "0.38573393", "0.38501474", "0.38495466", "0.38418844", "0.38417563", "0.38389757", "0.38377392", "0.38325003", "0.38276598", "0.38119936", "0.3809072", "0.38025105", "0.38002208", "0.3797014", "0.37958768", "0.37944245", "0.37924203", "0.37907967", "0.37903637", "0.37874976", "0.37857828", "0.37810543", "0.3778659", "0.37722185", "0.3769815", "0.37672496", "0.37640962", "0.3753242", "0.37510258", "0.37481964", "0.37431562", "0.3738047", "0.3737388", "0.37301955", "0.3729036", "0.3721057", "0.37160084", "0.37104958" ]
0.82043403
0
$ANTLR end "rule__OpenCSV__CharsetAlternatives_4_0" $ANTLR start "rule__OpenCSV__Alternatives_7" InternalCsv.g:702:1: rule__OpenCSV__Alternatives_7 : ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) );
public final void rule__OpenCSV__Alternatives_7() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) ) int alt4=2; int LA4_0 = input.LA(1); if ( (LA4_0==40) ) { alt4=1; } else if ( (LA4_0==12) ) { alt4=2; } else { if (state.backtracking>0) {state.failed=true; return ;} NoViableAltException nvae = new NoViableAltException("", 4, 0, input); throw nvae; } switch (alt4) { case 1 : // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) { // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); } // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 ) // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0 { pushFollow(FOLLOW_2); rule__OpenCSV__HeaderAssignment_7_0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); } } } break; case 2 : // InternalCsv.g:713:2: ( 'false' ) { // InternalCsv.g:713:2: ( 'false' ) // InternalCsv.g:714:3: 'false' { if ( state.backtracking==0 ) { before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); } match(input,12,FOLLOW_2); if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); } } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__OpenCSV__HeaderAssignment_7_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3772:1: ( ( ( 'true' ) ) )\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n {\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n // InternalCsv.g:3774:3: ( 'true' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n // InternalCsv.g:3775:3: ( 'true' )\n // InternalCsv.g:3776:4: 'true'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n match(input,40,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__CharsetAssignment_4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3757:1: ( ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) ) )\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n {\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n // InternalCsv.g:3759:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n // InternalCsv.g:3760:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n // InternalCsv.g:3760:4: rule__OpenCSV__CharsetAlternatives_4_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAlternatives_4_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__CharsetAlternatives_4_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:685:1: ( ( 'latin1' ) | ( 'utf8' ) )\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==10) ) {\n alt3=1;\n }\n else if ( (LA3_0==11) ) {\n alt3=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 3, 0, input);\n\n throw nvae;\n }\n switch (alt3) {\n case 1 :\n // InternalCsv.g:686:2: ( 'latin1' )\n {\n // InternalCsv.g:686:2: ( 'latin1' )\n // InternalCsv.g:687:3: 'latin1'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetLatin1Keyword_4_0_0()); \n }\n match(input,10,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetLatin1Keyword_4_0_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:692:2: ( 'utf8' )\n {\n // InternalCsv.g:692:2: ( 'utf8' )\n // InternalCsv.g:693:3: 'utf8'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetUtf8Keyword_4_0_1()); \n }\n match(input,11,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetUtf8Keyword_4_0_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RefOpenAction__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) )\n int alt5=4;\n switch ( input.LA(1) ) {\n case 23:\n {\n alt5=1;\n }\n break;\n case 24:\n {\n alt5=2;\n }\n break;\n case 25:\n {\n alt5=3;\n }\n break;\n case 26:\n {\n alt5=4;\n }\n break;\n default:\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalCsv.g:728:2: ( rulePrintCSV )\n {\n // InternalCsv.g:728:2: ( rulePrintCSV )\n // InternalCsv.g:729:3: rulePrintCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:734:2: ( ruleNbRow )\n {\n // InternalCsv.g:734:2: ( ruleNbRow )\n // InternalCsv.g:735:3: ruleNbRow\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleNbRow();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:740:2: ( ruleNbCol )\n {\n // InternalCsv.g:740:2: ( ruleNbCol )\n // InternalCsv.g:741:3: ruleNbCol\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n pushFollow(FOLLOW_2);\n ruleNbCol();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); \n }\n\n }\n\n\n }\n break;\n case 4 :\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n {\n // InternalCsv.g:746:2: ( ruleSaveCSV )\n // InternalCsv.g:747:3: ruleSaveCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n pushFollow(FOLLOW_2);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test\n public void detailCompareDefaultDelimiterBooleanOption(){\n LOGGER.info(\"------------- Start running detailCompareDefaultDelimiterNoCompareOption -------------\");\n srcCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/output.csv\";\n desCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/target.csv\";\n boolean result = CsvUtil.compareCsv(srcCsv, desCsv, null,null, CsvUtil.CompareOptions.TRUE_FALSE_IS_1_0);\n assertTrue(result);\n }", "protected boolean readOptionHeader() throws java.io.IOException {\n char c = readCharWord();\n if (c=='~') {\n next();\n return false;\n }\n if (c=='(') {\n next();\n return true;\n }\n throw error();\n }", "public final void ruleRefOpenAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) )\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n {\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives )\n // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__RefOpenAction__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3448:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n {\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n // InternalCsv.g:3450:2: ( rule__XImportDeclaration__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n // InternalCsv.g:3451:2: ( rule__XImportDeclaration__Alternatives_1 )\n // InternalCsv.g:3451:3: rule__XImportDeclaration__Alternatives_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16911:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n {\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n // InternalDroneScript.g:16913:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n // InternalDroneScript.g:16914:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n // InternalDroneScript.g:16914:3: rule__XImportDeclaration__Alternatives_1_0_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1_0_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "ConditionalDeclaration(AST ast) {\r\n\t\tsuper(ast);\r\n\t}", "public final void rule__OpenCSV__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1342:1: ( ( ( rule__OpenCSV__CharsetAssignment_4 ) ) )\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n {\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n // InternalCsv.g:1344:2: ( rule__OpenCSV__CharsetAssignment_4 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n // InternalCsv.g:1345:2: ( rule__OpenCSV__CharsetAssignment_4 )\n // InternalCsv.g:1345:3: rule__OpenCSV__CharsetAssignment_4\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAssignment_4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test\n public void testIncludeHeaderCSV() throws Throwable {\n testIncludeHeaderCSV(false);\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "public zh(Schema ☃, boolean bool) {\r\n/* 20 */ super(☃, bool);\r\n/* */ }", "@Test\n public void detailCompareDefaultDelimiterWithCompareOption(){\n LOGGER.info(\"------------- Start running detailCompareDefaultDelimiterWithCompareOption -------------\");\n srcCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/output.csv\";\n desCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/target.csv\";\n boolean result = CsvUtil.compareCsv(srcCsv, desCsv, null,null, CsvUtil.CompareOptions.TRUE_FALSE_IS_1_0, CsvUtil.CompareOptions.SKIP_NUMBER_TYPE);\n assertTrue(result);\n }", "public final void rule__IfStmt__Group_4__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:8062:1: ( ( ( rule__IfStmt__Alternatives_4_1 ) ) )\r\n // InternalGo.g:8063:1: ( ( rule__IfStmt__Alternatives_4_1 ) )\r\n {\r\n // InternalGo.g:8063:1: ( ( rule__IfStmt__Alternatives_4_1 ) )\r\n // InternalGo.g:8064:2: ( rule__IfStmt__Alternatives_4_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIfStmtAccess().getAlternatives_4_1()); \r\n }\r\n // InternalGo.g:8065:2: ( rule__IfStmt__Alternatives_4_1 )\r\n // InternalGo.g:8065:3: rule__IfStmt__Alternatives_4_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IfStmt__Alternatives_4_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIfStmtAccess().getAlternatives_4_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public static java.lang.CharSequence escapeCsv(java.lang.CharSequence r13, boolean r14) {\n /*\n java.lang.String r0 = \"value\"\n java.lang.Object r0 = p043io.netty.util.internal.ObjectUtil.checkNotNull(r13, r0)\n java.lang.CharSequence r0 = (java.lang.CharSequence) r0\n int r0 = r0.length()\n if (r0 != 0) goto L_0x000f\n return r13\n L_0x000f:\n int r1 = r0 + -1\n r2 = 0\n r3 = 1\n if (r14 == 0) goto L_0x0030\n int r14 = indexOfFirstNonOwsChar(r13, r0)\n if (r14 != r0) goto L_0x001e\n java.lang.String r13 = \"\"\n return r13\n L_0x001e:\n int r4 = indexOfLastNonOwsChar(r13, r14, r0)\n if (r14 > 0) goto L_0x0029\n if (r4 >= r1) goto L_0x0027\n goto L_0x0029\n L_0x0027:\n r1 = 0\n goto L_0x002a\n L_0x0029:\n r1 = 1\n L_0x002a:\n if (r1 == 0) goto L_0x0033\n int r0 = r4 - r14\n int r0 = r0 + r3\n goto L_0x0033\n L_0x0030:\n r4 = r1\n r14 = 0\n r1 = 0\n L_0x0033:\n java.lang.StringBuilder r5 = new java.lang.StringBuilder\n int r6 = r0 + 7\n r5.<init>(r6)\n char r6 = r13.charAt(r14)\n boolean r6 = isDoubleQuote(r6)\n if (r6 == 0) goto L_0x0052\n char r6 = r13.charAt(r4)\n boolean r6 = isDoubleQuote(r6)\n if (r6 == 0) goto L_0x0052\n if (r0 == r3) goto L_0x0052\n r0 = 1\n goto L_0x0053\n L_0x0052:\n r0 = 0\n L_0x0053:\n r2 = r14\n r6 = 0\n r7 = 0\n L_0x0056:\n if (r2 > r4) goto L_0x009d\n char r8 = r13.charAt(r2)\n r9 = 10\n if (r8 == r9) goto L_0x0096\n r9 = 13\n if (r8 == r9) goto L_0x0096\n r9 = 34\n if (r8 == r9) goto L_0x006d\n r9 = 44\n if (r8 == r9) goto L_0x0096\n goto L_0x0097\n L_0x006d:\n if (r2 == r14) goto L_0x0091\n if (r2 != r4) goto L_0x0072\n goto L_0x0091\n L_0x0072:\n int r10 = r2 + 1\n char r11 = r13.charAt(r10)\n boolean r11 = isDoubleQuote(r11)\n int r12 = r2 + -1\n char r12 = r13.charAt(r12)\n boolean r12 = isDoubleQuote(r12)\n if (r12 != 0) goto L_0x0097\n if (r11 == 0) goto L_0x008c\n if (r10 != r4) goto L_0x0097\n L_0x008c:\n r5.append(r9)\n r6 = 1\n goto L_0x0097\n L_0x0091:\n if (r0 != 0) goto L_0x009a\n r5.append(r9)\n L_0x0096:\n r7 = 1\n L_0x0097:\n r5.append(r8)\n L_0x009a:\n int r2 = r2 + 1\n goto L_0x0056\n L_0x009d:\n if (r6 != 0) goto L_0x00ae\n if (r7 == 0) goto L_0x00a4\n if (r0 != 0) goto L_0x00a4\n goto L_0x00ae\n L_0x00a4:\n if (r1 == 0) goto L_0x00ad\n if (r0 == 0) goto L_0x00ac\n java.lang.StringBuilder r5 = quote(r5)\n L_0x00ac:\n return r5\n L_0x00ad:\n return r13\n L_0x00ae:\n java.lang.StringBuilder r13 = quote(r5)\n return r13\n */\n throw new UnsupportedOperationException(\"Method not decompiled: p043io.netty.util.internal.StringUtil.escapeCsv(java.lang.CharSequence, boolean):java.lang.CharSequence\");\n }", "@java.lang.Override\n public boolean hasCsv() {\n return schemaCase_ == 6;\n }", "public final void rule__OpenCSV__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1369:1: ( ( 'header' ) )\n // InternalCsv.g:1370:1: ( 'header' )\n {\n // InternalCsv.g:1370:1: ( 'header' )\n // InternalCsv.g:1371:2: 'header'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n match(input,21,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private Term parseConditional(final boolean required) throws ParseException {\n Term t1 = parseLogicalOr(required);\n int tt = _tokenizer.next();\n if (tt == '?') {\n Term t2 = parseTerm(true);\n tt = _tokenizer.next();\n if (tt == ':') {\n if (isTypeChecking() && !t1.isB()) {\n reportError(\"Boolean operand expected before '?' in conditional '?:' term.\");\n }\n Term t3 = parseTerm(true);\n if (t2.isB() && t3.isB()) {\n t1 = new Term.Cond(Term.TYPE_B, t1, t2, t3);\n } else if ((t2.isD() && t3.isN() || t2.isN() && t3.isD())) {\n t1 = new Term.Cond(Term.TYPE_D, t1, t2, t3);\n } else if ((t2.isI() && t3.isI())) {\n t1 = new Term.Cond(Term.TYPE_I, t1, t2, t3);\n } else if (!isTypeChecking()) {\n t1 = new Term.Cond(Term.TYPE_D, t1, t2, t3);\n } else {\n reportError(\"Boolean or numeric operands expected in conditional '?:' term.\");\n }\n } else {\n _tokenizer.pushBack();\n reportError(\"Missing ':' part of conditional '?:' term.\");\n }\n } else {\n _tokenizer.pushBack();\n }\n return t1;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XBooleanLiteral__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:13880:1: ( ( ( rule__XBooleanLiteral__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:13881:1: ( ( rule__XBooleanLiteral__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:13881:1: ( ( rule__XBooleanLiteral__Alternatives_1 ) )\r\n // InternalDroneScript.g:13882:2: ( rule__XBooleanLiteral__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXBooleanLiteralAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:13883:2: ( rule__XBooleanLiteral__Alternatives_1 )\r\n // InternalDroneScript.g:13883:3: rule__XBooleanLiteral__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XBooleanLiteral__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXBooleanLiteralAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@java.lang.Override\n public boolean hasCsv() {\n return schemaCase_ == 6;\n }", "public final void rule__XBooleanLiteral__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14391:1: ( ( ( rule__XBooleanLiteral__Alternatives_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14392:1: ( ( rule__XBooleanLiteral__Alternatives_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14392:1: ( ( rule__XBooleanLiteral__Alternatives_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14393:1: ( rule__XBooleanLiteral__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXBooleanLiteralAccess().getAlternatives_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14394:1: ( rule__XBooleanLiteral__Alternatives_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:14394:2: rule__XBooleanLiteral__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_rule__XBooleanLiteral__Alternatives_1_in_rule__XBooleanLiteral__Group__1__Impl29171);\r\n rule__XBooleanLiteral__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXBooleanLiteralAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n public boolean parseOptional(PsiBuilder builder) {\n boolean parsed = rule.parseOptional(builder);\n if (!parsed) {\n return false;\n }\n\n while (rule.parseOptional(builder)) {\n }\n\n return true;\n }", "public final void rule__ImportSpec__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15623:1: ( ( ( rule__ImportSpec__Alternatives_0 )? ) )\r\n // InternalGo.g:15624:1: ( ( rule__ImportSpec__Alternatives_0 )? )\r\n {\r\n // InternalGo.g:15624:1: ( ( rule__ImportSpec__Alternatives_0 )? )\r\n // InternalGo.g:15625:2: ( rule__ImportSpec__Alternatives_0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getAlternatives_0()); \r\n }\r\n // InternalGo.g:15626:2: ( rule__ImportSpec__Alternatives_0 )?\r\n int alt121=2;\r\n int LA121_0 = input.LA(1);\r\n\r\n if ( (LA121_0==RULE_ID||(LA121_0>=46 && LA121_0<=47)) ) {\r\n alt121=1;\r\n }\r\n switch (alt121) {\r\n case 1 :\r\n // InternalGo.g:15626:3: rule__ImportSpec__Alternatives_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Alternatives_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getAlternatives_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==38) ) {\n alt10=1;\n }\n else if ( (LA10_0==RULE_ID) ) {\n alt10=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 10, 0, input);\n\n throw nvae;\n }\n switch (alt10) {\n case 1 :\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n {\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n {\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "Expr bool() throws IOException {\n\t\tExpr e = join();\n\t\twhile (look.tag == Tag.OR) {\n\t\t\tToken tok = look;\n\t\t\tmove();\n\t\t\te = new Or(tok, e,join());\n\t\t}\n\t\treturn e;\n\t}", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Bool__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9656:1: ( ( ( rule__Bool__Alternatives_1 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9657:1: ( ( rule__Bool__Alternatives_1 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9657:1: ( ( rule__Bool__Alternatives_1 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9658:1: ( rule__Bool__Alternatives_1 )\n {\n before(grammarAccess.getBoolAccess().getAlternatives_1()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9659:1: ( rule__Bool__Alternatives_1 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9659:2: rule__Bool__Alternatives_1\n {\n pushFollow(FOLLOW_rule__Bool__Alternatives_1_in_rule__Bool__Group__1__Impl18926);\n rule__Bool__Alternatives_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getBoolAccess().getAlternatives_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4337:1: ( ( ( rule__ImportDecl__ImportsAssignment_2_0 ) ) | ( ( rule__ImportDecl__Group_2_1__0 ) ) )\r\n int alt47=2;\r\n int LA47_0 = input.LA(1);\r\n\r\n if ( ((LA47_0>=RULE_STRING && LA47_0<=RULE_ID)||(LA47_0>=46 && LA47_0<=47)) ) {\r\n alt47=1;\r\n }\r\n else if ( (LA47_0==52) ) {\r\n alt47=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 47, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt47) {\r\n case 1 :\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n {\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n // InternalGo.g:4339:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n // InternalGo.g:4340:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n // InternalGo.g:4340:4: rule__ImportDecl__ImportsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__ImportsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n {\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n // InternalGo.g:4345:3: ( rule__ImportDecl__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n // InternalGo.g:4346:3: ( rule__ImportDecl__Group_2_1__0 )\r\n // InternalGo.g:4346:4: rule__ImportDecl__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Test\n public void testFromWithTernaryFollowedByQuery() throws Exception {\n final String text = \"rule X when Cheese() from (isFull ? $cheesery : $market) ?person( \\\"Mark\\\", 42; ) then end\";\n RuleDescr rule = ((RuleDescr) (parse(\"rule\", text)));\n TestCase.assertFalse(parser.getErrors().toString(), parser.hasErrors());\n PatternDescr pattern = ((PatternDescr) (getDescrs().get(0)));\n TestCase.assertEquals(\"Cheese\", pattern.getObjectType());\n TestCase.assertEquals(\"from (isFull ? $cheesery : $market)\", pattern.getSource().getText());\n TestCase.assertFalse(pattern.isQuery());\n pattern = ((PatternDescr) (getDescrs().get(1)));\n TestCase.assertEquals(\"person\", pattern.getObjectType());\n TestCase.assertTrue(pattern.isQuery());\n }", "public final void rule__PredicateComparison__OpAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9934:1: ( ( ( rule__PredicateComparison__OpAlternatives_1_1_0 ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9935:1: ( ( rule__PredicateComparison__OpAlternatives_1_1_0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9935:1: ( ( rule__PredicateComparison__OpAlternatives_1_1_0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9936:1: ( rule__PredicateComparison__OpAlternatives_1_1_0 )\n {\n before(grammarAccess.getPredicateComparisonAccess().getOpAlternatives_1_1_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9937:1: ( rule__PredicateComparison__OpAlternatives_1_1_0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9937:2: rule__PredicateComparison__OpAlternatives_1_1_0\n {\n pushFollow(FOLLOW_rule__PredicateComparison__OpAlternatives_1_1_0_in_rule__PredicateComparison__OpAssignment_1_119494);\n rule__PredicateComparison__OpAlternatives_1_1_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getPredicateComparisonAccess().getOpAlternatives_1_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test\n public void testIncludeHeaderDelimited() throws Throwable {\n testIncludeHeaderDelimited(false);\n }", "@Test\n public void validHeaderTest(){\n //test for a complete header with some missing values\n Header h;\n SimpleReader sr = new SimpleReader();\n String fileForLexer = sr.FileToString(\"sample_abc/piece1.abc\");\n abcLexer lex = new abcLexer(fileForLexer);\n abcParser parser = new abcParser(lex);\n h=parser.parseHeader();\n assertEquals(h.getIndex(),\"1\");\n assertEquals(h.getTitle(),\"PieceNo.1\");\n assertEquals(h.getComposer(),\"Unknown\");//uses a default value\n assertEquals(h.getIndex(),\"1\");\n assertEquals(h.getMeter(),\"4/4\");\n assertEquals(h.getNoteLength(),\"1/4\");\n assertEquals(h.getTempo(),\"140\");\n assertEquals(h.getKey(),\"C\");\n }", "public AdvConditionParser(boolean debugMe)\n{\n yydebug=debugMe;\n}", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "public static void test000(String[] args) throws IOException\n {\n\n\n //System.out.println(sql_insert_shipto_template);\n\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SALES_ORGANIZATION_CODE%\", \"261\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%DC_SHORTNAME%\", \"PF\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SHIPTO_CODE%\", \"10156409\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%PRODUCT_CODE%\", \"10104574\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%STARTDATE%\", \"01.02.2014\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%FINISHDATE%\", \"31.12.9999\");\n\n\n // String test = \"1\\t2\\t3\\n4\\t5\\t6\";\n\n String test = \"SO;SHIPTO;SHIPTO;DCSHORT;REP;GRD;Name;start date;end date\\n\" +\n \"261;10156405PF;10156405;PF;249394;10104570;A.KORKUNOV DARK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"261;10156405CH;10156405;CH;249410;10104542;A.KORKUNOV MILK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"377;10156409PF;10156409;PF;249399;10104574;A.KORKUNOV DARK ALMOND 5*10*100G;07.10.2014;31.12.9999\\n\";\n\n\n //CSVParser parser = CSVParser.parse(test, CSVFormat.newFormat(';'));\n File file = new File(\"c:\\\\MATDET_SHIPTO_EXAMPLE.csv\");\n CSVParser parser = CSVParser.parse(file, java.nio.charset.Charset.defaultCharset(), CSVFormat.newFormat(';'));\n\n int rownum = 0;\n for (CSVRecord strings : parser)\n {\n\n if (rownum++ == 0)\n continue;\n String SO = strings.get(0);\n String SHIPTO = strings.get(2);\n String DCSHORT = strings.get(3);\n //String REP = strings.get(4);\n String PRODUCT = strings.get(5);\n String START = strings.get(7);\n String END = strings.get(8);\n\n String temp = SQL_INSERT_TMATDET_SHIPTO_TEMPLATE;\n temp = temp.replaceAll(\"%SALES_ORGANIZATION_CODE%\", SO);\n temp = temp.replaceAll(\"%DC_SHORTNAME%\", DCSHORT);\n temp = temp.replaceAll(\"%SHIPTO_CODE%\", SHIPTO);\n temp = temp.replaceAll(\"%PRODUCT_CODE%\", PRODUCT);\n temp = temp.replaceAll(\"%STARTDATE%\", START);\n temp = temp.replaceAll(\"%FINISHDATE%\", END);\n\n\n System.out.println(temp);\n }\n\n System.out.println(\"rows=\" + rownum);\n\n\n// CsvParser parser = new CsvParserImpl();\n// CSV\n// parser.\n// List parsed = parser.parse(\"1\\t2\\t3\\n4\\t5\\t6\");\n// System.out.println(parsed.get(0));\n\n //System.out.println(sql_insert_shipto_template);\n\n }", "private static boolean SchemaImport_4_0(PsiBuilder b, int l) {\n if (!recursion_guard_(b, l, \"SchemaImport_4_0\")) return false;\n boolean r;\n Marker m = enter_section_(b);\n r = consumeToken(b, K_AT);\n r = r && URILiteral(b, l + 1);\n r = r && SchemaImport_4_0_2(b, l + 1);\n exit_section_(b, m, null, r);\n return r;\n }", "private CsvSchema(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {\n super(builder);\n }", "abstract protected boolean isHeaderLine(String line);", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BoolOperation__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1773:1: ( ( ',' ) )\n // InternalBSQL2Java.g:1774:1: ( ',' )\n {\n // InternalBSQL2Java.g:1774:1: ( ',' )\n // InternalBSQL2Java.g:1775:2: ','\n {\n before(grammarAccess.getBoolOperationAccess().getCommaKeyword_4_1_0()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getBoolOperationAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public NParseCsv(String charset, boolean isHeaderPresent)\n {\n try\n {\n _decoder = Charset.forName(charset).newDecoder();\n _inBytes = null;\n _outChars = null;\n }\n catch(Exception e)\n {\n System.err.println(\"Error creating charset decoder for '\"+charset+\"' in NParseCsv(): \"+e);\n }\n \n _isHeaderPresent = isHeaderPresent;\n _linePos = 0;\n _fieldPos = 0;\n _charPos = 0;\n }", "public final void rule__XBooleanLiteral__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10009:1: ( ( ( rule__XBooleanLiteral__Alternatives_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10010:1: ( ( rule__XBooleanLiteral__Alternatives_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10010:1: ( ( rule__XBooleanLiteral__Alternatives_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10011:1: ( rule__XBooleanLiteral__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXBooleanLiteralAccess().getAlternatives_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10012:1: ( rule__XBooleanLiteral__Alternatives_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:10012:2: rule__XBooleanLiteral__Alternatives_1\n {\n pushFollow(FOLLOW_rule__XBooleanLiteral__Alternatives_1_in_rule__XBooleanLiteral__Group__1__Impl20151);\n rule__XBooleanLiteral__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXBooleanLiteralAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private void parseUniqueConditionalsFields(Reader reader, Builder builder) throws ParseException\n {\n if (reader.hasRemaining())\n {\n parse(reader, builder, BEGINNING_OF_VERSION_NUMBER);\n parse(reader, builder, VERSION_NUMBER);\n\n // Determine length of unique conditionals & parse\n int length = parse(reader, builder, UNIQUE_CONDITIONALS_SIZE).toInt();\n parseConditionals(reader, builder, UNIQUE_CONDITIONALS, length);\n }\n }", "public final void rule__OpenCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3742:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3743:2: ( RULE_STRING )\n {\n // InternalCsv.g:3743:2: ( RULE_STRING )\n // InternalCsv.g:3744:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16777:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n // InternalDroneScript.g:16779:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:16780:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n // InternalDroneScript.g:16780:3: rule__XImportDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Test\n public void detailCompareDefaultDelimiterNoCompareOption(){\n LOGGER.info(\"------------- Start running detailCompareDefaultDelimiterNoCompareOption -------------\");\n srcCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/output.csv\";\n desCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/target.csv\";\n boolean result = CsvUtil.compareCsv(srcCsv, desCsv, null,null);\n assertTrue(result);\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public boolean csvHeaderChecker(String filePath) throws IOException, CustomizedExceptions {\r\n FileReaderWriter fileReaderWriter = new FileReaderWriter();\r\n ArrayList<String> stringArrayList = new ArrayList<>(Arrays.asList(\"State\",\"Population\",\"Area\",\"Density\"));\r\n boolean flag = fileReaderWriter.checkCSVHeader(filePath, stringArrayList);\r\n return flag;\r\n }", "public boolean isHeaderParsed();", "default boolean visitHeader() {\n\t\treturn true;\n\t}", "boolean isHeader(int position);", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public static boolean isHeaderCompAtLHS(String fsCondition)\n {\n //Get only the left hand side component.\n int liFirstIndex= fsCondition.indexOf( DOT_CHAR);\n String lsLHSComp=fsCondition.substring( 0,liFirstIndex );\n if(lsLHSComp.indexOf(HDR_SUFFIX)>=0)\n {\n return true;\n }\n else\n {\n return false;\n }\n\n }", "public final void rule__AstExpression__OperatorAlternatives_1_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2784:1: ( ( '||' ) | ( 'or' ) | ( '..' ) )\n int alt12=3;\n switch ( input.LA(1) ) {\n case 14:\n {\n alt12=1;\n }\n break;\n case 15:\n {\n alt12=2;\n }\n break;\n case 16:\n {\n alt12=3;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 12, 0, input);\n\n throw nvae;\n }\n\n switch (alt12) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2785:1: ( '||' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2785:1: ( '||' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2786:1: '||'\n {\n before(grammarAccess.getAstExpressionAccess().getOperatorVerticalLineVerticalLineKeyword_1_1_0_0()); \n match(input,14,FOLLOW_14_in_rule__AstExpression__OperatorAlternatives_1_1_06010); \n after(grammarAccess.getAstExpressionAccess().getOperatorVerticalLineVerticalLineKeyword_1_1_0_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2793:6: ( 'or' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2793:6: ( 'or' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2794:1: 'or'\n {\n before(grammarAccess.getAstExpressionAccess().getOperatorOrKeyword_1_1_0_1()); \n match(input,15,FOLLOW_15_in_rule__AstExpression__OperatorAlternatives_1_1_06030); \n after(grammarAccess.getAstExpressionAccess().getOperatorOrKeyword_1_1_0_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2801:6: ( '..' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2801:6: ( '..' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2802:1: '..'\n {\n before(grammarAccess.getAstExpressionAccess().getOperatorFullStopFullStopKeyword_1_1_0_2()); \n match(input,16,FOLLOW_16_in_rule__AstExpression__OperatorAlternatives_1_1_06050); \n after(grammarAccess.getAstExpressionAccess().getOperatorFullStopFullStopKeyword_1_1_0_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__IfStmt__Alternatives_4_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3620:1: ( ( ( rule__IfStmt__IfsAssignment_4_1_0 ) ) | ( ( rule__IfStmt__Block2Assignment_4_1_1 ) ) )\r\n int alt18=2;\r\n int LA18_0 = input.LA(1);\r\n\r\n if ( (LA18_0==69) ) {\r\n alt18=1;\r\n }\r\n else if ( (LA18_0==57) ) {\r\n alt18=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 18, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt18) {\r\n case 1 :\r\n // InternalGo.g:3621:2: ( ( rule__IfStmt__IfsAssignment_4_1_0 ) )\r\n {\r\n // InternalGo.g:3621:2: ( ( rule__IfStmt__IfsAssignment_4_1_0 ) )\r\n // InternalGo.g:3622:3: ( rule__IfStmt__IfsAssignment_4_1_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIfStmtAccess().getIfsAssignment_4_1_0()); \r\n }\r\n // InternalGo.g:3623:3: ( rule__IfStmt__IfsAssignment_4_1_0 )\r\n // InternalGo.g:3623:4: rule__IfStmt__IfsAssignment_4_1_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IfStmt__IfsAssignment_4_1_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIfStmtAccess().getIfsAssignment_4_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3627:2: ( ( rule__IfStmt__Block2Assignment_4_1_1 ) )\r\n {\r\n // InternalGo.g:3627:2: ( ( rule__IfStmt__Block2Assignment_4_1_1 ) )\r\n // InternalGo.g:3628:3: ( rule__IfStmt__Block2Assignment_4_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIfStmtAccess().getBlock2Assignment_4_1_1()); \r\n }\r\n // InternalGo.g:3629:3: ( rule__IfStmt__Block2Assignment_4_1_1 )\r\n // InternalGo.g:3629:4: rule__IfStmt__Block2Assignment_4_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IfStmt__Block2Assignment_4_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIfStmtAccess().getBlock2Assignment_4_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "boolean isSetHeader();", "public final void rule__OpOther__Group_6__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:7157:1: ( ( ( rule__OpOther__Alternatives_6_1 ) ) )\r\n // InternalDroneScript.g:7158:1: ( ( rule__OpOther__Alternatives_6_1 ) )\r\n {\r\n // InternalDroneScript.g:7158:1: ( ( rule__OpOther__Alternatives_6_1 ) )\r\n // InternalDroneScript.g:7159:2: ( rule__OpOther__Alternatives_6_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives_6_1()); \r\n }\r\n // InternalDroneScript.g:7160:2: ( rule__OpOther__Alternatives_6_1 )\r\n // InternalDroneScript.g:7160:3: rule__OpOther__Alternatives_6_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Alternatives_6_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives_6_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "protected AbstractCSVParser(TokenStream input) {\n super(input);\n }", "public final boolean synpred2_ANTLRv3() {\r\n state.backtracking++;\r\n int start = input.mark();\r\n try {\r\n synpred2_ANTLRv3_fragment(); // can never throw exception\r\n } catch (RecognitionException re) {\r\n System.err.println(\"impossible: \"+re);\r\n }\r\n boolean success = !state.failed;\r\n input.rewind(start);\r\n state.backtracking--;\r\n state.failed=false;\r\n return success;\r\n }", "public final void rule__FieldDecl__Alternatives_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3323:1: ( ( ( rule__FieldDecl__Group_1_0__0 ) ) | ( ( rule__FieldDecl__EmbeddedAssignment_1_1 ) ) )\r\n int alt9=2;\r\n switch ( input.LA(1) ) {\r\n case RULE_ID:\r\n {\r\n switch ( input.LA(2) ) {\r\n case EOF:\r\n case RULE_ID:\r\n case RULE_RAW_STRING_LIT:\r\n case RULE_INTERPRETED_STRING_LIT:\r\n case 42:\r\n case 46:\r\n case 47:\r\n case 58:\r\n {\r\n alt9=2;\r\n }\r\n break;\r\n case 45:\r\n {\r\n int LA9_4 = input.LA(3);\r\n\r\n if ( (LA9_4==RULE_LITERAL_TYPE||LA9_4==45||LA9_4==48||LA9_4==52||LA9_4==54||LA9_4==56||(LA9_4>=60 && LA9_4<=63)) ) {\r\n alt9=1;\r\n }\r\n else if ( (LA9_4==RULE_ID||LA9_4==46) ) {\r\n alt9=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 4, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case RULE_LITERAL_TYPE:\r\n case 43:\r\n case 48:\r\n case 52:\r\n case 54:\r\n case 56:\r\n case 60:\r\n case 61:\r\n case 62:\r\n case 63:\r\n {\r\n alt9=1;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 1, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n }\r\n break;\r\n case 46:\r\n {\r\n int LA9_2 = input.LA(2);\r\n\r\n if ( (LA9_2==RULE_ID) ) {\r\n switch ( input.LA(3) ) {\r\n case EOF:\r\n case RULE_ID:\r\n case RULE_RAW_STRING_LIT:\r\n case RULE_INTERPRETED_STRING_LIT:\r\n case 42:\r\n case 46:\r\n case 47:\r\n case 58:\r\n {\r\n alt9=2;\r\n }\r\n break;\r\n case 45:\r\n {\r\n int LA9_4 = input.LA(4);\r\n\r\n if ( (LA9_4==RULE_LITERAL_TYPE||LA9_4==45||LA9_4==48||LA9_4==52||LA9_4==54||LA9_4==56||(LA9_4>=60 && LA9_4<=63)) ) {\r\n alt9=1;\r\n }\r\n else if ( (LA9_4==RULE_ID||LA9_4==46) ) {\r\n alt9=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 4, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case RULE_LITERAL_TYPE:\r\n case 43:\r\n case 48:\r\n case 52:\r\n case 54:\r\n case 56:\r\n case 60:\r\n case 61:\r\n case 62:\r\n case 63:\r\n {\r\n alt9=1;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 6, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 2, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case 45:\r\n {\r\n alt9=2;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt9) {\r\n case 1 :\r\n // InternalGo.g:3324:2: ( ( rule__FieldDecl__Group_1_0__0 ) )\r\n {\r\n // InternalGo.g:3324:2: ( ( rule__FieldDecl__Group_1_0__0 ) )\r\n // InternalGo.g:3325:3: ( rule__FieldDecl__Group_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFieldDeclAccess().getGroup_1_0()); \r\n }\r\n // InternalGo.g:3326:3: ( rule__FieldDecl__Group_1_0__0 )\r\n // InternalGo.g:3326:4: rule__FieldDecl__Group_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__FieldDecl__Group_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFieldDeclAccess().getGroup_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3330:2: ( ( rule__FieldDecl__EmbeddedAssignment_1_1 ) )\r\n {\r\n // InternalGo.g:3330:2: ( ( rule__FieldDecl__EmbeddedAssignment_1_1 ) )\r\n // InternalGo.g:3331:3: ( rule__FieldDecl__EmbeddedAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFieldDeclAccess().getEmbeddedAssignment_1_1()); \r\n }\r\n // InternalGo.g:3332:3: ( rule__FieldDecl__EmbeddedAssignment_1_1 )\r\n // InternalGo.g:3332:4: rule__FieldDecl__EmbeddedAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__FieldDecl__EmbeddedAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFieldDeclAccess().getEmbeddedAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) )\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n {\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n // InternalCsv.g:119:3: ( rule__Action__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getAlternatives()); \n }\n // InternalCsv.g:120:3: ( rule__Action__Alternatives )\n // InternalCsv.g:120:4: rule__Action__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Action__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "IfExp createIfExp();", "protected AbstractCSVParser(TokenStream input, RecognizerSharedState state) {\n super(input, state);\n }", "@Test\r\n\tpublic void readCsvTest() throws IOException {\r\n\t\t\tfail(\"Not yet implemented\");\r\n\t}", "public static void checkValidHeader(String header)\n throws DataConversionException {\n String[] headerCheck = header.split(\";\", CsvAdaptedPerson.ATTRIBUTE_ORDERING.keySet().size());\n String[] headerValid = CsvAdaptedPerson.headerOrder();\n\n if (headerCheck.length == 1) {\n throw new DataConversionException(\"Wrong delimiter, Refer to user guide to use correct \"\n + \"delimiter.\\nEach row should have \"\n + (CsvAdaptedPerson.ATTRIBUTE_ORDERING.keySet().size() - 1) + \" ';' \");\n }\n\n if (headerCheck.length != headerValid.length) {\n throw new DataConversionException(\"Missing/Extra Headers, Please check file\");\n }\n\n for (int i = 0; i < headerValid.length; i++) {\n String upperHeader = headerCheck[i].toUpperCase(Locale.ROOT);\n String upperValidHeader = headerValid[i].toUpperCase(Locale.ROOT);\n\n if (!(upperHeader.contains(upperValidHeader))) {\n throw new DataConversionException(\"Wrong header detected,\"\n + \"please double check file\\nFirst row of csv must contain valid headers \"\n + Arrays.toString(headerValid) + \" in that order.\");\n }\n }\n }", "@Override\n public boolean containsHeader(String arg0) {\n return false;\n }", "default boolean hasHeader() {\n return true;\n }", "public final void rule__PrintCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3791:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n // InternalCsv.g:3793:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3794:3: ( RULE_ID )\n // InternalCsv.g:3795:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@attribute(value = \"\", required = false, defaultValue = \"default value is false\")\r\n\tpublic void setHeader(Boolean isHeader) {\r\n\t\tthis.header = isHeader;\r\n\t}", "@Test\n public void givenStateCensusAnalyserFile_WhenImproperHeader_ReturnsException() {\n String CSV_FILE_PATH = \"src/test/resources/StateCensusData.csv\";\n try {\n indianCensusAnalyzer.loadStateCensusCSVData(CensusAnalyser.Country.INDIA, CSV_FILE_PATH);\n } catch (CSVBuilderException e) {\n Assert.assertEquals(CSVBuilderException.TypeOfException.INCORRECT_DELIMITER_HEADER_EXCEPTION, e.typeOfException);\n }\n }", "public final void rule__OpOther__Alternatives_4_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2462:1: ( ( ( rule__OpOther__Group_4_1_0__0 ) ) | ( '<' ) )\r\n int alt11=2;\r\n int LA11_0 = input.LA(1);\r\n\r\n if ( (LA11_0==23) ) {\r\n int LA11_1 = input.LA(2);\r\n\r\n if ( (synpred22_InternalFin()) ) {\r\n alt11=1;\r\n }\r\n else if ( (true) ) {\r\n alt11=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 11, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 11, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt11) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2463:1: ( ( rule__OpOther__Group_4_1_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2463:1: ( ( rule__OpOther__Group_4_1_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2464:1: ( rule__OpOther__Group_4_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_4_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2465:1: ( rule__OpOther__Group_4_1_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2465:2: rule__OpOther__Group_4_1_0__0\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Group_4_1_0__0_in_rule__OpOther__Alternatives_4_15240);\r\n rule__OpOther__Group_4_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_4_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2469:6: ( '<' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2469:6: ( '<' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2470:1: '<'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_4_1_1()); \r\n }\r\n match(input,23,FOLLOW_23_in_rule__OpOther__Alternatives_4_15259); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getLessThanSignKeyword_4_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Bool__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2510:1: ( ( 'True' ) | ( 'False' ) )\n int alt17=2;\n int LA17_0 = input.LA(1);\n\n if ( (LA17_0==19) ) {\n alt17=1;\n }\n else if ( (LA17_0==20) ) {\n alt17=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 17, 0, input);\n\n throw nvae;\n }\n switch (alt17) {\n case 1 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2511:1: ( 'True' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2511:1: ( 'True' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2512:1: 'True'\n {\n before(grammarAccess.getBoolAccess().getTrueKeyword_1_0()); \n match(input,19,FOLLOW_19_in_rule__Bool__Alternatives_14945); \n after(grammarAccess.getBoolAccess().getTrueKeyword_1_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2519:6: ( 'False' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2519:6: ( 'False' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2520:1: 'False'\n {\n before(grammarAccess.getBoolAccess().getFalseKeyword_1_1()); \n match(input,20,FOLLOW_20_in_rule__Bool__Alternatives_14965); \n after(grammarAccess.getBoolAccess().getFalseKeyword_1_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tprotected Boolean isHeader(String[] fields) {\n\t\t//check\n return (isValid(fields) && fields[0].equals(\"event\") && fields[1].equals(\"yes\") && fields[2].equals(\"maybe\") && fields[3].equals(\"invited\") && fields[4].equals(\"no\"));\n\t}", "public final void rule__StatementList__Alternatives_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3428:1: ( ( ';' ) | ( ',' ) )\r\n int alt14=2;\r\n int LA14_0 = input.LA(1);\r\n\r\n if ( (LA14_0==42) ) {\r\n alt14=1;\r\n }\r\n else if ( (LA14_0==43) ) {\r\n alt14=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 14, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt14) {\r\n case 1 :\r\n // InternalGo.g:3429:2: ( ';' )\r\n {\r\n // InternalGo.g:3429:2: ( ';' )\r\n // InternalGo.g:3430:3: ';'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementListAccess().getSemicolonKeyword_1_1_0()); \r\n }\r\n match(input,42,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementListAccess().getSemicolonKeyword_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3435:2: ( ',' )\r\n {\r\n // InternalGo.g:3435:2: ( ',' )\r\n // InternalGo.g:3436:3: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementListAccess().getCommaKeyword_1_1_1()); \r\n }\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementListAccess().getCommaKeyword_1_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void synpred6_InternalJavaJRExpression_fragment() throws RecognitionException { \n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:565:3: ( ( () ( ( ruleRelationalOp ) ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:565:4: ( () ( ( ruleRelationalOp ) ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:565:4: ( () ( ( ruleRelationalOp ) ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:565:5: () ( ( ruleRelationalOp ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:565:5: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:566:1: \n {\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:566:2: ( ( ruleRelationalOp ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:567:1: ( ruleRelationalOp )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:567:1: ( ruleRelationalOp )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:568:1: ruleRelationalOp\n {\n pushFollow(FOLLOW_ruleRelationalOp_in_synpred6_InternalJavaJRExpression1299);\n ruleRelationalOp();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n\n }\n\n\n }\n\n\n }\n }", "public interface CsvParser extends Iterator<CsvLine>, Closeable {\n}", "@Override\n public boolean visit(CssIf x, Context ctx) {\n StringBuilder expr = new StringBuilder(\"/* @if \");\n if (x.getExpression() != null) {\n expr.append(x.getExpression()).append(\" \");\n } else {\n expr.append(x.getPropertyName()).append(\" \");\n for (String v : x.getPropertyValues()) {\n expr.append(v).append(\" \");\n }\n }\n expr.append(\"{ */\");\n out.printOpt(expr.toString());\n out.newlineOpt();\n out.indentIn();\n addSubstitition(x);\n return false;\n }", "public void toString(java.lang.StringBuilder r7) {\n /*\n r6 = this;\n byte r0 = r6.filterType\n r1 = -121(0xffffffffffffff87, float:NaN)\n r2 = 40\n if (r0 == r1) goto L_0x00cc\n r1 = 61\n r3 = 0\n r4 = 41\n switch(r0) {\n case -96: goto L_0x00ba;\n case -95: goto L_0x00a8;\n case -94: goto L_0x009a;\n case -93: goto L_0x0089;\n case -92: goto L_0x005d;\n case -91: goto L_0x004f;\n case -90: goto L_0x0044;\n default: goto L_0x0010;\n }\n L_0x0010:\n switch(r0) {\n case -88: goto L_0x0039;\n case -87: goto L_0x0015;\n default: goto L_0x0013;\n }\n L_0x0013:\n goto L_0x00d9\n L_0x0015:\n r7.append(r2)\n java.lang.String r0 = r6.attrName\n if (r0 == 0) goto L_0x001f\n r7.append(r0)\n L_0x001f:\n boolean r0 = r6.dnAttributes\n if (r0 == 0) goto L_0x0028\n java.lang.String r0 = \":dn\"\n r7.append(r0)\n L_0x0028:\n java.lang.String r0 = r6.matchingRuleID\n if (r0 == 0) goto L_0x0036\n r0 = 58\n r7.append(r0)\n java.lang.String r0 = r6.matchingRuleID\n r7.append(r0)\n L_0x0036:\n java.lang.String r0 = \":=\"\n goto L_0x0059\n L_0x0039:\n r7.append(r2)\n java.lang.String r0 = r6.attrName\n r7.append(r0)\n java.lang.String r0 = \"~=\"\n goto L_0x0059\n L_0x0044:\n r7.append(r2)\n java.lang.String r0 = r6.attrName\n r7.append(r0)\n java.lang.String r0 = \"<=\"\n goto L_0x0059\n L_0x004f:\n r7.append(r2)\n java.lang.String r0 = r6.attrName\n r7.append(r0)\n java.lang.String r0 = \">=\"\n L_0x0059:\n r7.append(r0)\n goto L_0x0094\n L_0x005d:\n r7.append(r2)\n java.lang.String r0 = r6.attrName\n r7.append(r0)\n r7.append(r1)\n com.unboundid.asn1.ASN1OctetString r0 = r6.subInitial\n if (r0 == 0) goto L_0x006f\n encodeValue(r0, r7)\n L_0x006f:\n r0 = 42\n r7.append(r0)\n com.unboundid.asn1.ASN1OctetString[] r1 = r6.subAny\n int r2 = r1.length\n L_0x0077:\n if (r3 >= r2) goto L_0x0084\n r5 = r1[r3]\n encodeValue(r5, r7)\n r7.append(r0)\n int r3 = r3 + 1\n goto L_0x0077\n L_0x0084:\n com.unboundid.asn1.ASN1OctetString r0 = r6.subFinal\n if (r0 == 0) goto L_0x00a4\n goto L_0x0096\n L_0x0089:\n r7.append(r2)\n java.lang.String r0 = r6.attrName\n r7.append(r0)\n r7.append(r1)\n L_0x0094:\n com.unboundid.asn1.ASN1OctetString r0 = r6.assertionValue\n L_0x0096:\n encodeValue(r0, r7)\n goto L_0x00a4\n L_0x009a:\n java.lang.String r0 = \"(!\"\n r7.append(r0)\n com.unboundid.ldap.sdk.Filter r0 = r6.notComp\n r0.toString(r7)\n L_0x00a4:\n r7.append(r4)\n goto L_0x00d9\n L_0x00a8:\n java.lang.String r0 = \"(|\"\n r7.append(r0)\n com.unboundid.ldap.sdk.Filter[] r0 = r6.filterComps\n int r1 = r0.length\n L_0x00b0:\n if (r3 >= r1) goto L_0x00a4\n r2 = r0[r3]\n r2.toString(r7)\n int r3 = r3 + 1\n goto L_0x00b0\n L_0x00ba:\n java.lang.String r0 = \"(&\"\n r7.append(r0)\n com.unboundid.ldap.sdk.Filter[] r0 = r6.filterComps\n int r1 = r0.length\n L_0x00c2:\n if (r3 >= r1) goto L_0x00a4\n r2 = r0[r3]\n r2.toString(r7)\n int r3 = r3 + 1\n goto L_0x00c2\n L_0x00cc:\n r7.append(r2)\n java.lang.String r0 = r6.attrName\n r7.append(r0)\n java.lang.String r0 = \"=*)\"\n r7.append(r0)\n L_0x00d9:\n return\n */\n throw new UnsupportedOperationException(\"Method not decompiled: com.unboundid.ldap.sdk.Filter.toString(java.lang.StringBuilder):void\");\n }", "IfStmtRule createIfStmtRule();", "public final void rule__XBooleanLiteral__Alternatives_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2976:1: ( ( 'false' ) | ( ( rule__XBooleanLiteral__IsTrueAssignment_1_1 ) ) )\r\n int alt28=2;\r\n int LA28_0 = input.LA(1);\r\n\r\n if ( (LA28_0==40) ) {\r\n alt28=1;\r\n }\r\n else if ( (LA28_0==132) ) {\r\n alt28=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 28, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt28) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2977:1: ( 'false' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2977:1: ( 'false' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2978:1: 'false'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXBooleanLiteralAccess().getFalseKeyword_1_0()); \r\n }\r\n match(input,40,FOLLOW_40_in_rule__XBooleanLiteral__Alternatives_16455); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXBooleanLiteralAccess().getFalseKeyword_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2985:6: ( ( rule__XBooleanLiteral__IsTrueAssignment_1_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2985:6: ( ( rule__XBooleanLiteral__IsTrueAssignment_1_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2986:1: ( rule__XBooleanLiteral__IsTrueAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXBooleanLiteralAccess().getIsTrueAssignment_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2987:1: ( rule__XBooleanLiteral__IsTrueAssignment_1_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2987:2: rule__XBooleanLiteral__IsTrueAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_rule__XBooleanLiteral__IsTrueAssignment_1_1_in_rule__XBooleanLiteral__Alternatives_16474);\r\n rule__XBooleanLiteral__IsTrueAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXBooleanLiteralAccess().getIsTrueAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private Term parseLogicalOr(final boolean required) throws ParseException {\n Term t1 = parseLogicalAnd(required);\n while (t1 != null) {\n /*int tt =*/ _tokenizer.next();\n if (isSpecial(\"||\") || isKeyword(\"or\")) {\n Term t2 = parseLogicalAnd(true);\n if ((t1.isB() && t2.isB()) || !isTypeChecking()) {\n t1 = new Term.OrB(t1, t2);\n } else {\n reportTypeErrorB2(\"'||' or 'or'\");\n }\n } else {\n _tokenizer.pushBack();\n break;\n }\n }\n return t1;\n }", "private boolean isCommaStatement() {\n return line.contains(\",\") && !line.contains(\"(\");\n }", "public Alternatives getAlternatives_4() { return cAlternatives_4; }", "public interface InputParserConstants {\n\n /** End of File. */\n int EOF = 0;\n /** RegularExpression Id. */\n int TRUE = 5;\n /** RegularExpression Id. */\n int FALSE = 6;\n /** RegularExpression Id. */\n int NOT = 7;\n /** RegularExpression Id. */\n int INTEGER = 8;\n /** RegularExpression Id. */\n int STRING = 9;\n /** RegularExpression Id. */\n int CHARACTER = 10;\n /** RegularExpression Id. */\n int BOOLEAN = 11;\n /** RegularExpression Id. */\n int ASTERIX = 12;\n /** RegularExpression Id. */\n int COLON = 13;\n /** RegularExpression Id. */\n int ADT = 14;\n /** RegularExpression Id. */\n int SIGNATURES = 15;\n /** RegularExpression Id. */\n int EQUATIONS = 16;\n /** RegularExpression Id. */\n int PLUS = 17;\n /** RegularExpression Id. */\n int MINUS = 18;\n /** RegularExpression Id. */\n int ARROW = 19;\n /** RegularExpression Id. */\n int LESS_THAN = 20;\n /** RegularExpression Id. */\n int EQUALS = 21;\n /** RegularExpression Id. */\n int GREATER_THAN = 22;\n /** RegularExpression Id. */\n int HEX_ESCAPE = 23;\n /** RegularExpression Id. */\n int LEFT_PAREN = 24;\n /** RegularExpression Id. */\n int RIGHT_PAREN = 25;\n /** RegularExpression Id. */\n int UINT10 = 26;\n /** RegularExpression Id. */\n int ND = 27;\n /** RegularExpression Id. */\n int MC = 28;\n /** RegularExpression Id. */\n int ME = 29;\n /** RegularExpression Id. */\n int LU = 30;\n /** RegularExpression Id. */\n int LL = 31;\n /** RegularExpression Id. */\n int LT = 32;\n /** RegularExpression Id. */\n int LM = 33;\n /** RegularExpression Id. */\n int LO = 34;\n /** RegularExpression Id. */\n int MN = 35;\n /** RegularExpression Id. */\n int NL = 36;\n /** RegularExpression Id. */\n int NO = 37;\n /** RegularExpression Id. */\n int PD = 38;\n /** RegularExpression Id. */\n int PC = 39;\n /** RegularExpression Id. */\n int PO = 40;\n /** RegularExpression Id. */\n int SC = 41;\n /** RegularExpression Id. */\n int SM = 42;\n /** RegularExpression Id. */\n int SK = 43;\n /** RegularExpression Id. */\n int SO = 44;\n /** RegularExpression Id. */\n int CO = 45;\n /** RegularExpression Id. */\n int ID = 46;\n /** RegularExpression Id. */\n int PECULIAR_ID = 47;\n /** RegularExpression Id. */\n int INITIAL = 48;\n /** RegularExpression Id. */\n int SPECIAL_INITIAL = 49;\n /** RegularExpression Id. */\n int CONSTITUENT = 50;\n /** RegularExpression Id. */\n int SUBSEQUENT = 51;\n /** RegularExpression Id. */\n int SPECIAL_SUBSEQUENT = 52;\n /** RegularExpression Id. */\n int INLINE_HEX_ESCAPE = 53;\n\n /** Lexical state. */\n int DEFAULT = 0;\n\n /** Literal token values. */\n String[] tokenImage = {\n \"<EOF>\",\n \"\\\" \\\"\",\n \"\\\"\\\\t\\\"\",\n \"\\\"\\\\n\\\"\",\n \"\\\"\\\\r\\\"\",\n \"\\\"#t\\\"\",\n \"\\\"#f\\\"\",\n \"\\\"not\\\"\",\n \"\\\"int\\\"\",\n \"\\\"string\\\"\",\n \"\\\"character\\\"\",\n \"\\\"boolean\\\"\",\n \"\\\"*\\\"\",\n \"\\\":\\\"\",\n \"\\\"ADT:\\\"\",\n \"\\\"Signatures:\\\"\",\n \"\\\"Equations:\\\"\",\n \"\\\"+\\\"\",\n \"\\\"-\\\"\",\n \"\\\"->\\\"\",\n \"\\\"<\\\"\",\n \"\\\"=\\\"\",\n \"\\\">\\\"\",\n \"\\\"\\\\\\\\x\\\"\",\n \"\\\"(\\\"\",\n \"\\\")\\\"\",\n \"<UINT10>\",\n \"<ND>\",\n \"<MC>\",\n \"<ME>\",\n \"<LU>\",\n \"<LL>\",\n \"<LT>\",\n \"<LM>\",\n \"<LO>\",\n \"<MN>\",\n \"<NL>\",\n \"<NO>\",\n \"<PD>\",\n \"<PC>\",\n \"<PO>\",\n \"<SC>\",\n \"<SM>\",\n \"<SK>\",\n \"<SO>\",\n \"<CO>\",\n \"<ID>\",\n \"<PECULIAR_ID>\",\n \"<INITIAL>\",\n \"<SPECIAL_INITIAL>\",\n \"<CONSTITUENT>\",\n \"<SUBSEQUENT>\",\n \"<SPECIAL_SUBSEQUENT>\",\n \"<INLINE_HEX_ESCAPE>\",\n };\n\n}", "private SingleRuleBuilder or(boolean negate, String predicate, String... variables) {\n literals.add( new MLNText.Literal(!negate, predicate, variables[0], variables[1]));\n return this;\n }", "public final void rule__JvmLowerBoundAnded__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3178:1: ( ( '&' ) )\n // InternalCsv.g:3179:1: ( '&' )\n {\n // InternalCsv.g:3179:1: ( '&' )\n // InternalCsv.g:3180:2: '&'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n match(input,36,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getAmpersandKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.75210387", "0.63126796", "0.62894976", "0.5705478", "0.546263", "0.5334455", "0.51890594", "0.5099573", "0.5027705", "0.490601", "0.47705543", "0.46915087", "0.45293474", "0.45283958", "0.4468021", "0.44588512", "0.44352746", "0.44029188", "0.44004315", "0.4398649", "0.4397266", "0.43856964", "0.43726736", "0.4324481", "0.43069163", "0.42956868", "0.42951435", "0.42854548", "0.4285299", "0.42804378", "0.42788333", "0.42359003", "0.42336777", "0.419444", "0.41820177", "0.41714475", "0.4167469", "0.41605514", "0.4122449", "0.41206607", "0.41173095", "0.41056198", "0.40704522", "0.4070019", "0.4069701", "0.4042233", "0.40371263", "0.40237397", "0.40095738", "0.40058947", "0.39962375", "0.39932263", "0.39901984", "0.39827177", "0.39807317", "0.3973639", "0.39626908", "0.3959586", "0.395462", "0.3946752", "0.3944643", "0.39436302", "0.3934004", "0.3933089", "0.39171845", "0.39122304", "0.3901877", "0.38992947", "0.3897696", "0.38948965", "0.3893289", "0.38738286", "0.3872375", "0.38699543", "0.3867564", "0.38615742", "0.38567466", "0.38433242", "0.38365492", "0.383638", "0.38358822", "0.38282672", "0.38247886", "0.3824148", "0.38236526", "0.3820614", "0.38176912", "0.3813177", "0.38097972", "0.38088828", "0.3804347", "0.38027155", "0.38025725", "0.37971443", "0.37967387", "0.37875104", "0.3784838", "0.3784729", "0.3783738", "0.37799692" ]
0.83178025
0
$ANTLR end "rule__OpenCSV__Alternatives_7" $ANTLR start "rule__RefOpenAction__Alternatives" InternalCsv.g:723:1: rule__RefOpenAction__Alternatives : ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) );
public final void rule__RefOpenAction__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:727:1: ( ( rulePrintCSV ) | ( ruleNbRow ) | ( ruleNbCol ) | ( ruleSaveCSV ) ) int alt5=4; switch ( input.LA(1) ) { case 23: { alt5=1; } break; case 24: { alt5=2; } break; case 25: { alt5=3; } break; case 26: { alt5=4; } break; default: if (state.backtracking>0) {state.failed=true; return ;} NoViableAltException nvae = new NoViableAltException("", 5, 0, input); throw nvae; } switch (alt5) { case 1 : // InternalCsv.g:728:2: ( rulePrintCSV ) { // InternalCsv.g:728:2: ( rulePrintCSV ) // InternalCsv.g:729:3: rulePrintCSV { if ( state.backtracking==0 ) { before(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); } pushFollow(FOLLOW_2); rulePrintCSV(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getRefOpenActionAccess().getPrintCSVParserRuleCall_0()); } } } break; case 2 : // InternalCsv.g:734:2: ( ruleNbRow ) { // InternalCsv.g:734:2: ( ruleNbRow ) // InternalCsv.g:735:3: ruleNbRow { if ( state.backtracking==0 ) { before(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); } pushFollow(FOLLOW_2); ruleNbRow(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getRefOpenActionAccess().getNbRowParserRuleCall_1()); } } } break; case 3 : // InternalCsv.g:740:2: ( ruleNbCol ) { // InternalCsv.g:740:2: ( ruleNbCol ) // InternalCsv.g:741:3: ruleNbCol { if ( state.backtracking==0 ) { before(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); } pushFollow(FOLLOW_2); ruleNbCol(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getRefOpenActionAccess().getNbColParserRuleCall_2()); } } } break; case 4 : // InternalCsv.g:746:2: ( ruleSaveCSV ) { // InternalCsv.g:746:2: ( ruleSaveCSV ) // InternalCsv.g:747:3: ruleSaveCSV { if ( state.backtracking==0 ) { before(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); } pushFollow(FOLLOW_2); ruleSaveCSV(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getRefOpenActionAccess().getSaveCSVParserRuleCall_3()); } } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleRefOpenAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) )\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n {\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives )\n // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__RefOpenAction__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleRefOpenAction() throws RecognitionException {\n try {\n // InternalCsv.g:155:1: ( ruleRefOpenAction EOF )\n // InternalCsv.g:156:1: ruleRefOpenAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleOpenCSV() throws RecognitionException {\n try {\n // InternalCsv.g:130:1: ( ruleOpenCSV EOF )\n // InternalCsv.g:131:1: ruleOpenCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__OpenCSV__Alternatives_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==40) ) {\n alt4=1;\n }\n else if ( (LA4_0==12) ) {\n alt4=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n {\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__HeaderAssignment_7_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:713:2: ( 'false' )\n {\n // InternalCsv.g:713:2: ( 'false' )\n // InternalCsv.g:714:3: 'false'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n match(input,12,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__CharsetAssignment_4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3757:1: ( ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) ) )\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n {\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n // InternalCsv.g:3759:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n // InternalCsv.g:3760:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n // InternalCsv.g:3760:4: rule__OpenCSV__CharsetAlternatives_4_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAlternatives_4_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) )\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n {\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n // InternalCsv.g:119:3: ( rule__Action__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getAlternatives()); \n }\n // InternalCsv.g:120:3: ( rule__Action__Alternatives )\n // InternalCsv.g:120:4: rule__Action__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Action__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3791:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3792:2: ( ( RULE_ID ) )\n // InternalCsv.g:3793:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3794:3: ( RULE_ID )\n // InternalCsv.g:3795:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3848:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3849:2: ( ( RULE_ID ) )\n // InternalCsv.g:3850:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3851:3: ( RULE_ID )\n // InternalCsv.g:3852:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3810:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3811:2: ( ( RULE_ID ) )\n // InternalCsv.g:3812:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3813:3: ( RULE_ID )\n // InternalCsv.g:3814:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void ach_doc_type_csv_test () {\n\t\t\n\t}", "public final void rule__OpenCSV__HeaderAssignment_7_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3772:1: ( ( ( 'true' ) ) )\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n {\n // InternalCsv.g:3773:2: ( ( 'true' ) )\n // InternalCsv.g:3774:3: ( 'true' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n // InternalCsv.g:3775:3: ( 'true' )\n // InternalCsv.g:3776:4: 'true'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n match(input,40,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderTrueKeyword_7_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__FileAssignment_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3742:1: ( ( RULE_STRING ) )\n // InternalCsv.g:3743:2: ( RULE_STRING )\n {\n // InternalCsv.g:3743:2: ( RULE_STRING )\n // InternalCsv.g:3744:3: RULE_STRING\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n match(input,RULE_STRING,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileSTRINGTerminalRuleCall_3_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void test000(String[] args) throws IOException\n {\n\n\n //System.out.println(sql_insert_shipto_template);\n\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SALES_ORGANIZATION_CODE%\", \"261\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%DC_SHORTNAME%\", \"PF\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%SHIPTO_CODE%\", \"10156409\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%PRODUCT_CODE%\", \"10104574\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%STARTDATE%\", \"01.02.2014\");\n// sql_insert_shipto_template = sql_insert_shipto_template.replaceAll(\"%FINISHDATE%\", \"31.12.9999\");\n\n\n // String test = \"1\\t2\\t3\\n4\\t5\\t6\";\n\n String test = \"SO;SHIPTO;SHIPTO;DCSHORT;REP;GRD;Name;start date;end date\\n\" +\n \"261;10156405PF;10156405;PF;249394;10104570;A.KORKUNOV DARK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"261;10156405CH;10156405;CH;249410;10104542;A.KORKUNOV MILK 5*10*100G;07.10.2014;31.12.9999\\n\" +\n \"377;10156409PF;10156409;PF;249399;10104574;A.KORKUNOV DARK ALMOND 5*10*100G;07.10.2014;31.12.9999\\n\";\n\n\n //CSVParser parser = CSVParser.parse(test, CSVFormat.newFormat(';'));\n File file = new File(\"c:\\\\MATDET_SHIPTO_EXAMPLE.csv\");\n CSVParser parser = CSVParser.parse(file, java.nio.charset.Charset.defaultCharset(), CSVFormat.newFormat(';'));\n\n int rownum = 0;\n for (CSVRecord strings : parser)\n {\n\n if (rownum++ == 0)\n continue;\n String SO = strings.get(0);\n String SHIPTO = strings.get(2);\n String DCSHORT = strings.get(3);\n //String REP = strings.get(4);\n String PRODUCT = strings.get(5);\n String START = strings.get(7);\n String END = strings.get(8);\n\n String temp = SQL_INSERT_TMATDET_SHIPTO_TEMPLATE;\n temp = temp.replaceAll(\"%SALES_ORGANIZATION_CODE%\", SO);\n temp = temp.replaceAll(\"%DC_SHORTNAME%\", DCSHORT);\n temp = temp.replaceAll(\"%SHIPTO_CODE%\", SHIPTO);\n temp = temp.replaceAll(\"%PRODUCT_CODE%\", PRODUCT);\n temp = temp.replaceAll(\"%STARTDATE%\", START);\n temp = temp.replaceAll(\"%FINISHDATE%\", END);\n\n\n System.out.println(temp);\n }\n\n System.out.println(\"rows=\" + rownum);\n\n\n// CsvParser parser = new CsvParserImpl();\n// CSV\n// parser.\n// List parsed = parser.parse(\"1\\t2\\t3\\n4\\t5\\t6\");\n// System.out.println(parsed.get(0));\n\n //System.out.println(sql_insert_shipto_template);\n\n }", "public interface DboCsvTransformer<DBO extends DatabaseObject<?>> extends DboFileTransformer<DBO> {\n\n String COMMA_IN_QUOTES_REGEX = \",(?=(?:[^\\\\\\\"]*\\\\\\\"[^\\\\\\\"]*\\\\\\\")*[^\\\\\\\"]*$)\";\n\n /**\n * This method consumes a single line of CSV to produce a DatabaseObject.\n *\n * @param csv the single line of CSV representing a single DatabaseObject\n * @return the DatabaseObject represented\n * @throws TransformerException if the object cannot be produced\n */\n @Override\n DBO consume(String csv) throws TransformerException;\n\n /**\n * This method consumes a DatabaseObject to produce a String in CSV format.\n *\n * @param object the DatabaseObject\n * @return a String in CSV format\n * @throws TransformerException if the object cannot be consumed\n */\n @Override\n String produce(DBO object) throws TransformerException;\n\n}", "@Test\n public void detailCompareDefaultDelimiterWithCompareOption(){\n LOGGER.info(\"------------- Start running detailCompareDefaultDelimiterWithCompareOption -------------\");\n srcCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/output.csv\";\n desCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/target.csv\";\n boolean result = CsvUtil.compareCsv(srcCsv, desCsv, null,null, CsvUtil.CompareOptions.TRUE_FALSE_IS_1_0, CsvUtil.CompareOptions.SKIP_NUMBER_TYPE);\n assertTrue(result);\n }", "public final void entryRulePrintCSV() throws RecognitionException {\n try {\n // InternalCsv.g:180:1: ( rulePrintCSV EOF )\n // InternalCsv.g:181:1: rulePrintCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVRule()); \n }\n pushFollow(FOLLOW_1);\n rulePrintCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__OpenAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3829:1: ( ( ( RULE_ID ) ) )\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n {\n // InternalCsv.g:3830:2: ( ( RULE_ID ) )\n // InternalCsv.g:3831:3: ( RULE_ID )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n // InternalCsv.g:3832:3: ( RULE_ID )\n // InternalCsv.g:3833:4: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVIDTerminalRuleCall_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenOpenCSVCrossReference_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpOther() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:698:2: ( ( ( rule__OpOther__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:699:1: ( ( rule__OpOther__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:699:1: ( ( rule__OpOther__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:700:1: ( rule__OpOther__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:701:1: ( rule__OpOther__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:701:2: rule__OpOther__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Alternatives_in_ruleOpOther1427);\r\n rule__OpOther__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1503:1: ( ( ( rule__PrintCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1505:2: ( rule__PrintCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1506:2: ( rule__PrintCSV__OpenAssignment_2 )\n // InternalCsv.g:1506:3: rule__PrintCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__CharsetAlternatives_4_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:685:1: ( ( 'latin1' ) | ( 'utf8' ) )\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==10) ) {\n alt3=1;\n }\n else if ( (LA3_0==11) ) {\n alt3=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 3, 0, input);\n\n throw nvae;\n }\n switch (alt3) {\n case 1 :\n // InternalCsv.g:686:2: ( 'latin1' )\n {\n // InternalCsv.g:686:2: ( 'latin1' )\n // InternalCsv.g:687:3: 'latin1'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetLatin1Keyword_4_0_0()); \n }\n match(input,10,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetLatin1Keyword_4_0_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:692:2: ( 'utf8' )\n {\n // InternalCsv.g:692:2: ( 'utf8' )\n // InternalCsv.g:693:3: 'utf8'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetUtf8Keyword_4_0_1()); \n }\n match(input,11,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetUtf8Keyword_4_0_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void main(String[] args) throws IOException {\n\t\t\n\t\tFileManager csv=new FileManager();\n\t\t\n\t\tcsv.readListOfFiles();\n\t\tcsv.readFile();\n\t\t\n\t\t//csv.tk.displayTokens();\n\t\t//csv.it.displayHashMap();\n\t\tcsv.writeTokensToFile(csv.tk.tokensMap);\n\t\tcsv.matcher.longestSequence(csv.it);\t//csv.it.intTokenList was supposed to be passed but since I need csv.it object in caller so im passing it\n\t\tcsv.matcher.displaySubsequences(csv.it);\n\t\tcsv.writeMatchesToFile(csv.matcher.resultMap,csv.it);\n\t System.out.println(\"\\nProgram Ends \");\n\t \t \n\t}", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public static void main(String[] args) throws IOException {\n\t\tint id_telefone = 4;\n\t\t\n\t\tFileInputStream fis = new FileInputStream(SAMPLE_CSV_FILE_PATH);\n\t\tInputStreamReader isr = new InputStreamReader(fis, \"UTF-8\");\n\t\t\n\t\t@SuppressWarnings(\"deprecation\")\n\t\tCSVReader reader = new CSVReader(isr, ';' , '\"' , 0);\n \tString[] nextLine;\n \t\n// \tWriter writer = Files.newBufferedWriter(Paths.get(\"saida.csv\"));\n// \tCSVWriter csvWriter = new CSVWriter(writer,\n// CSVWriter.DEFAULT_SEPARATOR,\n// CSVWriter.NO_QUOTE_CHARACTER,\n// CSVWriter.DEFAULT_ESCAPE_CHARACTER,\n// CSVWriter.DEFAULT_LINE_END);\n \t\n \tFile file = new File(\"Clientes.sql\");\n \n BufferedWriter fr = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file),\"UTF-8\"));\n \t\n \twhile ((nextLine = reader.readNext()) != null) {\n \t\t\n if (nextLine != null) {\n \t\n// \tSystem.out.println(nextLine.length);\n \t\n \tString id = nextLine[0];\n \tif(!id.isEmpty()) {\n \t\n \t\tid = id.substring(5);\n \t\tid = id.replace(\".\", \"\");\n \t\t\n \t\tboolean temCEP = false;\n \t\t\n \t\tif(nextLine.length > 12) temCEP = true;\n \t\t\n \t\tString CEP = \"\";\n \t\tif(temCEP) {\n \t\t CEP = nextLine[12];\n CEP = CEP.replace(\".\", \"\");\n CEP = CEP.replaceAll(\"-\",\"\");\n CEP = CEP.replaceAll(\" \",\"\");\n \t\t};\n \n \t\n \n \tfr.write(\"INSERT INTO hmprojetos.cliente values (\" \n + id \n + \",'\" + nextLine[1]\n \t\t+ \"','\" + nextLine[2]\n \t\t\t\t+ \"','\" + nextLine[3]\n \t\t\t\t\t\t+ \"','\" + nextLine[4]\n \t\t\t\t\t\t\t\t+ \"','\" + nextLine[5]\n \t\t\t\t\t\t\t\t\t\t+ \"','\" + CEP\n \t\t\t\t\t\t\t\t\t\t\t\t+ \"','\" + nextLine[10]\n \t\t\t\t\t\t\t\t\t\t\t\t\t\t+ \"','\" + nextLine[11]\n \t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t+ \"','\" + nextLine[6]\n + \"');\\n\");\n \t\n \t//Criação dos INSERTS dos telefones\n \tif(!nextLine[7].isEmpty()) {\n \tfr.write(\"INSERT INTO hmprojetos.telefone values (\"\n \t\t\t+ id_telefone\n \t\t\t+ \",'','\" + nextLine[7]\n \t\t\t+ \"',\"\n \t\t\t+ id \n \t\t\t+ \");\\n\"\n \t\t\t);\n \t\tid_telefone++;\n \t}\n \tif(!nextLine[8].isEmpty()) {\n \tfr.write(\"INSERT INTO hmprojetos.telefone values (\"\n \t\t\t+ id_telefone\n \t\t\t+ \",'','\" + nextLine[8]\n \t\t\t+ \"',\"\n \t\t\t+ id \n \t\t\t+ \");\\n\"\n \t\t\t);\n \t\tid_telefone++;\n \t}\n \tif(!nextLine[9].isEmpty()) {\n \tfr.write(\"INSERT INTO hmprojetos.telefone values (\"\n \t\t\t+ id_telefone\n \t\t\t+ \",'','\" + nextLine[9]\n \t\t\t+ \"',\"\n \t\t\t+ id \n \t\t\t+ \");\\n\"\n \t\t\t);\n \t\tid_telefone++;\n \t}\n \t\n \t}\n }\n \t}\n \t\n \tfr.close();\n \tSystem.out.println(\"Done\");\n\t}", "public final void rule__Lines__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:956:1: ( ( ruleDeclaration ) | ( ruleAffectation ) | ( ruleFunctionCall ) | ( ruleCheckContainsLink ) | ( ruleCheckContainsText ) | ( ruleFindProperty ) | ( ruleFindFirstProperty ) | ( ruleFindSecondProperty ) | ( ruleGetTitle ) )\n int alt3=9;\n alt3 = dfa3.predict(input);\n switch (alt3) {\n case 1 :\n // InternalBrowser.g:957:2: ( ruleDeclaration )\n {\n // InternalBrowser.g:957:2: ( ruleDeclaration )\n // InternalBrowser.g:958:3: ruleDeclaration\n {\n before(grammarAccess.getLinesAccess().getDeclarationParserRuleCall_0()); \n pushFollow(FOLLOW_2);\n ruleDeclaration();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getDeclarationParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // InternalBrowser.g:963:2: ( ruleAffectation )\n {\n // InternalBrowser.g:963:2: ( ruleAffectation )\n // InternalBrowser.g:964:3: ruleAffectation\n {\n before(grammarAccess.getLinesAccess().getAffectationParserRuleCall_1()); \n pushFollow(FOLLOW_2);\n ruleAffectation();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getAffectationParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // InternalBrowser.g:969:2: ( ruleFunctionCall )\n {\n // InternalBrowser.g:969:2: ( ruleFunctionCall )\n // InternalBrowser.g:970:3: ruleFunctionCall\n {\n before(grammarAccess.getLinesAccess().getFunctionCallParserRuleCall_2()); \n pushFollow(FOLLOW_2);\n ruleFunctionCall();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFunctionCallParserRuleCall_2()); \n\n }\n\n\n }\n break;\n case 4 :\n // InternalBrowser.g:975:2: ( ruleCheckContainsLink )\n {\n // InternalBrowser.g:975:2: ( ruleCheckContainsLink )\n // InternalBrowser.g:976:3: ruleCheckContainsLink\n {\n before(grammarAccess.getLinesAccess().getCheckContainsLinkParserRuleCall_3()); \n pushFollow(FOLLOW_2);\n ruleCheckContainsLink();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getCheckContainsLinkParserRuleCall_3()); \n\n }\n\n\n }\n break;\n case 5 :\n // InternalBrowser.g:981:2: ( ruleCheckContainsText )\n {\n // InternalBrowser.g:981:2: ( ruleCheckContainsText )\n // InternalBrowser.g:982:3: ruleCheckContainsText\n {\n before(grammarAccess.getLinesAccess().getCheckContainsTextParserRuleCall_4()); \n pushFollow(FOLLOW_2);\n ruleCheckContainsText();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getCheckContainsTextParserRuleCall_4()); \n\n }\n\n\n }\n break;\n case 6 :\n // InternalBrowser.g:987:2: ( ruleFindProperty )\n {\n // InternalBrowser.g:987:2: ( ruleFindProperty )\n // InternalBrowser.g:988:3: ruleFindProperty\n {\n before(grammarAccess.getLinesAccess().getFindPropertyParserRuleCall_5()); \n pushFollow(FOLLOW_2);\n ruleFindProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindPropertyParserRuleCall_5()); \n\n }\n\n\n }\n break;\n case 7 :\n // InternalBrowser.g:993:2: ( ruleFindFirstProperty )\n {\n // InternalBrowser.g:993:2: ( ruleFindFirstProperty )\n // InternalBrowser.g:994:3: ruleFindFirstProperty\n {\n before(grammarAccess.getLinesAccess().getFindFirstPropertyParserRuleCall_6()); \n pushFollow(FOLLOW_2);\n ruleFindFirstProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindFirstPropertyParserRuleCall_6()); \n\n }\n\n\n }\n break;\n case 8 :\n // InternalBrowser.g:999:2: ( ruleFindSecondProperty )\n {\n // InternalBrowser.g:999:2: ( ruleFindSecondProperty )\n // InternalBrowser.g:1000:3: ruleFindSecondProperty\n {\n before(grammarAccess.getLinesAccess().getFindSecondPropertyParserRuleCall_7()); \n pushFollow(FOLLOW_2);\n ruleFindSecondProperty();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getFindSecondPropertyParserRuleCall_7()); \n\n }\n\n\n }\n break;\n case 9 :\n // InternalBrowser.g:1005:2: ( ruleGetTitle )\n {\n // InternalBrowser.g:1005:2: ( ruleGetTitle )\n // InternalBrowser.g:1006:3: ruleGetTitle\n {\n before(grammarAccess.getLinesAccess().getGetTitleParserRuleCall_8()); \n pushFollow(FOLLOW_2);\n ruleGetTitle();\n\n state._fsp--;\n\n after(grammarAccess.getLinesAccess().getGetTitleParserRuleCall_8()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpOther() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:792:2: ( ( ( rule__OpOther__Alternatives ) ) )\r\n // InternalDroneScript.g:793:2: ( ( rule__OpOther__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:793:2: ( ( rule__OpOther__Alternatives ) )\r\n // InternalDroneScript.g:794:3: ( rule__OpOther__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:795:3: ( rule__OpOther__Alternatives )\r\n // InternalDroneScript.g:795:4: rule__OpOther__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void csv() throws IOException {\n\t\t\n\t\tSystem.out.println(); //spacing\\\n\t\tFileWriter f;\n\t\t\n\t\tif (bundle.getString(\"csvName\").endsWith(\".csv\")) {\n\t\t\tf = new FileWriter(bundle.getString(\"csvName\"));\n\t\t}\n\t\t\n\t\telse {\n\t\t\tf = new FileWriter(bundle.getString(\"csvName\") + \".csv\");\n\t\t}\n\t\t\n\t\tPrintWriter p = new PrintWriter(f);\n\t\tObject[][] input = {revisionsToo, flowOfTime};\n\t\tCSVWork(input, p, f);\n\t\t\n\t\tObject[][] nextInput = {revisions, ratings};\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[1] = irrelevants;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[1] = relevants;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tnextInput[0] = intervals;\n\t\tnextInput[1] = commits;\n\t\tCSVWork(nextInput, p, f);\n\t\t\n\t\tspecialCSV(existsHere, p);\n\t\t\n\t\tp.flush();\n\t\tp.close();\n\t\tf.close();\n\t}", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpOther() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:615:2: ( ( ( rule__OpOther__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:616:1: ( ( rule__OpOther__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:616:1: ( ( rule__OpOther__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:617:1: ( rule__OpOther__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:618:1: ( rule__OpOther__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:618:2: rule__OpOther__Alternatives\n {\n pushFollow(FOLLOW_rule__OpOther__Alternatives_in_ruleOpOther1247);\n rule__OpOther__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n\tpublic void parseCSV(String csv) {\n\t\t\n\t}", "public final void entryRuleAction() throws RecognitionException {\n try {\n // InternalCsv.g:105:1: ( ruleAction EOF )\n // InternalCsv.g:106:1: ruleAction EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionRule()); \n }\n pushFollow(FOLLOW_1);\n ruleAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleOpCompare() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:642:2: ( ( ( rule__OpCompare__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:643:1: ( ( rule__OpCompare__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:643:1: ( ( rule__OpCompare__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:644:1: ( rule__OpCompare__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:645:1: ( rule__OpCompare__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:645:2: rule__OpCompare__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpCompare__Alternatives_in_ruleOpCompare1307);\r\n rule__OpCompare__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpCompare() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:742:2: ( ( ( rule__OpCompare__Alternatives ) ) )\r\n // InternalDroneScript.g:743:2: ( ( rule__OpCompare__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:743:2: ( ( rule__OpCompare__Alternatives ) )\r\n // InternalDroneScript.g:744:3: ( rule__OpCompare__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:745:3: ( rule__OpCompare__Alternatives )\r\n // InternalDroneScript.g:745:4: rule__OpCompare__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpCompare__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "protected void changeCSV(CSVDocument doc, int row, int col) {\n doc.moveRowUp(row);\n }", "public void rellenarDatos(){\t\r\n\t//======================================ELEGIMOS MEDIANTE FILECHOOSER EL CSV==============================================//\r\n\tvista.getMntmAbrirCsv().addActionListener(r->{\t\r\n\tJFileChooser jchooser= new JFileChooser();\r\n\tvista.setjFileChooserCSV(jchooser);\r\n\tlistaArte= new ArrayList<ObraArte>();\r\n\t//==================================CREAMOS LAS TABLAS EN LA BASE DE DATOS SQLite========================================//\r\n\tCrearTablaHistorial.crearTablaObraArte(con);\r\n\tCrearTablas.crearTablaObraArte(con);\r\n\tCrearTriggers.createTrigger(con);\r\n\tint returnJChooser= jchooser.showOpenDialog(vista.getContentPane());\r\n\tif (returnJChooser==JFileChooser.APPROVE_OPTION){\r\n\t\tFile file= new File(jchooser.getSelectedFile(),\"\");\r\n\t\tScanner sc;\r\n\t\t\r\n\t\ttry {\r\n\t\t\tsc = new Scanner(file);\r\n\t\t\tString cabecero = sc.nextLine(); \r\n\t\t\twhile(sc.hasNextLine()){ \r\n\t\t\t\tString[] textoEnLineas = sc.nextLine().split(\",\");\r\n\t\t\t\tlistaArte.add(new ObraArte(textoEnLineas[0], textoEnLineas[1], textoEnLineas[2], textoEnLineas[4], textoEnLineas[3]));\r\n\t\t\t}\t\t\t\r\n\t\t} catch (FileNotFoundException | NoSuchElementException o) {\t\r\n\t\t\tJOptionPane.showMessageDialog(vista.getFrame(), \"Archivo de datos incorrecto\", \"Error de lectura\", JOptionPane.ERROR_MESSAGE);\r\n\t\t\t\r\n\t\t}\r\n\t\t\r\n\t\t\r\n\t\t//====================CARGAMOS LOS DATOS EN LA TABLA Y BORRAMOS LA LISTA, CARGANDO LA DE LA BD=================//\r\n\t\t\r\n\t\tInsertarDatos.addListaRegistroArte(con, listaArte);\r\n\t\tlistaArte.removeAll(listaArte);\r\n\t\tlistaArte=SeleccionarDatos.getTodosRegistros(con);\r\n\t\tvista.getTable().setModel(new TableModelArte(listaArte, CABECERA));\r\n\t\t\r\n\t\tvista.getLabelSize().setText(vista.getTable().getRowCount()+\" elementos.\");\r\n\t\tvista.getTxtBarraStatus().setText(\"TABLA CREADA\");\r\n\t\tvista.getButton_Modificar().setEnabled(true);\r\n\t\tvista.getButtonBorrar().setEnabled(true);\r\n\t\tvista.getButtonInsertarNuevo().setEnabled(true);\r\n\t\tvista.getMntmBorrarFila().setEnabled(true);\r\n\t\t//comprobarID();\r\n\t\t}\r\n});\t\t\t\r\n}", "public final void rule__SaveCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1747:1: ( ( ( rule__SaveCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1749:2: ( rule__SaveCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1750:2: ( rule__SaveCSV__OpenAssignment_2 )\n // InternalCsv.g:1750:3: rule__SaveCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private void openCsvDialog(){\n JFileChooser aFileChooser = new JFileChooser();\n aFileChooser.setFileFilter(new MyFileFilterCSV());\n if (lastUsedFileCSV != null){\n aFileChooser.setCurrentDirectory(lastUsedFileCSV.getParentFile());\n aFileChooser.setSelectedFile(lastUsedFileCSV);\n }else{\n File file = new File(aFileChooser.getCurrentDirectory(), dataset.getName()+\".csv\");\n aFileChooser.setSelectedFile(file);\n }\n int r = aFileChooser.showSaveDialog(this);\n if (r == JFileChooser.APPROVE_OPTION){\n setCursor(new Cursor(Cursor.WAIT_CURSOR));\n File file = aFileChooser.getSelectedFile();\n if(!MyUtilities.isCSVFile(file)){\n file = MyUtilities.getCSVFile(file);\n }\n lastUsedFileCSV = file;\n String sep = getCSVSeparator();\n PrintWriter writer = null;\n try{\n writer = new PrintWriter(new BufferedWriter (new OutputStreamWriter(new FileOutputStream(file), \"utf-8\")));\n // header\n String s = \"\";\n for(int j=0; j<dataset.getListDataHeader().length; j++){\n s += dataset.getListDataHeader()[j] == null? \"\" : dataset.getListDataHeader()[j].getValue();\n if(j <dataset.getListDataHeader().length -1)\n s+= sep;\n }\n writer.println(s);\n // data\n Data[][] data = dataset.getData();\n int nbR = dataset.getNbRows();\n int nbC = dataset.getNbCol();\n for(int i=0; i<nbR; i++){\n s = \"\";\n for(int j=0; j<nbC; j++){\n if(data[i][j] != null){\n if(data[i][j].isDoubleValue()){\n if(!Double.isNaN(data[i][j].getDoubleValue()))\n s += NumberFormat.getNumberInstance(getLocale()).format(data[i][j].getDoubleValue());\n }else{\n s += data[i][j].getValue();\n }\n }\n if(j <nbC -1)\n s+= sep;\n }\n writer.println(s);\n }\n //log\n\t\tdataProcessToolPanel.logExportCSV(dataset, file.getPath());\n }catch (IOException e){\n setCursor(new Cursor(Cursor.DEFAULT_CURSOR));\n displayError(new CopexReturn(getBundleString(\"MSG_ERROR_CSV\"), false), getBundleString(\"TITLE_DIALOG_ERROR\"));\n }\n finally{\n if (writer != null)\n try{\n writer.close();\n setCursor(new Cursor(Cursor.DEFAULT_CURSOR));\n }catch (Exception e){\n setCursor(new Cursor(Cursor.DEFAULT_CURSOR));\n displayError(new CopexReturn(getBundleString(\"MSG_ERROR_CSV\"), false), getBundleString(\"TITLE_DIALOG_ERROR\"));\n }\n }\n }\n }", "public void createCsvString(StringBuilder builder, RolePrevilige e) {\r\n\r\n\t\tbuilder.append(\"\\\"\" + (e.getEdit() != null ? e.getEdit() : \"\") + \"\\\",\");\r\n\r\n\t\tbuilder.append(\"\\\"\" + (e.getView() != null ? e.getView() : \"\") + \"\\\",\");\r\n\r\n\t\tbuilder.append(\"\\\"\"\r\n\t\t\t\t+ (e.getAppRole() != null ? e.getAppRole().getDisplayName()\r\n\t\t\t\t\t\t.replace(\",\", \"\") : \"\") + \"\\\",\");\r\n\r\n\t\tbuilder.append(\"\\\"\"\r\n\t\t\t\t+ (e.getFieldPrevilige() != null ? e.getFieldPrevilige()\r\n\t\t\t\t\t\t.getDisplayName().replace(\",\", \"\") : \"\") + \"\\\",\");\r\n\r\n\t\tbuilder.append(\"\\r\\n\");\r\n\t}", "public final void ruleother() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:327:2: ( ( ( rule__Other__Alternatives ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:328:1: ( ( rule__Other__Alternatives ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:329:1: ( rule__Other__Alternatives )\n {\n before(grammarAccess.getOtherAccess().getAlternatives()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:1: ( rule__Other__Alternatives )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:330:2: rule__Other__Alternatives\n {\n pushFollow(FOLLOW_rule__Other__Alternatives_in_ruleother637);\n rule__Other__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getOtherAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpMulti() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:810:2: ( ( ( rule__OpMulti__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:811:1: ( ( rule__OpMulti__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:811:1: ( ( rule__OpMulti__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:812:1: ( rule__OpMulti__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:813:1: ( rule__OpMulti__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:813:2: rule__OpMulti__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpMulti__Alternatives_in_ruleOpMulti1667);\r\n rule__OpMulti__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleSaveCSV() throws RecognitionException {\n try {\n // InternalCsv.g:255:1: ( ruleSaveCSV EOF )\n // InternalCsv.g:256:1: ruleSaveCSV EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVRule()); \n }\n pushFollow(FOLLOW_1);\n ruleSaveCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public static java.lang.CharSequence escapeCsv(java.lang.CharSequence r13, boolean r14) {\n /*\n java.lang.String r0 = \"value\"\n java.lang.Object r0 = p043io.netty.util.internal.ObjectUtil.checkNotNull(r13, r0)\n java.lang.CharSequence r0 = (java.lang.CharSequence) r0\n int r0 = r0.length()\n if (r0 != 0) goto L_0x000f\n return r13\n L_0x000f:\n int r1 = r0 + -1\n r2 = 0\n r3 = 1\n if (r14 == 0) goto L_0x0030\n int r14 = indexOfFirstNonOwsChar(r13, r0)\n if (r14 != r0) goto L_0x001e\n java.lang.String r13 = \"\"\n return r13\n L_0x001e:\n int r4 = indexOfLastNonOwsChar(r13, r14, r0)\n if (r14 > 0) goto L_0x0029\n if (r4 >= r1) goto L_0x0027\n goto L_0x0029\n L_0x0027:\n r1 = 0\n goto L_0x002a\n L_0x0029:\n r1 = 1\n L_0x002a:\n if (r1 == 0) goto L_0x0033\n int r0 = r4 - r14\n int r0 = r0 + r3\n goto L_0x0033\n L_0x0030:\n r4 = r1\n r14 = 0\n r1 = 0\n L_0x0033:\n java.lang.StringBuilder r5 = new java.lang.StringBuilder\n int r6 = r0 + 7\n r5.<init>(r6)\n char r6 = r13.charAt(r14)\n boolean r6 = isDoubleQuote(r6)\n if (r6 == 0) goto L_0x0052\n char r6 = r13.charAt(r4)\n boolean r6 = isDoubleQuote(r6)\n if (r6 == 0) goto L_0x0052\n if (r0 == r3) goto L_0x0052\n r0 = 1\n goto L_0x0053\n L_0x0052:\n r0 = 0\n L_0x0053:\n r2 = r14\n r6 = 0\n r7 = 0\n L_0x0056:\n if (r2 > r4) goto L_0x009d\n char r8 = r13.charAt(r2)\n r9 = 10\n if (r8 == r9) goto L_0x0096\n r9 = 13\n if (r8 == r9) goto L_0x0096\n r9 = 34\n if (r8 == r9) goto L_0x006d\n r9 = 44\n if (r8 == r9) goto L_0x0096\n goto L_0x0097\n L_0x006d:\n if (r2 == r14) goto L_0x0091\n if (r2 != r4) goto L_0x0072\n goto L_0x0091\n L_0x0072:\n int r10 = r2 + 1\n char r11 = r13.charAt(r10)\n boolean r11 = isDoubleQuote(r11)\n int r12 = r2 + -1\n char r12 = r13.charAt(r12)\n boolean r12 = isDoubleQuote(r12)\n if (r12 != 0) goto L_0x0097\n if (r11 == 0) goto L_0x008c\n if (r10 != r4) goto L_0x0097\n L_0x008c:\n r5.append(r9)\n r6 = 1\n goto L_0x0097\n L_0x0091:\n if (r0 != 0) goto L_0x009a\n r5.append(r9)\n L_0x0096:\n r7 = 1\n L_0x0097:\n r5.append(r8)\n L_0x009a:\n int r2 = r2 + 1\n goto L_0x0056\n L_0x009d:\n if (r6 != 0) goto L_0x00ae\n if (r7 == 0) goto L_0x00a4\n if (r0 != 0) goto L_0x00a4\n goto L_0x00ae\n L_0x00a4:\n if (r1 == 0) goto L_0x00ad\n if (r0 == 0) goto L_0x00ac\n java.lang.StringBuilder r5 = quote(r5)\n L_0x00ac:\n return r5\n L_0x00ad:\n return r13\n L_0x00ae:\n java.lang.StringBuilder r13 = quote(r5)\n return r13\n */\n throw new UnsupportedOperationException(\"Method not decompiled: p043io.netty.util.internal.StringUtil.escapeCsv(java.lang.CharSequence, boolean):java.lang.CharSequence\");\n }", "public final void ruleOpMulti() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:892:2: ( ( ( rule__OpMulti__Alternatives ) ) )\r\n // InternalDroneScript.g:893:2: ( ( rule__OpMulti__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:893:2: ( ( rule__OpMulti__Alternatives ) )\r\n // InternalDroneScript.g:894:3: ( rule__OpMulti__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:895:3: ( rule__OpMulti__Alternatives )\r\n // InternalDroneScript.g:895:4: rule__OpMulti__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpMulti__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpMultiAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public interface CsvParser extends Iterator<CsvLine>, Closeable {\n}", "public final void ruleOpCompare() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:559:2: ( ( ( rule__OpCompare__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:560:1: ( ( rule__OpCompare__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:560:1: ( ( rule__OpCompare__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:561:1: ( rule__OpCompare__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpCompareAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:562:1: ( rule__OpCompare__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:562:2: rule__OpCompare__Alternatives\n {\n pushFollow(FOLLOW_rule__OpCompare__Alternatives_in_ruleOpCompare1127);\n rule__OpCompare__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpCompareAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Test\n public void detailCompareDefaultDelimiterNoCompareOption(){\n LOGGER.info(\"------------- Start running detailCompareDefaultDelimiterNoCompareOption -------------\");\n srcCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/output.csv\";\n desCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/target.csv\";\n boolean result = CsvUtil.compareCsv(srcCsv, desCsv, null,null);\n assertTrue(result);\n }", "@Test\n public void detailCompareDefaultDelimiterBooleanOption(){\n LOGGER.info(\"------------- Start running detailCompareDefaultDelimiterNoCompareOption -------------\");\n srcCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/output.csv\";\n desCsv = Constant.RESOURCE_PATH + \"pluginautomation/sample/csv/target.csv\";\n boolean result = CsvUtil.compareCsv(srcCsv, desCsv, null,null, CsvUtil.CompareOptions.TRUE_FALSE_IS_1_0);\n assertTrue(result);\n }", "public final void rule__OpenCSV__NameAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3727:1: ( ( RULE_ID ) )\n // InternalCsv.g:3728:2: ( RULE_ID )\n {\n // InternalCsv.g:3728:2: ( RULE_ID )\n // InternalCsv.g:3729:3: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getNameIDTerminalRuleCall_2_0()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getNameIDTerminalRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n DBO consume(String csv) throws TransformerException;", "public static void CSVExport(String output, LinkedList<Patient> src, boolean[] shouldEx) {\n\t\tExportSepValuesFile(output, src, \",\", shouldEx);\n\t}", "@Override\npublic void close() throws IOException, JoinsException, SortException, IndexException {\n\t\n}", "public interface FileReplacer {\n public void replaceTags(ArrayList<String> header, CSVRecord record, File resultFile);\n public void replaceTagsWithCoef(ArrayList<String> header, int headerIndex, double coefficient, CSVRecord record, File resultFile);\n\n public void replaceInOneDoc(ArrayList<String> header, CSVRecord record, File file, Table cellTable);\n}", "public final void rule__OpOther__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1927:1: ( ( '->' ) | ( '..' ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==21) ) {\n alt7=1;\n }\n else if ( (LA7_0==22) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1928:1: ( '->' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1928:1: ( '->' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1929:1: '->'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \n }\n match(input,21,FOLLOW_21_in_rule__OpOther__Alternatives4068); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1936:6: ( '..' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1936:6: ( '..' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1937:1: '..'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \n }\n match(input,22,FOLLOW_22_in_rule__OpOther__Alternatives4088); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2206:1: ( ( ',' ) )\n // InternalCsv.g:2207:1: ( ',' )\n {\n // InternalCsv.g:2207:1: ( ',' )\n // InternalCsv.g:2208:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void convertCsvDataToSQLScrip(List<CorruptionIndex> data, String destinationFile){\n\n }", "public interface CSVDataRow\n{\n String toLine();\n}", "public final void rule__OpOther__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2368:1: ( ( '->' ) | ( '..' ) | ( '=>' ) | ( ( rule__OpOther__Group_3__0 ) ) | ( ( rule__OpOther__Group_4__0 ) ) | ( '<>' ) | ( '?:' ) | ( '<=>' ) )\r\n int alt9=8;\r\n switch ( input.LA(1) ) {\r\n case 24:\r\n {\r\n alt9=1;\r\n }\r\n break;\r\n case 25:\r\n {\r\n alt9=2;\r\n }\r\n break;\r\n case 26:\r\n {\r\n alt9=3;\r\n }\r\n break;\r\n case 22:\r\n {\r\n alt9=4;\r\n }\r\n break;\r\n case 23:\r\n {\r\n alt9=5;\r\n }\r\n break;\r\n case 27:\r\n {\r\n alt9=6;\r\n }\r\n break;\r\n case 28:\r\n {\r\n alt9=7;\r\n }\r\n break;\r\n case 29:\r\n {\r\n alt9=8;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt9) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2369:1: ( '->' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2369:1: ( '->' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2370:1: '->'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \r\n }\r\n match(input,24,FOLLOW_24_in_rule__OpOther__Alternatives5017); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getHyphenMinusGreaterThanSignKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2377:6: ( '..' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2377:6: ( '..' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2378:1: '..'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \r\n }\r\n match(input,25,FOLLOW_25_in_rule__OpOther__Alternatives5037); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getFullStopFullStopKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2385:6: ( '=>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2385:6: ( '=>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2386:1: '=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_2()); \r\n }\r\n match(input,26,FOLLOW_26_in_rule__OpOther__Alternatives5057); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getEqualsSignGreaterThanSignKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 4 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2393:6: ( ( rule__OpOther__Group_3__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2393:6: ( ( rule__OpOther__Group_3__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2394:1: ( rule__OpOther__Group_3__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_3()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2395:1: ( rule__OpOther__Group_3__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2395:2: rule__OpOther__Group_3__0\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Group_3__0_in_rule__OpOther__Alternatives5076);\r\n rule__OpOther__Group_3__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 5 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2399:6: ( ( rule__OpOther__Group_4__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2399:6: ( ( rule__OpOther__Group_4__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2400:1: ( rule__OpOther__Group_4__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getGroup_4()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2401:1: ( rule__OpOther__Group_4__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2401:2: rule__OpOther__Group_4__0\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Group_4__0_in_rule__OpOther__Alternatives5094);\r\n rule__OpOther__Group_4__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getGroup_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 6 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2405:6: ( '<>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2405:6: ( '<>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2406:1: '<>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_5()); \r\n }\r\n match(input,27,FOLLOW_27_in_rule__OpOther__Alternatives5113); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getLessThanSignGreaterThanSignKeyword_5()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 7 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2413:6: ( '?:' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2413:6: ( '?:' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2414:1: '?:'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_6()); \r\n }\r\n match(input,28,FOLLOW_28_in_rule__OpOther__Alternatives5133); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getQuestionMarkColonKeyword_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 8 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2421:6: ( '<=>' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2421:6: ( '<=>' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2422:1: '<=>'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getLessThanSignEqualsSignGreaterThanSignKeyword_7()); \r\n }\r\n match(input,29,FOLLOW_29_in_rule__OpOther__Alternatives5153); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getLessThanSignEqualsSignGreaterThanSignKeyword_7()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpMulti() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:727:2: ( ( ( rule__OpMulti__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:728:1: ( ( rule__OpMulti__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:728:1: ( ( rule__OpMulti__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:729:1: ( rule__OpMulti__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpMultiAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:730:1: ( rule__OpMulti__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:730:2: rule__OpMulti__Alternatives\n {\n pushFollow(FOLLOW_rule__OpMulti__Alternatives_in_ruleOpMulti1487);\n rule__OpMulti__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpMultiAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void mT__46() throws RecognitionException {\n try {\n int _type = T__46;\n int _channel = DEFAULT_TOKEN_CHANNEL;\n // InternalVizualizer.g:46:7: ( 'CSV' )\n // InternalVizualizer.g:46:9: 'CSV'\n {\n match(\"CSV\"); \n\n\n }\n\n state.type = _type;\n state.channel = _channel;\n }\n finally {\n }\n }", "@Override\n public void importCSV(File file) {\n System.out.println(\"oi\");\n System.out.println(file.isFile()+\" \"+file.getAbsolutePath());\n if(file.isFile() && file.getPath().toLowerCase().contains(\".csv\")){\n System.out.println(\"Entro\");\n try {\n final Reader reader = new FileReader(file);\n final BufferedReader bufferReader = new BufferedReader(reader);\n String[] cabecalho = bufferReader.readLine().split(\",\");\n int tipo;\n if(cabecalho.length == 3){\n if(cabecalho[2].equalsIgnoreCase(\"SIGLA\")){\n tipo = 1;\n System.out.println(\"TIPO PAIS\");\n }\n else {\n tipo = 2;\n System.out.println(\"TIPO CIDADE\");\n }\n }else {\n tipo = 3;\n System.out.println(\"TIPO ESTADO\");\n }\n \n while(true){\n String linha = bufferReader.readLine();\n if(linha == null){\n break;\n }\n String[] row = linha.split(\",\");\n switch (tipo) {\n case 1:\n Pais pais = new Pais();\n pais.setId(Long.parseLong(row[0]));\n pais.setNome(row[1]);\n pais.setSigla(row[2]);\n new PaisDaoImpl().insert(pais);\n break;\n case 2:\n Cidade cidade = new Cidade();\n cidade.setId(Long.parseLong(row[0]));\n cidade.setNome(row[1]);\n cidade.setEstado(Long.parseLong(row[2]));\n new CidadeDaoImpl().insert(cidade);\n break;\n default:\n Estado estado = new Estado();\n estado.setId(Long.parseLong(row[0]));\n estado.setNome(row[1]);\n estado.setUf(row[2]);\n estado.setPais(Long.parseLong(row[3]));\n new EstadoDaoImpl().insert(estado);\n break;\n }\n }\n \n } catch (FileNotFoundException ex) {\n Logger.getLogger(SQLUtilsImpl.class.getName()).log(Level.SEVERE, null, ex);\n } catch (IOException ex) {\n Logger.getLogger(SQLUtilsImpl.class.getName()).log(Level.SEVERE, null, ex);\n }\n }\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3448:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n {\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n // InternalCsv.g:3450:2: ( rule__XImportDeclaration__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n // InternalCsv.g:3451:2: ( rule__XImportDeclaration__Alternatives_1 )\n // InternalCsv.g:3451:3: rule__XImportDeclaration__Alternatives_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleExpressions() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:908:2: ( ( ( rule__Expressions__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:909:1: ( ( rule__Expressions__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:909:1: ( ( rule__Expressions__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:910:1: ( rule__Expressions__Alternatives )\n {\n before(grammarAccess.getExpressionsAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:911:1: ( rule__Expressions__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:911:2: rule__Expressions__Alternatives\n {\n pushFollow(FOLLOW_rule__Expressions__Alternatives_in_ruleExpressions1687);\n rule__Expressions__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getExpressionsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void ruleOpAdd() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:842:2: ( ( ( rule__OpAdd__Alternatives ) ) )\r\n // InternalDroneScript.g:843:2: ( ( rule__OpAdd__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:843:2: ( ( rule__OpAdd__Alternatives ) )\r\n // InternalDroneScript.g:844:3: ( rule__OpAdd__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:845:3: ( rule__OpAdd__Alternatives )\r\n // InternalDroneScript.g:845:4: rule__OpAdd__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpAdd__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public static void writeDataToCsvUsingStringArrayForReference(PrintWriter writer, List<ReferenceTabDTO> referenceTabList) {\n\n String[] CSV_REFERENCE_TITLE = {\"Reference Details\"};\n\n String[] CSV_REFERENCE_HEADER = {\"REF_ID\", \"REF_TYPE\", \"JOURNAL_PATENT_NAME\", \"REFERENCE\", \"YEAR\", \"VOLUME\", \"ISSUE\", \"START_PAGE\", \"END_PAGE\", \"DOI\", \"PUBMED_ID\", \"PATENT_NO\", \"APPLICATION_TYPE\", \"ISSN_NO\", \"TITLE\", \"ABSTRACT\", \"AUTHORS\", \"COMPANY_NAMES\", \"COMPANY_ADDRESSES\"};\n try (\n CSVWriter csvWriter = new CSVWriter(writer,\n CSVWriter.DEFAULT_SEPARATOR,\n CSVWriter.DEFAULT_ESCAPE_CHARACTER,\n CSVWriter.DEFAULT_LINE_END);\n ) {\n csvWriter.writeNext(CSV_REFERENCE_TITLE);\n csvWriter.writeNext(CSV_REFERENCE_HEADER);\n\n for (ReferenceTabDTO referenceTabDataReturn : referenceTabList) {\n String[] referenceData = new String[]{\n referenceTabDataReturn.getRefId() + \"\",\n referenceTabDataReturn.getRefType() + \"\",\n referenceTabDataReturn.getJournalPatentName(),\n referenceTabDataReturn.getReference(),\n referenceTabDataReturn.getYear() + \"\",\n referenceTabDataReturn.getVolume() + \"\",\n referenceTabDataReturn.getIssue() + \"\",\n referenceTabDataReturn.getStartPage() + \"\",\n referenceTabDataReturn.getEndPage() + \"\",\n referenceTabDataReturn.getDoi() + \"\",\n referenceTabDataReturn.getPubmedId() + \"\",\n referenceTabDataReturn.getPatentNo() + \"\",\n referenceTabDataReturn.getApplicationType() + \"\",\n referenceTabDataReturn.getIssnNo() + \"\",\n referenceTabDataReturn.getTitle() + \"\",\n referenceTabDataReturn.getAbstrac(),\n referenceTabDataReturn.getAuthors() + \"\",\n referenceTabDataReturn.getCompanyNames() + \"\",\n referenceTabDataReturn.getCompanyAddresses() + \"\"\n\n };\n csvWriter.writeNext(referenceData);\n }\n\n } catch (Exception e) {\n System.out.println(\"Exception occured into the ReferenceTab Data Export\" + e.getMessage());\n e.printStackTrace();\n }\n\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpAdd() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:671:2: ( ( ( rule__OpAdd__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:672:1: ( ( rule__OpAdd__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:672:1: ( ( rule__OpAdd__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:673:1: ( rule__OpAdd__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpAddAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:674:1: ( rule__OpAdd__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:674:2: rule__OpAdd__Alternatives\n {\n pushFollow(FOLLOW_rule__OpAdd__Alternatives_in_ruleOpAdd1367);\n rule__OpAdd__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpAddAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpPostfix() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1017:2: ( ( ( rule__OpPostfix__Alternatives ) ) )\r\n // InternalDroneScript.g:1018:2: ( ( rule__OpPostfix__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:1018:2: ( ( rule__OpPostfix__Alternatives ) )\r\n // InternalDroneScript.g:1019:3: ( rule__OpPostfix__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpPostfixAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:1020:3: ( rule__OpPostfix__Alternatives )\r\n // InternalDroneScript.g:1020:4: rule__OpPostfix__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpPostfix__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpPostfixAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Group_4__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7890:1: ( ( ( rule__OpOther__Alternatives_4_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7891:1: ( ( rule__OpOther__Alternatives_4_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7891:1: ( ( rule__OpOther__Alternatives_4_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7892:1: ( rule__OpOther__Alternatives_4_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives_4_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7893:1: ( rule__OpOther__Alternatives_4_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7893:2: rule__OpOther__Alternatives_4_1\r\n {\r\n pushFollow(FOLLOW_rule__OpOther__Alternatives_4_1_in_rule__OpOther__Group_4__1__Impl16378);\r\n rule__OpOther__Alternatives_4_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives_4_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpAdd() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:754:2: ( ( ( rule__OpAdd__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:755:1: ( ( rule__OpAdd__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:755:1: ( ( rule__OpAdd__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:756:1: ( rule__OpAdd__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:757:1: ( rule__OpAdd__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:757:2: rule__OpAdd__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__OpAdd__Alternatives_in_ruleOpAdd1547);\r\n rule__OpAdd__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpAddAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Test\n public void testBothStreams() throws Exception {\n\n URL url = Thread.currentThread().getContextClassLoader().getResource(\"test.csv\");\n BufferedCsvInputStream is = new BufferedCsvInputStream(new FileReader(new File(url.getFile())));\n File testFile = new File(\"test-review.csv\");\n BufferedCsvOutputStream os = new BufferedCsvOutputStream(new FileWriter(testFile));\n\n // first line shown\n String[] line = is.readNextLine();\n // 'next line' click\n Assert.assertArrayEquals(new String[]{\"abc\", \"def\", \"ghi\"}, os.writeLine(line)); // write first line\n line = is.readNextLine(); // get second line\n Assert.assertArrayEquals(new String[]{\"j\", \"k\", \"l\", \"m\"}, line);\n // 'previous line' click\n String[] prevLine = os.goToPreviousLine(); // get first line again\n Assert.assertArrayEquals(new String[]{\"abc\", \"def\", \"ghi\"}, prevLine);\n line = is.readPreviousLine();\n Assert.assertArrayEquals(new String[]{\"abc\", \"def\", \"ghi\"}, line);\n // 'next line' click\n Assert.assertArrayEquals(new String[]{\"abc\", \"def\", \"ghi\"}, os.writeLine(line)); // write first again\n line = is.readNextLine(); // get second line\n Assert.assertArrayEquals(new String[]{\"j\", \"k\", \"l\", \"m\"}, line);\n // 'next line' click\n Assert.assertArrayEquals(new String[]{\"j\", \"k\", \"l\", \"m\"}, os.writeLine(line)); // write second line\n line = is.readNextLine(); // get third line\n Assert.assertArrayEquals(new String[]{\"no\", \"p\"}, line);\n\n is.close();\n os.close(); // close to write the rest\n testFile.deleteOnExit();\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11350:1: ( ( ',' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11351:1: ( ',' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11351:1: ( ',' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11352:1: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_2_0()); \n }\n match(input,39,FOLLOW_39_in_rule__XFunctionTypeRef__Group_0_2__0__Impl22780); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpOther__Group_6__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:7157:1: ( ( ( rule__OpOther__Alternatives_6_1 ) ) )\r\n // InternalDroneScript.g:7158:1: ( ( rule__OpOther__Alternatives_6_1 ) )\r\n {\r\n // InternalDroneScript.g:7158:1: ( ( rule__OpOther__Alternatives_6_1 ) )\r\n // InternalDroneScript.g:7159:2: ( rule__OpOther__Alternatives_6_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpOtherAccess().getAlternatives_6_1()); \r\n }\r\n // InternalDroneScript.g:7160:2: ( rule__OpOther__Alternatives_6_1 )\r\n // InternalDroneScript.g:7160:3: rule__OpOther__Alternatives_6_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpOther__Alternatives_6_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpOtherAccess().getAlternatives_6_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1261:1: ( ( 'read' ) )\n // InternalCsv.g:1262:1: ( 'read' )\n {\n // InternalCsv.g:1262:1: ( 'read' )\n // InternalCsv.g:1263:2: 'read'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n match(input,20,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getReadKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "CSV createCSV();", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15514:1: ( ( ( rule__ImportDecl__Alternatives_2 ) ) )\r\n // InternalGo.g:15515:1: ( ( rule__ImportDecl__Alternatives_2 ) )\r\n {\r\n // InternalGo.g:15515:1: ( ( rule__ImportDecl__Alternatives_2 ) )\r\n // InternalGo.g:15516:2: ( rule__ImportDecl__Alternatives_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getAlternatives_2()); \r\n }\r\n // InternalGo.g:15517:2: ( rule__ImportDecl__Alternatives_2 )\r\n // InternalGo.g:15517:3: rule__ImportDecl__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleSaveCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:267:2: ( ( ( rule__SaveCSV__Group__0 ) ) )\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n {\n // InternalCsv.g:268:2: ( ( rule__SaveCSV__Group__0 ) )\n // InternalCsv.g:269:3: ( rule__SaveCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n // InternalCsv.g:270:3: ( rule__SaveCSV__Group__0 )\n // InternalCsv.g:270:4: rule__SaveCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4337:1: ( ( ( rule__ImportDecl__ImportsAssignment_2_0 ) ) | ( ( rule__ImportDecl__Group_2_1__0 ) ) )\r\n int alt47=2;\r\n int LA47_0 = input.LA(1);\r\n\r\n if ( ((LA47_0>=RULE_STRING && LA47_0<=RULE_ID)||(LA47_0>=46 && LA47_0<=47)) ) {\r\n alt47=1;\r\n }\r\n else if ( (LA47_0==52) ) {\r\n alt47=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 47, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt47) {\r\n case 1 :\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n {\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n // InternalGo.g:4339:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n // InternalGo.g:4340:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n // InternalGo.g:4340:4: rule__ImportDecl__ImportsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__ImportsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n {\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n // InternalGo.g:4345:3: ( rule__ImportDecl__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n // InternalGo.g:4346:3: ( rule__ImportDecl__Group_2_1__0 )\r\n // InternalGo.g:4346:4: rule__ImportDecl__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public double rel(TextInstance doc1, TextInstance doc2, int preprocType, MatrixBuilder builder);", "private StringBuffer appendColumnString(StringBuffer newLine, int columnIndex, Object plaintext) {\n if (columnIndex != 0){\n newLine.append(\";\");\n }\n newLine.append(plaintext.toString());\n return newLine;\n }", "public IndexModifierCSVMessage(pgrid.GUID guid, Key key, short mode, CSVIndexTable csvItems) {\n\t\tsuper(guid);\n\t\tmItems = new CSVIndexTable(\"IMcsv_\"+randomString()+\"_\"+(++num)+\".csv\",false);\n\t\tmKey = key;\n\t\tif(csvItems != null){\n\t\t\ttry{\n\t\t\t\tcsvItems.openFileForReading();\n\t\t\t\tmItems.openFileForWriting();\n\t\t\t\tIndexEntry dataItem = null;\n\t\t\t\twhile((dataItem = (IndexEntry)csvItems.getNextIndexEntry())!=null) {\n\t\t\t\t\tmItems.addIndexEntry(dataItem);\n\t\t\t\t}\n\t\t\t} catch (Exception e) {\n\t\t\t\t// TODO Auto-generated catch block\n\t\t\t\te.printStackTrace();\n\t\t\t}finally{\n\t\t\t\tmItems.closeFileForWriting();\n\t\t\t\tcsvItems.closeFileOnReading();\n\t\t\t}\n\t\t}\n\t\tmMode = mode;\n\n\t\tCompression.compressFile(getFileName(),getFileName()+\".zip\" );\n\t\tmFileSize = new File(getFilePath()+\".zip\").length();\n\t\tthis.getHeader().setAdditionalAttribute(\"FileLength\", getFileSize()+\"\");\n\t\tthis.getHeader().setAdditionalAttribute(\"FileName\", getFileName());\n\n\t}", "public final void ruleOpEquality() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:692:2: ( ( ( rule__OpEquality__Alternatives ) ) )\r\n // InternalDroneScript.g:693:2: ( ( rule__OpEquality__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:693:2: ( ( rule__OpEquality__Alternatives ) )\r\n // InternalDroneScript.g:694:3: ( rule__OpEquality__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getOpEqualityAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:695:3: ( rule__OpEquality__Alternatives )\r\n // InternalDroneScript.g:695:4: rule__OpEquality__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpEquality__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getOpEqualityAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public void specialCSV(int[][] arrayIn, PrintWriter p) throws IOException {\n\t\t\n\t\tint i, j;\n\t\tp.print(\",\");\n\t\t\n\t\tfor (j = 0; j < args.length; j++){\n\t\t\tp.print(args[j].substring(args[j].lastIndexOf('/') + 1) + \",\");\n\t\t}\n\t\t\n\t\tp.print(\"Time elapsed since the last significant revision:,\");\n\t\tp.print(\"Comments:,\");\n\t\tp.println();\n\t\t\n\t\tfor (i = arrayIn.length - 1; i >= 0; i--){\n\t\t\t\n\t\t\tp.print(revisions[i] + \",\");\n\t\t\t\n\t\t\tfor (j = 0; j < arrayIn[i].length; j++) {\n\t\t\t\t\n\t\t\t\tif (arrayIn[i][j] == 1) {\n\t\t\t\t\tp.print(\"1,\"); //indicates that the file was affected here\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\telse {\n\t\t\t\t\tp.print(\",\"); //blank instead of 0 to remove clutter and focus attention on releent areas\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\tif (i < arrayIn.length - 1) {\n\t\t\t\tp.print(flowOfTime[i] + \",\");\n\t\t\t}\n\t\t\t\n\t\t\telse {\n\t\t\t\tp.print(\"N/A,\");\n\t\t\t}\n\t\t\t\n\t\t\tp.print(commenting.get(i));\n\t\t\tp.println();\n\t\t}\n\t\t\n\t\tp.println();\n\t}", "@Test\n public void doImport_doesNotModifyOriginalCsv() {\n ExternalDataReader externalDataReader = new ExternalDataReaderImpl(null);\n externalDataReader.doImport(formDefToCsvMedia);\n\n assertThat(dbFile.exists(), is(true));\n assertThat(csvFile.exists(), is(true));\n }", "public static void main(String[] args) throws IOException{\n\t\tint i = 0;\n\t\tfor(String s : args){\n\t\t\tif(isCSV(s)){\n\t\t\t\tif(i == 0){\n\t\t\t\t\tkeywords = keywords_openacc;\n\t\t\t\t}\n\t\t\t\tSystem.out.println(\"Folding \" + s);\n\t\t\t\tcurrentTest=s;\n\t\t\t\tstringToCSV(buildString(csvToString(s)));\n\t\t\t}else{\n\t\t\t\ti++;\n\t\t\t\tassignKeywords(s);\n\t\t\t}\n\t\t}\n\t}", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16911:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n {\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n // InternalDroneScript.g:16913:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n // InternalDroneScript.g:16914:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n // InternalDroneScript.g:16914:3: rule__XImportDeclaration__Alternatives_1_0_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1_0_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n\tpublic Object visit(ASTJoin node, Object data) {\n\t\tint indent = (Integer) data;\n\t\t\n\t\tprintIndent(indent);\n\t\tSystem.out.println(\"join (\");\n\t\tnode.jjtGetChild(0).jjtAccept(this, indent + 2);\n\t\tSystem.out.println(\",\");\n\t\tnode.jjtGetChild(1).jjtAccept(this, indent + 2);\n\t\tSystem.out.println(\",\");\n\t\tnode.jjtGetChild(2).jjtAccept(this, indent + 2);\n\t\tSystem.out.print(\", \");\n\t\tnode.jjtGetChild(3).jjtAccept(this, 0);\n\t\tSystem.out.println();\n\t\tprintIndent(indent);\n\t\tSystem.out.print(\")\");\n\t\treturn null;\n\t}" ]
[ "0.7396611", "0.6600254", "0.60372144", "0.5974461", "0.59431505", "0.5692369", "0.5515611", "0.53761977", "0.5341219", "0.53331584", "0.51206374", "0.4766889", "0.47459686", "0.46448854", "0.46141884", "0.4570198", "0.45501727", "0.4523", "0.4508282", "0.44686007", "0.4441809", "0.4441403", "0.44318542", "0.4425126", "0.43969712", "0.4373188", "0.43676743", "0.43374982", "0.43084136", "0.42816746", "0.42663154", "0.42653415", "0.4264065", "0.42516503", "0.42455715", "0.42452946", "0.4244042", "0.42343175", "0.42274317", "0.41867572", "0.4185355", "0.41790786", "0.41760844", "0.4154987", "0.41432703", "0.41271296", "0.41257516", "0.41197407", "0.41151255", "0.41091204", "0.41056472", "0.4105486", "0.40885758", "0.40657693", "0.4063816", "0.40582812", "0.4047498", "0.40472877", "0.4042469", "0.40411857", "0.4030599", "0.40249598", "0.4024739", "0.4001213", "0.39926037", "0.3990682", "0.3985028", "0.39818034", "0.3978693", "0.3975602", "0.39696074", "0.39694235", "0.3966908", "0.396213", "0.3952308", "0.39301473", "0.39251038", "0.39003882", "0.38986522", "0.38940105", "0.38927877", "0.38787127", "0.38735703", "0.38701537", "0.38690707", "0.38671866", "0.38666627", "0.38579535", "0.38490036", "0.38451412", "0.38437226", "0.3830831", "0.3829701", "0.38278383", "0.38233182", "0.38212234", "0.38208693", "0.38202208", "0.38071632", "0.38047817" ]
0.82968676
0
$ANTLR end "rule__RefOpenAction__Alternatives" $ANTLR start "rule__JvmTypeReference__Alternatives" InternalCsv.g:756:1: rule__JvmTypeReference__Alternatives : ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) );
public final void rule__JvmTypeReference__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) ) int alt6=2; int LA6_0 = input.LA(1); if ( (LA6_0==RULE_ID) ) { alt6=1; } else if ( (LA6_0==18||LA6_0==29) ) { alt6=2; } else { if (state.backtracking>0) {state.failed=true; return ;} NoViableAltException nvae = new NoViableAltException("", 6, 0, input); throw nvae; } switch (alt6) { case 1 : // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) ) { // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) ) // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); } // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 ) // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0 { pushFollow(FOLLOW_2); rule__JvmTypeReference__Group_0__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); } } } break; case 2 : // InternalCsv.g:767:2: ( ruleXFunctionTypeRef ) { // InternalCsv.g:767:2: ( ruleXFunctionTypeRef ) // InternalCsv.g:768:3: ruleXFunctionTypeRef { if ( state.backtracking==0 ) { before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); } pushFollow(FOLLOW_2); ruleXFunctionTypeRef(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); } } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3444:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt40=2;\r\n int LA40_0 = input.LA(1);\r\n\r\n if ( (LA40_0==RULE_ID) ) {\r\n alt40=1;\r\n }\r\n else if ( (LA40_0==31||LA40_0==76) ) {\r\n alt40=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 40, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt40) {\r\n case 1 :\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // InternalDroneScript.g:3446:3: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:3447:3: ( rule__JvmTypeReference__Group_0__0 )\r\n // InternalDroneScript.g:3447:4: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n {\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n // InternalDroneScript.g:3452:3: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3088:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt33=2;\r\n int LA33_0 = input.LA(1);\r\n\r\n if ( (LA33_0==RULE_ID) ) {\r\n alt33=1;\r\n }\r\n else if ( (LA33_0==26||LA33_0==106) ) {\r\n alt33=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 33, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt33) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3090:1: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:1: ( rule__JvmTypeReference__Group_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:2: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0__0_in_rule__JvmTypeReference__Alternatives6706);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3096:1: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives6724);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1973:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1975:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:2: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference4153);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1861:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1863:1: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:1: ( rule__JvmTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:2: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3913);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1576:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1578:1: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:1: ( rule__JvmTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:2: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3306);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2400:1: ( ( ruleJvmParameterizedTypeReference ) | ( ruleXFunctionTypeRef ) )\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==RULE_ID) ) {\n alt22=1;\n }\n else if ( (LA22_0==44||LA22_0==63) ) {\n alt22=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 22, 0, input);\n\n throw nvae;\n }\n switch (alt22) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2402:1: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Alternatives5182);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2408:1: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives5199);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2000:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2002:3: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2003:3: ( rule__JvmTypeReference__Alternatives )\r\n // InternalDroneScript.g:2003:4: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1882:1: ( ( () ) )\n // InternalCsv.g:1883:1: ( () )\n {\n // InternalCsv.g:1883:1: ( () )\n // InternalCsv.g:1884:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \n }\n // InternalCsv.g:1885:2: ()\n // InternalCsv.g:1885:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2880:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // InternalCsv.g:2882:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // InternalCsv.g:2883:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==35||LA23_0==37) ) {\n alt23=1;\n }\n switch (alt23) {\n case 1 :\n // InternalCsv.g:2883:3: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15319:1: ( ( () ) )\r\n // InternalDroneScript.g:15320:1: ( () )\r\n {\r\n // InternalDroneScript.g:15320:1: ( () )\r\n // InternalDroneScript.g:15321:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \r\n }\r\n // InternalDroneScript.g:15322:2: ()\r\n // InternalDroneScript.g:15322:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15820:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15821:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15821:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15822:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15823:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15825:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:802:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==35) ) {\n alt8=1;\n }\n else if ( (LA8_0==37) ) {\n alt8=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n {\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n // InternalCsv.g:804:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n // InternalCsv.g:805:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n // InternalCsv.g:805:4: rule__JvmWildcardTypeReference__Group_2_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n {\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n // InternalCsv.g:810:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n // InternalCsv.g:811:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n // InternalCsv.g:811:4: rule__JvmWildcardTypeReference__Group_2_1__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4115:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4117:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16317:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // InternalDroneScript.g:16319:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:16320:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt125=2;\r\n int LA125_0 = input.LA(1);\r\n\r\n if ( (LA125_0==45||LA125_0==49) ) {\r\n alt125=1;\r\n }\r\n switch (alt125) {\r\n case 1 :\r\n // InternalDroneScript.g:16320:3: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16574:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16576:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt106=2;\r\n int LA106_0 = input.LA(1);\r\n\r\n if ( (LA106_0==39||LA106_0==126) ) {\r\n alt106=1;\r\n }\r\n switch (alt106) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:2: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl33455);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11725:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11727:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==31||LA73_0==65) ) {\n alt73=1;\n }\n switch (alt73) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:2: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl23519);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3897:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3899:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3912:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3913:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3913:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3914:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3882:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3884:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2157:2: ( ( ( rule__AstType__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2159:1: ( rule__AstType__Alternatives )\n {\n before(grammarAccess.getAstTypeAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:1: ( rule__AstType__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:2: rule__AstType__Alternatives\n {\n pushFollow(FOLLOW_rule__AstType__Alternatives_in_ruleAstType4547);\n rule__AstType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13473:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13475:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_2_127078);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstTypeDefinition__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6828:1: ( ( ( rule__AstTypeDefinition__Alternatives_4 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6829:1: ( ( rule__AstTypeDefinition__Alternatives_4 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6829:1: ( ( rule__AstTypeDefinition__Alternatives_4 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6830:1: ( rule__AstTypeDefinition__Alternatives_4 )\n {\n before(grammarAccess.getAstTypeDefinitionAccess().getAlternatives_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6831:1: ( rule__AstTypeDefinition__Alternatives_4 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6831:2: rule__AstTypeDefinition__Alternatives_4\n {\n pushFollow(FOLLOW_rule__AstTypeDefinition__Alternatives_4_in_rule__AstTypeDefinition__Group__4__Impl14197);\n rule__AstTypeDefinition__Alternatives_4();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeDefinitionAccess().getAlternatives_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3486:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\r\n int alt42=2;\r\n int LA42_0 = input.LA(1);\r\n\r\n if ( (LA42_0==45) ) {\r\n alt42=1;\r\n }\r\n else if ( (LA42_0==49) ) {\r\n alt42=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt42) {\r\n case 1 :\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n // InternalDroneScript.g:3488:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n // InternalDroneScript.g:3489:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n // InternalDroneScript.g:3489:4: rule__JvmWildcardTypeReference__Group_2_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n {\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n // InternalDroneScript.g:3494:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n // InternalDroneScript.g:3495:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n // InternalDroneScript.g:3495:4: rule__JvmWildcardTypeReference__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13458:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13460:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_127047);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__AstType__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20132:1: ( ( ( rule__AstType__Alternatives_0_1 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20133:1: ( ( rule__AstType__Alternatives_0_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20133:1: ( ( rule__AstType__Alternatives_0_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20134:1: ( rule__AstType__Alternatives_0_1 )\n {\n before(grammarAccess.getAstTypeAccess().getAlternatives_0_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20135:1: ( rule__AstType__Alternatives_0_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20135:2: rule__AstType__Alternatives_0_1\n {\n pushFollow(FOLLOW_rule__AstType__Alternatives_0_1_in_rule__AstType__Group_0__1__Impl40393);\n rule__AstType__Alternatives_0_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getAlternatives_0_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstBuiltInType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2129:2: ( ( ( rule__AstBuiltInType__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2130:1: ( ( rule__AstBuiltInType__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2130:1: ( ( rule__AstBuiltInType__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2131:1: ( rule__AstBuiltInType__Alternatives )\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2132:1: ( rule__AstBuiltInType__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2132:2: rule__AstBuiltInType__Alternatives\n {\n pushFollow(FOLLOW_rule__AstBuiltInType__Alternatives_in_ruleAstBuiltInType4487);\n rule__AstBuiltInType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstBuiltInTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19473:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19475:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13488:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13489:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13489:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13490:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ReturnTypeAssignment_227109);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19225:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19227:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleRefOpenAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:167:2: ( ( ( rule__RefOpenAction__Alternatives ) ) )\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n {\n // InternalCsv.g:168:2: ( ( rule__RefOpenAction__Alternatives ) )\n // InternalCsv.g:169:3: ( rule__RefOpenAction__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n // InternalCsv.g:170:3: ( rule__RefOpenAction__Alternatives )\n // InternalCsv.g:170:4: rule__RefOpenAction__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__RefOpenAction__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getRefOpenActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAlgoType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:391:2: ( ( ( rule__AlgoType__Alternatives ) ) )\n // InternalMLRegression.g:392:2: ( ( rule__AlgoType__Alternatives ) )\n {\n // InternalMLRegression.g:392:2: ( ( rule__AlgoType__Alternatives ) )\n // InternalMLRegression.g:393:3: ( rule__AlgoType__Alternatives )\n {\n before(grammarAccess.getAlgoTypeAccess().getAlternatives()); \n // InternalMLRegression.g:394:3: ( rule__AlgoType__Alternatives )\n // InternalMLRegression.g:394:4: rule__AlgoType__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__AlgoType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAlgoTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:664:1: ( ( ruleOpenCSV ) | ( ruleRefOpenAction ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==20) ) {\n alt2=1;\n }\n else if ( ((LA2_0>=23 && LA2_0<=26)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n {\n // InternalCsv.g:665:2: ( ruleOpenCSV )\n // InternalCsv.g:666:3: ruleOpenCSV\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleOpenCSV();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getOpenCSVParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n {\n // InternalCsv.g:671:2: ( ruleRefOpenAction )\n // InternalCsv.g:672:3: ruleRefOpenAction\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleRefOpenAction();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getRefOpenActionParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19240:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19242:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13085:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13087:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_126284);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstBuiltInType__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3261:1: ( ( 'int' ) | ( 'uint' ) | ( 'float' ) | ( 'bool' ) | ( 'List' ) | ( 'string' ) | ( 'byte' ) | ( 'short' ) )\n int alt27=8;\n switch ( input.LA(1) ) {\n case 38:\n {\n alt27=1;\n }\n break;\n case 39:\n {\n alt27=2;\n }\n break;\n case 40:\n {\n alt27=3;\n }\n break;\n case 41:\n {\n alt27=4;\n }\n break;\n case 42:\n {\n alt27=5;\n }\n break;\n case 43:\n {\n alt27=6;\n }\n break;\n case 44:\n {\n alt27=7;\n }\n break;\n case 45:\n {\n alt27=8;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 27, 0, input);\n\n throw nvae;\n }\n\n switch (alt27) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3262:1: ( 'int' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3262:1: ( 'int' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3263:1: 'int'\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getIntKeyword_0()); \n match(input,38,FOLLOW_38_in_rule__AstBuiltInType__Alternatives7097); \n after(grammarAccess.getAstBuiltInTypeAccess().getIntKeyword_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3270:6: ( 'uint' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3270:6: ( 'uint' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3271:1: 'uint'\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getUintKeyword_1()); \n match(input,39,FOLLOW_39_in_rule__AstBuiltInType__Alternatives7117); \n after(grammarAccess.getAstBuiltInTypeAccess().getUintKeyword_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3278:6: ( 'float' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3278:6: ( 'float' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3279:1: 'float'\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getFloatKeyword_2()); \n match(input,40,FOLLOW_40_in_rule__AstBuiltInType__Alternatives7137); \n after(grammarAccess.getAstBuiltInTypeAccess().getFloatKeyword_2()); \n\n }\n\n\n }\n break;\n case 4 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3286:6: ( 'bool' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3286:6: ( 'bool' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3287:1: 'bool'\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getBoolKeyword_3()); \n match(input,41,FOLLOW_41_in_rule__AstBuiltInType__Alternatives7157); \n after(grammarAccess.getAstBuiltInTypeAccess().getBoolKeyword_3()); \n\n }\n\n\n }\n break;\n case 5 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3294:6: ( 'List' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3294:6: ( 'List' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3295:1: 'List'\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getListKeyword_4()); \n match(input,42,FOLLOW_42_in_rule__AstBuiltInType__Alternatives7177); \n after(grammarAccess.getAstBuiltInTypeAccess().getListKeyword_4()); \n\n }\n\n\n }\n break;\n case 6 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3302:6: ( 'string' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3302:6: ( 'string' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3303:1: 'string'\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getStringKeyword_5()); \n match(input,43,FOLLOW_43_in_rule__AstBuiltInType__Alternatives7197); \n after(grammarAccess.getAstBuiltInTypeAccess().getStringKeyword_5()); \n\n }\n\n\n }\n break;\n case 7 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3310:6: ( 'byte' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3310:6: ( 'byte' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3311:1: 'byte'\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getByteKeyword_6()); \n match(input,44,FOLLOW_44_in_rule__AstBuiltInType__Alternatives7217); \n after(grammarAccess.getAstBuiltInTypeAccess().getByteKeyword_6()); \n\n }\n\n\n }\n break;\n case 8 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3318:6: ( 'short' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3318:6: ( 'short' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3319:1: 'short'\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getShortKeyword_7()); \n match(input,45,FOLLOW_45_in_rule__AstBuiltInType__Alternatives7237); \n after(grammarAccess.getAstBuiltInTypeAccess().getShortKeyword_7()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19012:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19013:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19013:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19014:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_138427);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19255:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19256:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19257:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18997:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18998:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18998:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18999:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_1_038396);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19458:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19460:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "TypeReference getTypeReference();", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13070:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13072:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_126253);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19443:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19445:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ReturnTypeAssignment_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19027:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19028:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19028:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19029:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ReturnTypeAssignment_238458);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getReturnTypeJvmTypeReferenceParserRuleCall_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__AstType__Alternatives_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3357:1: ( ( ( rule__AstType__Group_0_1_0__0 ) ) | ( ( rule__AstType__Group_0_1_1__0 ) ) | ( ( rule__AstType__Group_0_1_2__0 ) ) )\n int alt29=3;\n switch ( input.LA(1) ) {\n case 38:\n case 39:\n case 40:\n case 41:\n case 42:\n case 43:\n case 44:\n case 45:\n {\n alt29=1;\n }\n break;\n case RULE_ID:\n {\n alt29=2;\n }\n break;\n case 81:\n {\n alt29=3;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 29, 0, input);\n\n throw nvae;\n }\n\n switch (alt29) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3358:1: ( ( rule__AstType__Group_0_1_0__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3358:1: ( ( rule__AstType__Group_0_1_0__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3359:1: ( rule__AstType__Group_0_1_0__0 )\n {\n before(grammarAccess.getAstTypeAccess().getGroup_0_1_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3360:1: ( rule__AstType__Group_0_1_0__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3360:2: rule__AstType__Group_0_1_0__0\n {\n pushFollow(FOLLOW_rule__AstType__Group_0_1_0__0_in_rule__AstType__Alternatives_0_17321);\n rule__AstType__Group_0_1_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getGroup_0_1_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3364:6: ( ( rule__AstType__Group_0_1_1__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3364:6: ( ( rule__AstType__Group_0_1_1__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3365:1: ( rule__AstType__Group_0_1_1__0 )\n {\n before(grammarAccess.getAstTypeAccess().getGroup_0_1_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3366:1: ( rule__AstType__Group_0_1_1__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3366:2: rule__AstType__Group_0_1_1__0\n {\n pushFollow(FOLLOW_rule__AstType__Group_0_1_1__0_in_rule__AstType__Alternatives_0_17339);\n rule__AstType__Group_0_1_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getGroup_0_1_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3370:6: ( ( rule__AstType__Group_0_1_2__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3370:6: ( ( rule__AstType__Group_0_1_2__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3371:1: ( rule__AstType__Group_0_1_2__0 )\n {\n before(grammarAccess.getAstTypeAccess().getGroup_0_1_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3372:1: ( rule__AstType__Group_0_1_2__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3372:2: rule__AstType__Group_0_1_2__0\n {\n pushFollow(FOLLOW_rule__AstType__Group_0_1_2__0_in_rule__AstType__Alternatives_0_17357);\n rule__AstType__Group_0_1_2__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getGroup_0_1_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AlgoType__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:796:1: ( ( ruleLineRegress ) | ( ruleSVR ) | ( ruleDecisionTreeRegressor ) )\n int alt5=3;\n switch ( input.LA(1) ) {\n case 11:\n {\n alt5=1;\n }\n break;\n case 13:\n {\n alt5=2;\n }\n break;\n case 12:\n {\n alt5=3;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 5, 0, input);\n\n throw nvae;\n }\n\n switch (alt5) {\n case 1 :\n // InternalMLRegression.g:797:2: ( ruleLineRegress )\n {\n // InternalMLRegression.g:797:2: ( ruleLineRegress )\n // InternalMLRegression.g:798:3: ruleLineRegress\n {\n before(grammarAccess.getAlgoTypeAccess().getLineRegressParserRuleCall_0()); \n pushFollow(FOLLOW_2);\n ruleLineRegress();\n\n state._fsp--;\n\n after(grammarAccess.getAlgoTypeAccess().getLineRegressParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // InternalMLRegression.g:803:2: ( ruleSVR )\n {\n // InternalMLRegression.g:803:2: ( ruleSVR )\n // InternalMLRegression.g:804:3: ruleSVR\n {\n before(grammarAccess.getAlgoTypeAccess().getSVRParserRuleCall_1()); \n pushFollow(FOLLOW_2);\n ruleSVR();\n\n state._fsp--;\n\n after(grammarAccess.getAlgoTypeAccess().getSVRParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // InternalMLRegression.g:809:2: ( ruleDecisionTreeRegressor )\n {\n // InternalMLRegression.g:809:2: ( ruleDecisionTreeRegressor )\n // InternalMLRegression.g:810:3: ruleDecisionTreeRegressor\n {\n before(grammarAccess.getAlgoTypeAccess().getDecisionTreeRegressorParserRuleCall_2()); \n pushFollow(FOLLOW_2);\n ruleDecisionTreeRegressor();\n\n state._fsp--;\n\n after(grammarAccess.getAlgoTypeAccess().getDecisionTreeRegressorParserRuleCall_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1827:1: ( ( ( rule__JvmTypeReference__Group_0_1__0 )* ) )\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n {\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n // InternalCsv.g:1829:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n // InternalCsv.g:1830:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n loop14:\n do {\n int alt14=2;\n int LA14_0 = input.LA(1);\n\n if ( (LA14_0==27) ) {\n alt14=1;\n }\n\n\n switch (alt14) {\n \tcase 1 :\n \t // InternalCsv.g:1830:3: rule__JvmTypeReference__Group_0_1__0\n \t {\n \t pushFollow(FOLLOW_24);\n \t rule__JvmTypeReference__Group_0_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop14;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1789:1: ( rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1 )\n // InternalCsv.g:1790:2: rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1870:1: ( rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1 )\n // InternalCsv.g:1871:2: rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LiteralType__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4178:1: ( ( ( rule__LiteralType__Group_0__0 ) ) | ( ( rule__LiteralType__ArraytypeAssignment_1 ) ) | ( ( rule__LiteralType__Group_2__0 ) ) | ( ( rule__LiteralType__SlicetypeAssignment_3 ) ) | ( ( rule__LiteralType__MaptypeAssignment_4 ) ) | ( ( rule__LiteralType__TypenameAssignment_5 ) ) )\r\n int alt42=6;\r\n switch ( input.LA(1) ) {\r\n case 56:\r\n {\r\n alt42=1;\r\n }\r\n break;\r\n case 54:\r\n {\r\n switch ( input.LA(2) ) {\r\n case RULE_STRING:\r\n case RULE_ID:\r\n case RULE_DECIMALS:\r\n case RULE_FLOAT_LIT:\r\n case RULE_UNARY_OP:\r\n case RULE_LITERAL_TYPE:\r\n case RULE_INT_LIT:\r\n case RULE_BOOLEAN_LIT:\r\n case 45:\r\n case 46:\r\n case 48:\r\n case 51:\r\n case 52:\r\n case 54:\r\n case 56:\r\n case 60:\r\n case 61:\r\n case 62:\r\n case 63:\r\n {\r\n alt42=2;\r\n }\r\n break;\r\n case 59:\r\n {\r\n alt42=3;\r\n }\r\n break;\r\n case 55:\r\n {\r\n alt42=4;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 2, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n }\r\n break;\r\n case 61:\r\n {\r\n alt42=5;\r\n }\r\n break;\r\n case RULE_ID:\r\n case 46:\r\n {\r\n alt42=6;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt42) {\r\n case 1 :\r\n // InternalGo.g:4179:2: ( ( rule__LiteralType__Group_0__0 ) )\r\n {\r\n // InternalGo.g:4179:2: ( ( rule__LiteralType__Group_0__0 ) )\r\n // InternalGo.g:4180:3: ( rule__LiteralType__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getGroup_0()); \r\n }\r\n // InternalGo.g:4181:3: ( rule__LiteralType__Group_0__0 )\r\n // InternalGo.g:4181:4: rule__LiteralType__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4185:2: ( ( rule__LiteralType__ArraytypeAssignment_1 ) )\r\n {\r\n // InternalGo.g:4185:2: ( ( rule__LiteralType__ArraytypeAssignment_1 ) )\r\n // InternalGo.g:4186:3: ( rule__LiteralType__ArraytypeAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getArraytypeAssignment_1()); \r\n }\r\n // InternalGo.g:4187:3: ( rule__LiteralType__ArraytypeAssignment_1 )\r\n // InternalGo.g:4187:4: rule__LiteralType__ArraytypeAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__ArraytypeAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getArraytypeAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalGo.g:4191:2: ( ( rule__LiteralType__Group_2__0 ) )\r\n {\r\n // InternalGo.g:4191:2: ( ( rule__LiteralType__Group_2__0 ) )\r\n // InternalGo.g:4192:3: ( rule__LiteralType__Group_2__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getGroup_2()); \r\n }\r\n // InternalGo.g:4193:3: ( rule__LiteralType__Group_2__0 )\r\n // InternalGo.g:4193:4: rule__LiteralType__Group_2__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__Group_2__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getGroup_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 4 :\r\n // InternalGo.g:4197:2: ( ( rule__LiteralType__SlicetypeAssignment_3 ) )\r\n {\r\n // InternalGo.g:4197:2: ( ( rule__LiteralType__SlicetypeAssignment_3 ) )\r\n // InternalGo.g:4198:3: ( rule__LiteralType__SlicetypeAssignment_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getSlicetypeAssignment_3()); \r\n }\r\n // InternalGo.g:4199:3: ( rule__LiteralType__SlicetypeAssignment_3 )\r\n // InternalGo.g:4199:4: rule__LiteralType__SlicetypeAssignment_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__SlicetypeAssignment_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getSlicetypeAssignment_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 5 :\r\n // InternalGo.g:4203:2: ( ( rule__LiteralType__MaptypeAssignment_4 ) )\r\n {\r\n // InternalGo.g:4203:2: ( ( rule__LiteralType__MaptypeAssignment_4 ) )\r\n // InternalGo.g:4204:3: ( rule__LiteralType__MaptypeAssignment_4 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getMaptypeAssignment_4()); \r\n }\r\n // InternalGo.g:4205:3: ( rule__LiteralType__MaptypeAssignment_4 )\r\n // InternalGo.g:4205:4: rule__LiteralType__MaptypeAssignment_4\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__MaptypeAssignment_4();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getMaptypeAssignment_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 6 :\r\n // InternalGo.g:4209:2: ( ( rule__LiteralType__TypenameAssignment_5 ) )\r\n {\r\n // InternalGo.g:4209:2: ( ( rule__LiteralType__TypenameAssignment_5 ) )\r\n // InternalGo.g:4210:3: ( rule__LiteralType__TypenameAssignment_5 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getTypenameAssignment_5()); \r\n }\r\n // InternalGo.g:4211:3: ( rule__LiteralType__TypenameAssignment_5 )\r\n // InternalGo.g:4211:4: rule__LiteralType__TypenameAssignment_5\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__TypenameAssignment_5();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getTypenameAssignment_5()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18751:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18753:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__Group_4__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9189:1: ( ( ( rule__XFeatureCall__Alternatives_4_1 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9190:1: ( ( rule__XFeatureCall__Alternatives_4_1 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9190:1: ( ( rule__XFeatureCall__Alternatives_4_1 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9191:1: ( rule__XFeatureCall__Alternatives_4_1 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getAlternatives_4_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9192:1: ( rule__XFeatureCall__Alternatives_4_1 )?\n int alt59=2;\n int LA59_0 = input.LA(1);\n\n if ( ((LA59_0>=RULE_ID && LA59_0<=RULE_STRING)||LA59_0==20||(LA59_0>=23 && LA59_0<=24)||LA59_0==29||(LA59_0>=31 && LA59_0<=32)||LA59_0==35||(LA59_0>=41 && LA59_0<=42)||(LA59_0>=44 && LA59_0<=45)||LA59_0==47||(LA59_0>=51 && LA59_0<=53)||(LA59_0>=55 && LA59_0<=60)||LA59_0==63||LA59_0==69) ) {\n alt59=1;\n }\n switch (alt59) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:9192:2: rule__XFeatureCall__Alternatives_4_1\n {\n pushFollow(FOLLOW_rule__XFeatureCall__Alternatives_4_1_in_rule__XFeatureCall__Group_4__1__Impl18542);\n rule__XFeatureCall__Alternatives_4_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getAlternatives_4_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Type__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3218:1: ( ( ( rule__Type__Group_0__0 ) ) | ( ( rule__Type__Tp2Assignment_1 ) ) | ( ( rule__Type__Group_2__0 ) ) )\r\n int alt6=3;\r\n switch ( input.LA(1) ) {\r\n case RULE_LITERAL_TYPE:\r\n {\r\n alt6=1;\r\n }\r\n break;\r\n case 45:\r\n case 48:\r\n case 54:\r\n case 56:\r\n case 60:\r\n case 61:\r\n case 62:\r\n case 63:\r\n {\r\n alt6=2;\r\n }\r\n break;\r\n case 52:\r\n {\r\n alt6=3;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 6, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt6) {\r\n case 1 :\r\n // InternalGo.g:3219:2: ( ( rule__Type__Group_0__0 ) )\r\n {\r\n // InternalGo.g:3219:2: ( ( rule__Type__Group_0__0 ) )\r\n // InternalGo.g:3220:3: ( rule__Type__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeAccess().getGroup_0()); \r\n }\r\n // InternalGo.g:3221:3: ( rule__Type__Group_0__0 )\r\n // InternalGo.g:3221:4: rule__Type__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Type__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3225:2: ( ( rule__Type__Tp2Assignment_1 ) )\r\n {\r\n // InternalGo.g:3225:2: ( ( rule__Type__Tp2Assignment_1 ) )\r\n // InternalGo.g:3226:3: ( rule__Type__Tp2Assignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeAccess().getTp2Assignment_1()); \r\n }\r\n // InternalGo.g:3227:3: ( rule__Type__Tp2Assignment_1 )\r\n // InternalGo.g:3227:4: rule__Type__Tp2Assignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Type__Tp2Assignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeAccess().getTp2Assignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalGo.g:3231:2: ( ( rule__Type__Group_2__0 ) )\r\n {\r\n // InternalGo.g:3231:2: ( ( rule__Type__Group_2__0 ) )\r\n // InternalGo.g:3232:3: ( rule__Type__Group_2__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeAccess().getGroup_2()); \r\n }\r\n // InternalGo.g:3233:3: ( rule__Type__Group_2__0 )\r\n // InternalGo.g:3233:4: rule__Type__Group_2__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Type__Group_2__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeAccess().getGroup_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstType__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3335:1: ( ( ( rule__AstType__Group_0__0 ) ) | ( ruleAstTypeTuple ) )\n int alt28=2;\n int LA28_0 = input.LA(1);\n\n if ( (LA28_0==RULE_ID||(LA28_0>=38 && LA28_0<=45)||LA28_0==81) ) {\n alt28=1;\n }\n else if ( (LA28_0==58) ) {\n alt28=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 28, 0, input);\n\n throw nvae;\n }\n switch (alt28) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3336:1: ( ( rule__AstType__Group_0__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3336:1: ( ( rule__AstType__Group_0__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3337:1: ( rule__AstType__Group_0__0 )\n {\n before(grammarAccess.getAstTypeAccess().getGroup_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3338:1: ( rule__AstType__Group_0__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3338:2: rule__AstType__Group_0__0\n {\n pushFollow(FOLLOW_rule__AstType__Group_0__0_in_rule__AstType__Alternatives7271);\n rule__AstType__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getGroup_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3342:6: ( ruleAstTypeTuple )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3342:6: ( ruleAstTypeTuple )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3343:1: ruleAstTypeTuple\n {\n before(grammarAccess.getAstTypeAccess().getAstTypeTupleParserRuleCall_1()); \n pushFollow(FOLLOW_ruleAstTypeTuple_in_rule__AstType__Alternatives7289);\n ruleAstTypeTuple();\n\n state._fsp--;\n\n after(grammarAccess.getAstTypeAccess().getAstTypeTupleParserRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18549:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18551:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_137478);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:91:2: ( ( ( rule__Type__Alternatives ) ) )\n // InternalMyDsl.g:92:2: ( ( rule__Type__Alternatives ) )\n {\n // InternalMyDsl.g:92:2: ( ( rule__Type__Alternatives ) )\n // InternalMyDsl.g:93:3: ( rule__Type__Alternatives )\n {\n before(grammarAccess.getTypeAccess().getAlternatives()); \n // InternalMyDsl.g:94:3: ( rule__Type__Alternatives )\n // InternalMyDsl.g:94:4: rule__Type__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Type__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18564:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18566:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_137509);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13221:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13223:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_126561);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19151:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19153:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_138714);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstExpressionLiteral__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3132:1: ( ( ruleAstExpressionBoolean ) | ( ruleAstExpressionFloat ) | ( ruleAstExpressionInteger ) | ( ruleAstExpressionString ) )\n int alt22=4;\n switch ( input.LA(1) ) {\n case RULE_BOOL:\n {\n alt22=1;\n }\n break;\n case RULE_INT:\n {\n int LA22_2 = input.LA(2);\n\n if ( (LA22_2==55) ) {\n alt22=2;\n }\n else if ( (LA22_2==EOF||(LA22_2>=14 && LA22_2<=33)||LA22_2==49||(LA22_2>=51 && LA22_2<=52)||(LA22_2>=59 && LA22_2<=60)||(LA22_2>=62 && LA22_2<=63)||LA22_2==69||LA22_2==73||(LA22_2>=78 && LA22_2<=79)||LA22_2==82||(LA22_2>=87 && LA22_2<=88)||(LA22_2>=92 && LA22_2<=94)) ) {\n alt22=3;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 22, 2, input);\n\n throw nvae;\n }\n }\n break;\n case 55:\n {\n alt22=2;\n }\n break;\n case RULE_EXP_INT:\n case RULE_HEX:\n {\n alt22=3;\n }\n break;\n case RULE_STRING:\n {\n alt22=4;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 22, 0, input);\n\n throw nvae;\n }\n\n switch (alt22) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3133:1: ( ruleAstExpressionBoolean )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3133:1: ( ruleAstExpressionBoolean )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3134:1: ruleAstExpressionBoolean\n {\n before(grammarAccess.getAstExpressionLiteralAccess().getAstExpressionBooleanParserRuleCall_0()); \n pushFollow(FOLLOW_ruleAstExpressionBoolean_in_rule__AstExpressionLiteral__Alternatives6797);\n ruleAstExpressionBoolean();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionLiteralAccess().getAstExpressionBooleanParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3139:6: ( ruleAstExpressionFloat )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3139:6: ( ruleAstExpressionFloat )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3140:1: ruleAstExpressionFloat\n {\n before(grammarAccess.getAstExpressionLiteralAccess().getAstExpressionFloatParserRuleCall_1()); \n pushFollow(FOLLOW_ruleAstExpressionFloat_in_rule__AstExpressionLiteral__Alternatives6814);\n ruleAstExpressionFloat();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionLiteralAccess().getAstExpressionFloatParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3145:6: ( ruleAstExpressionInteger )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3145:6: ( ruleAstExpressionInteger )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3146:1: ruleAstExpressionInteger\n {\n before(grammarAccess.getAstExpressionLiteralAccess().getAstExpressionIntegerParserRuleCall_2()); \n pushFollow(FOLLOW_ruleAstExpressionInteger_in_rule__AstExpressionLiteral__Alternatives6831);\n ruleAstExpressionInteger();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionLiteralAccess().getAstExpressionIntegerParserRuleCall_2()); \n\n }\n\n\n }\n break;\n case 4 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3151:6: ( ruleAstExpressionString )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3151:6: ( ruleAstExpressionString )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3152:1: ruleAstExpressionString\n {\n before(grammarAccess.getAstExpressionLiteralAccess().getAstExpressionStringParserRuleCall_3()); \n pushFollow(FOLLOW_ruleAstExpressionString_in_rule__AstExpressionLiteral__Alternatives6848);\n ruleAstExpressionString();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionLiteralAccess().getAstExpressionStringParserRuleCall_3()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstTypeParam__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3385:1: ( ( ( rule__AstTypeParam__Group_0__0 ) ) | ( ( rule__AstTypeParam__Group_1__0 ) ) )\n int alt30=2;\n int LA30_0 = input.LA(1);\n\n if ( (LA30_0==RULE_ID) ) {\n int LA30_1 = input.LA(2);\n\n if ( (LA30_1==19) ) {\n alt30=1;\n }\n else if ( (LA30_1==51) ) {\n alt30=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 30, 1, input);\n\n throw nvae;\n }\n }\n else if ( (LA30_0==46) ) {\n alt30=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 30, 0, input);\n\n throw nvae;\n }\n switch (alt30) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3386:1: ( ( rule__AstTypeParam__Group_0__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3386:1: ( ( rule__AstTypeParam__Group_0__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3387:1: ( rule__AstTypeParam__Group_0__0 )\n {\n before(grammarAccess.getAstTypeParamAccess().getGroup_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3388:1: ( rule__AstTypeParam__Group_0__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3388:2: rule__AstTypeParam__Group_0__0\n {\n pushFollow(FOLLOW_rule__AstTypeParam__Group_0__0_in_rule__AstTypeParam__Alternatives7390);\n rule__AstTypeParam__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeParamAccess().getGroup_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3392:6: ( ( rule__AstTypeParam__Group_1__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3392:6: ( ( rule__AstTypeParam__Group_1__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3393:1: ( rule__AstTypeParam__Group_1__0 )\n {\n before(grammarAccess.getAstTypeParamAccess().getGroup_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3394:1: ( rule__AstTypeParam__Group_1__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3394:2: rule__AstTypeParam__Group_1__0\n {\n pushFollow(FOLLOW_rule__AstTypeParam__Group_1__0_in_rule__AstTypeParam__Alternatives7408);\n rule__AstTypeParam__Group_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeParamAccess().getGroup_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__Group_1_1_0_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6016:1: ( ( ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6017:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6017:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6018:1: ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_0_0_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6019:1: ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6019:2: rule__XMemberFeatureCall__Alternatives_1_1_0_0_1\n {\n pushFollow(FOLLOW_rule__XMemberFeatureCall__Alternatives_1_1_0_0_1_in_rule__XMemberFeatureCall__Group_1_1_0_0__1__Impl12305);\n rule__XMemberFeatureCall__Alternatives_1_1_0_0_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_0_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19428:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19430:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleCalculateType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:516:2: ( ( ( rule__CalculateType__Alternatives ) ) )\n // InternalMLRegression.g:517:2: ( ( rule__CalculateType__Alternatives ) )\n {\n // InternalMLRegression.g:517:2: ( ( rule__CalculateType__Alternatives ) )\n // InternalMLRegression.g:518:3: ( rule__CalculateType__Alternatives )\n {\n before(grammarAccess.getCalculateTypeAccess().getAlternatives()); \n // InternalMLRegression.g:519:3: ( rule__CalculateType__Alternatives )\n // InternalMLRegression.g:519:4: rule__CalculateType__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__CalculateType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getCalculateTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "List<LightweightTypeReference> getTypeArguments();", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12574:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12576:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_125232);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__Group_1_1_3__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6268:1: ( ( ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6269:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6269:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6270:1: ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_3_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6271:1: ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )?\n int alt42=2;\n int LA42_0 = input.LA(1);\n\n if ( ((LA42_0>=RULE_ID && LA42_0<=RULE_STRING)||LA42_0==20||(LA42_0>=23 && LA42_0<=24)||LA42_0==29||(LA42_0>=31 && LA42_0<=32)||LA42_0==35||(LA42_0>=41 && LA42_0<=42)||(LA42_0>=44 && LA42_0<=45)||LA42_0==47||(LA42_0>=51 && LA42_0<=53)||(LA42_0>=55 && LA42_0<=60)||LA42_0==63||LA42_0==69) ) {\n alt42=1;\n }\n switch (alt42) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6271:2: rule__XMemberFeatureCall__Alternatives_1_1_3_1\n {\n pushFollow(FOLLOW_rule__XMemberFeatureCall__Alternatives_1_1_3_1_in_rule__XMemberFeatureCall__Group_1_1_3__1__Impl12802);\n rule__XMemberFeatureCall__Alternatives_1_1_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_3_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13597:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13599:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_127334);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__Group_1_0_0_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:8211:1: ( ( ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 ) ) )\r\n // InternalDroneScript.g:8212:1: ( ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 ) )\r\n {\r\n // InternalDroneScript.g:8212:1: ( ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 ) )\r\n // InternalDroneScript.g:8213:2: ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_0_0_0_1()); \r\n }\r\n // InternalDroneScript.g:8214:2: ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 )\r\n // InternalDroneScript.g:8214:3: rule__XMemberFeatureCall__Alternatives_1_0_0_0_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XMemberFeatureCall__Alternatives_1_0_0_0_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_0_0_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16911:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n {\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n // InternalDroneScript.g:16913:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n // InternalDroneScript.g:16914:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n // InternalDroneScript.g:16914:3: rule__XImportDeclaration__Alternatives_1_0_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1_0_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__Group_1_1_0_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:8480:1: ( ( ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 ) ) )\r\n // InternalDroneScript.g:8481:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 ) )\r\n {\r\n // InternalDroneScript.g:8481:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 ) )\r\n // InternalDroneScript.g:8482:2: ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_0_0_1()); \r\n }\r\n // InternalDroneScript.g:8483:2: ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 )\r\n // InternalDroneScript.g:8483:3: rule__XMemberFeatureCall__Alternatives_1_1_0_0_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XMemberFeatureCall__Alternatives_1_1_0_0_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_0_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13206:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13208:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_126530);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstTypeParam() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2241:2: ( ( ( rule__AstTypeParam__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2242:1: ( ( rule__AstTypeParam__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2242:1: ( ( rule__AstTypeParam__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2243:1: ( rule__AstTypeParam__Alternatives )\n {\n before(grammarAccess.getAstTypeParamAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2244:1: ( rule__AstTypeParam__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2244:2: rule__AstTypeParam__Alternatives\n {\n pushFollow(FOLLOW_rule__AstTypeParam__Alternatives_in_ruleAstTypeParam4727);\n rule__AstTypeParam__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeParamAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionPostfix__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3086:1: ( ( ruleAstExpressionList ) | ( ruleAstExpressionCall ) | ( ruleAstExpressionIf ) | ( ruleAstExpressionLiteral ) | ( ruleAstExpressionVariable ) | ( ( rule__AstExpressionPostfix__Group_5__0 ) ) )\n int alt21=6;\n switch ( input.LA(1) ) {\n case 81:\n {\n alt21=1;\n }\n break;\n case RULE_ID:\n {\n int LA21_2 = input.LA(2);\n\n if ( (LA21_2==58) ) {\n alt21=2;\n }\n else if ( (LA21_2==EOF||(LA21_2>=14 && LA21_2<=33)||LA21_2==49||(LA21_2>=51 && LA21_2<=52)||LA21_2==55||(LA21_2>=59 && LA21_2<=60)||(LA21_2>=62 && LA21_2<=63)||LA21_2==69||LA21_2==73||(LA21_2>=78 && LA21_2<=79)||(LA21_2>=81 && LA21_2<=82)||(LA21_2>=87 && LA21_2<=88)||(LA21_2>=92 && LA21_2<=94)) ) {\n alt21=5;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 21, 2, input);\n\n throw nvae;\n }\n }\n break;\n case 86:\n {\n alt21=3;\n }\n break;\n case RULE_EXP_INT:\n case RULE_INT:\n case RULE_HEX:\n case RULE_BOOL:\n case RULE_STRING:\n case 55:\n {\n alt21=4;\n }\n break;\n case 58:\n {\n alt21=6;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 21, 0, input);\n\n throw nvae;\n }\n\n switch (alt21) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3087:1: ( ruleAstExpressionList )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3087:1: ( ruleAstExpressionList )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3088:1: ruleAstExpressionList\n {\n before(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionListParserRuleCall_0()); \n pushFollow(FOLLOW_ruleAstExpressionList_in_rule__AstExpressionPostfix__Alternatives6679);\n ruleAstExpressionList();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionListParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3093:6: ( ruleAstExpressionCall )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3093:6: ( ruleAstExpressionCall )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3094:1: ruleAstExpressionCall\n {\n before(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionCallParserRuleCall_1()); \n pushFollow(FOLLOW_ruleAstExpressionCall_in_rule__AstExpressionPostfix__Alternatives6696);\n ruleAstExpressionCall();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionCallParserRuleCall_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3099:6: ( ruleAstExpressionIf )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3099:6: ( ruleAstExpressionIf )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3100:1: ruleAstExpressionIf\n {\n before(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionIfParserRuleCall_2()); \n pushFollow(FOLLOW_ruleAstExpressionIf_in_rule__AstExpressionPostfix__Alternatives6713);\n ruleAstExpressionIf();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionIfParserRuleCall_2()); \n\n }\n\n\n }\n break;\n case 4 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3105:6: ( ruleAstExpressionLiteral )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3105:6: ( ruleAstExpressionLiteral )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3106:1: ruleAstExpressionLiteral\n {\n before(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionLiteralParserRuleCall_3()); \n pushFollow(FOLLOW_ruleAstExpressionLiteral_in_rule__AstExpressionPostfix__Alternatives6730);\n ruleAstExpressionLiteral();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionLiteralParserRuleCall_3()); \n\n }\n\n\n }\n break;\n case 5 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3111:6: ( ruleAstExpressionVariable )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3111:6: ( ruleAstExpressionVariable )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3112:1: ruleAstExpressionVariable\n {\n before(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionVariableParserRuleCall_4()); \n pushFollow(FOLLOW_ruleAstExpressionVariable_in_rule__AstExpressionPostfix__Alternatives6747);\n ruleAstExpressionVariable();\n\n state._fsp--;\n\n after(grammarAccess.getAstExpressionPostfixAccess().getAstExpressionVariableParserRuleCall_4()); \n\n }\n\n\n }\n break;\n case 6 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3117:6: ( ( rule__AstExpressionPostfix__Group_5__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3117:6: ( ( rule__AstExpressionPostfix__Group_5__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3118:1: ( rule__AstExpressionPostfix__Group_5__0 )\n {\n before(grammarAccess.getAstExpressionPostfixAccess().getGroup_5()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3119:1: ( rule__AstExpressionPostfix__Group_5__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3119:2: rule__AstExpressionPostfix__Group_5__0\n {\n pushFollow(FOLLOW_rule__AstExpressionPostfix__Group_5__0_in_rule__AstExpressionPostfix__Alternatives6764);\n rule__AstExpressionPostfix__Group_5__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstExpressionPostfixAccess().getGroup_5()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_2__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11380:1: ( ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11381:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11381:1: ( ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11382:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_2_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11383:1: ( rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11383:2: rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1\n {\n pushFollow(FOLLOW_rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1_in_rule__XFunctionTypeRef__Group_0_2__1__Impl22838);\n rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesAssignment_0_2_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3204:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3206:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3207:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3207:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstTypeDefinitionParameter() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:605:2: ( ( ( rule__AstTypeDefinitionParameter__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:606:1: ( ( rule__AstTypeDefinitionParameter__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:606:1: ( ( rule__AstTypeDefinitionParameter__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:607:1: ( rule__AstTypeDefinitionParameter__Alternatives )\n {\n before(grammarAccess.getAstTypeDefinitionParameterAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:608:1: ( rule__AstTypeDefinitionParameter__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:608:2: rule__AstTypeDefinitionParameter__Alternatives\n {\n pushFollow(FOLLOW_rule__AstTypeDefinitionParameter__Alternatives_in_ruleAstTypeDefinitionParameter1234);\n rule__AstTypeDefinitionParameter__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeDefinitionParameterAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleEvaluationType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:291:2: ( ( ( rule__EvaluationType__Alternatives ) ) )\n // InternalMLRegression.g:292:2: ( ( rule__EvaluationType__Alternatives ) )\n {\n // InternalMLRegression.g:292:2: ( ( rule__EvaluationType__Alternatives ) )\n // InternalMLRegression.g:293:3: ( rule__EvaluationType__Alternatives )\n {\n before(grammarAccess.getEvaluationTypeAccess().getAlternatives()); \n // InternalMLRegression.g:294:3: ( rule__EvaluationType__Alternatives )\n // InternalMLRegression.g:294:4: rule__EvaluationType__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__EvaluationType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getEvaluationTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3995:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3997:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstTypeDefinition__Alternatives_4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2642:1: ( ( ( rule__AstTypeDefinition__Group_4_0__0 ) ) | ( ( rule__AstTypeDefinition__TypeAssignment_4_1 ) ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==RULE_ID) ) {\n int LA8_1 = input.LA(2);\n\n if ( (LA8_1==58) ) {\n switch ( input.LA(3) ) {\n case RULE_ID:\n {\n int LA8_4 = input.LA(4);\n\n if ( (LA8_4==19||LA8_4==51) ) {\n alt8=2;\n }\n else if ( (LA8_4==RULE_ID||LA8_4==58||LA8_4==81) ) {\n alt8=1;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 4, input);\n\n throw nvae;\n }\n }\n break;\n case 46:\n {\n alt8=2;\n }\n break;\n case 38:\n case 39:\n case 40:\n case 41:\n case 42:\n case 43:\n case 44:\n case 45:\n case 58:\n case 59:\n case 81:\n case 91:\n {\n alt8=1;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 3, input);\n\n throw nvae;\n }\n\n }\n else if ( (LA8_1==49||LA8_1==81) ) {\n alt8=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 1, input);\n\n throw nvae;\n }\n }\n else if ( ((LA8_0>=38 && LA8_0<=45)||LA8_0==58||LA8_0==81) ) {\n alt8=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2643:1: ( ( rule__AstTypeDefinition__Group_4_0__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2643:1: ( ( rule__AstTypeDefinition__Group_4_0__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2644:1: ( rule__AstTypeDefinition__Group_4_0__0 )\n {\n before(grammarAccess.getAstTypeDefinitionAccess().getGroup_4_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2645:1: ( rule__AstTypeDefinition__Group_4_0__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2645:2: rule__AstTypeDefinition__Group_4_0__0\n {\n pushFollow(FOLLOW_rule__AstTypeDefinition__Group_4_0__0_in_rule__AstTypeDefinition__Alternatives_45649);\n rule__AstTypeDefinition__Group_4_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeDefinitionAccess().getGroup_4_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2649:6: ( ( rule__AstTypeDefinition__TypeAssignment_4_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2649:6: ( ( rule__AstTypeDefinition__TypeAssignment_4_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2650:1: ( rule__AstTypeDefinition__TypeAssignment_4_1 )\n {\n before(grammarAccess.getAstTypeDefinitionAccess().getTypeAssignment_4_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2651:1: ( rule__AstTypeDefinition__TypeAssignment_4_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2651:2: rule__AstTypeDefinition__TypeAssignment_4_1\n {\n pushFollow(FOLLOW_rule__AstTypeDefinition__TypeAssignment_4_1_in_rule__AstTypeDefinition__Alternatives_45667);\n rule__AstTypeDefinition__TypeAssignment_4_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeDefinitionAccess().getTypeAssignment_4_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2206:1: ( ( ',' ) )\n // InternalCsv.g:2207:1: ( ',' )\n {\n // InternalCsv.g:2207:1: ( ',' )\n // InternalCsv.g:2208:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getCommaKeyword_0_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.73695713", "0.72714436", "0.72425085", "0.71626025", "0.6864531", "0.6808165", "0.6650738", "0.6579922", "0.65784496", "0.65388554", "0.6508389", "0.6352558", "0.6165076", "0.60410744", "0.5992867", "0.58256406", "0.5799194", "0.5680512", "0.5597608", "0.5564138", "0.54452544", "0.5418826", "0.5400907", "0.54007316", "0.5383562", "0.53240687", "0.5323117", "0.5307199", "0.53054476", "0.53001225", "0.523302", "0.52253294", "0.51781476", "0.51393455", "0.50975895", "0.5090176", "0.5079915", "0.5073322", "0.5042228", "0.5036059", "0.49816453", "0.49776116", "0.49669325", "0.49644718", "0.4962364", "0.4939871", "0.4925297", "0.49230313", "0.49222258", "0.48875692", "0.4882771", "0.48532778", "0.48333", "0.4815937", "0.4810784", "0.48029336", "0.4801681", "0.47874516", "0.4782644", "0.47816887", "0.47757027", "0.47715145", "0.47657844", "0.47493538", "0.47414362", "0.47342095", "0.47281575", "0.4716797", "0.4713608", "0.47072092", "0.47015277", "0.47006866", "0.4689041", "0.46823752", "0.4671019", "0.46546188", "0.46333903", "0.46325508", "0.46169668", "0.46130383", "0.4610656", "0.46017897", "0.45987996", "0.45987487", "0.45904574", "0.45901307", "0.458725", "0.458563", "0.458202", "0.4581817", "0.45785192", "0.45768374", "0.4576018", "0.45741236", "0.45719993", "0.4571152", "0.45594844", "0.45578393", "0.45545027", "0.45507008" ]
0.7936958
0
$ANTLR end "rule__JvmTypeReference__Alternatives" $ANTLR start "rule__JvmArgumentTypeReference__Alternatives" InternalCsv.g:777:1: rule__JvmArgumentTypeReference__Alternatives : ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) );
public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) ) int alt7=2; int LA7_0 = input.LA(1); if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) { alt7=1; } else if ( (LA7_0==34) ) { alt7=2; } else { if (state.backtracking>0) {state.failed=true; return ;} NoViableAltException nvae = new NoViableAltException("", 7, 0, input); throw nvae; } switch (alt7) { case 1 : // InternalCsv.g:782:2: ( ruleJvmTypeReference ) { // InternalCsv.g:782:2: ( ruleJvmTypeReference ) // InternalCsv.g:783:3: ruleJvmTypeReference { if ( state.backtracking==0 ) { before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); } pushFollow(FOLLOW_2); ruleJvmTypeReference(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); } } } break; case 2 : // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference ) { // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference ) // InternalCsv.g:789:3: ruleJvmWildcardTypeReference { if ( state.backtracking==0 ) { before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); } pushFollow(FOLLOW_2); ruleJvmWildcardTypeReference(); state._fsp--; if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); } } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1973:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1975:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:2: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference4153);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2000:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2002:3: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2003:3: ( rule__JvmTypeReference__Alternatives )\r\n // InternalDroneScript.g:2003:4: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1861:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1863:1: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:1: ( rule__JvmTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:2: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3913);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1576:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1578:1: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:1: ( rule__JvmTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:2: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3306);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2400:1: ( ( ruleJvmParameterizedTypeReference ) | ( ruleXFunctionTypeRef ) )\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==RULE_ID) ) {\n alt22=1;\n }\n else if ( (LA22_0==44||LA22_0==63) ) {\n alt22=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 22, 0, input);\n\n throw nvae;\n }\n switch (alt22) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2402:1: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Alternatives5182);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2408:1: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives5199);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2880:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // InternalCsv.g:2882:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // InternalCsv.g:2883:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==35||LA23_0==37) ) {\n alt23=1;\n }\n switch (alt23) {\n case 1 :\n // InternalCsv.g:2883:3: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16317:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // InternalDroneScript.g:16319:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:16320:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt125=2;\r\n int LA125_0 = input.LA(1);\r\n\r\n if ( (LA125_0==45||LA125_0==49) ) {\r\n alt125=1;\r\n }\r\n switch (alt125) {\r\n case 1 :\r\n // InternalDroneScript.g:16320:3: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11725:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11727:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==31||LA73_0==65) ) {\n alt73=1;\n }\n switch (alt73) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:2: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl23519);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:280:1: ( ruleJvmTypeReference EOF )\n // InternalCsv.g:281:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16574:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16576:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt106=2;\r\n int LA106_0 = input.LA(1);\r\n\r\n if ( (LA106_0==39||LA106_0==126) ) {\r\n alt106=1;\r\n }\r\n switch (alt106) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:2: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl33455);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3961:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3963:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4115:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4116:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4117:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3946:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3948:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13537:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13539:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_127210);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13522:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13523:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13524:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_127179);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13085:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13087:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_126284);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19473:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19474:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19475:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3995:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3997:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19289:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19290:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19291:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18751:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18752:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18753:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13221:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13222:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13223:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_126561);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19304:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19306:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject entryRuleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject iv_ruleJvmArgumentTypeReference = null;\n\n\n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2705:2: (iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2706:2: iv_ruleJvmArgumentTypeReference= ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference6342);\n iv_ruleJvmArgumentTypeReference=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n current =iv_ruleJvmArgumentTypeReference; \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference6352); if (state.failed) return current;\n\n }\n\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4010:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:4012:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13206:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13207:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13208:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_126530);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19076:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19077:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19078:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_138559);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:1988:1: ( ruleJvmTypeReference EOF )\r\n // InternalDroneScript.g:1989:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13070:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13071:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13072:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_126253);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19353:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19354:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19355:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18736:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18737:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18738:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17872:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17873:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17874:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:802:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==35) ) {\n alt8=1;\n }\n else if ( (LA8_0==37) ) {\n alt8=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n {\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n // InternalCsv.g:804:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n // InternalCsv.g:805:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n // InternalCsv.g:805:4: rule__JvmWildcardTypeReference__Group_2_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n {\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n // InternalCsv.g:810:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n // InternalCsv.g:811:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n // InternalCsv.g:811:4: rule__JvmWildcardTypeReference__Group_2_1__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18898:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18899:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18900:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19061:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19062:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19063:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_138528);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3486:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\r\n int alt42=2;\r\n int LA42_0 = input.LA(1);\r\n\r\n if ( (LA42_0==45) ) {\r\n alt42=1;\r\n }\r\n else if ( (LA42_0==49) ) {\r\n alt42=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt42) {\r\n case 1 :\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n // InternalDroneScript.g:3488:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n // InternalDroneScript.g:3489:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n // InternalDroneScript.g:3489:4: rule__JvmWildcardTypeReference__Group_2_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n {\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n // InternalDroneScript.g:3494:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n // InternalDroneScript.g:3495:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n // InternalDroneScript.g:3495:4: rule__JvmWildcardTypeReference__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3088:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt33=2;\r\n int LA33_0 = input.LA(1);\r\n\r\n if ( (LA33_0==RULE_ID) ) {\r\n alt33=1;\r\n }\r\n else if ( (LA33_0==26||LA33_0==106) ) {\r\n alt33=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 33, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt33) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3090:1: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:1: ( rule__JvmTypeReference__Group_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:2: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0__0_in_rule__JvmTypeReference__Alternatives6706);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3096:1: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives6724);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19338:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19339:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19340:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4085:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4086:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4087:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19443:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19444:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19445:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2444:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) ) | ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) ) )\n int alt24=2;\n int LA24_0 = input.LA(1);\n\n if ( (LA24_0==65) ) {\n alt24=1;\n }\n else if ( (LA24_0==31) ) {\n alt24=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 24, 0, input);\n\n throw nvae;\n }\n switch (alt24) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2445:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2445:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2446:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2447:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2447:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_in_rule__JvmWildcardTypeReference__Alternatives_25280);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2451:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2451:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2452:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2453:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2453:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_in_rule__JvmWildcardTypeReference__Alternatives_25298);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17857:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:17858:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:17859:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3444:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt40=2;\r\n int LA40_0 = input.LA(1);\r\n\r\n if ( (LA40_0==RULE_ID) ) {\r\n alt40=1;\r\n }\r\n else if ( (LA40_0==31||LA40_0==76) ) {\r\n alt40=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 40, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt40) {\r\n case 1 :\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // InternalDroneScript.g:3446:3: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:3447:3: ( rule__JvmTypeReference__Group_0__0 )\r\n // InternalDroneScript.g:3447:4: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n {\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n // InternalDroneScript.g:3452:3: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18549:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18550:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18551:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_137478);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12574:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12575:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12576:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_125232);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3132:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) ) | ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) ) )\r\n int alt35=2;\r\n int LA35_0 = input.LA(1);\r\n\r\n if ( (LA35_0==126) ) {\r\n alt35=1;\r\n }\r\n else if ( (LA35_0==39) ) {\r\n alt35=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 35, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt35) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3134:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_in_rule__JvmWildcardTypeReference__Alternatives_26805);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3140:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_in_rule__JvmWildcardTypeReference__Alternatives_26823);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18564:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18565:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18566:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_137509);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:18883:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:18884:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:18885:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18715:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18716:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18717:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_2_137817);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19458:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19459:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19460:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12559:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12560:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:12561:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_125201);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XConstructorCall__TypeArgumentsAssignment_3_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18700:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18701:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:18702:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XConstructorCall__TypeArgumentsAssignment_3_137786);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXConstructorCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_3_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17819:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17820:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17821:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_2_135984);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13597:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13598:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13599:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_127334);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13612:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13613:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13614:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_127365);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17804:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17805:1: ( ruleJvmArgumentTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:17806:1: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XMemberFeatureCall__TypeArgumentsAssignment_1_1_1_135953);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19428:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19429:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19430:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "List<LightweightTypeReference> getTypeArguments();", "public final EObject ruleJvmParameterizedTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n Token otherlv_3=null;\n Token otherlv_5=null;\n EObject lv_arguments_2_0 = null;\n\n EObject lv_arguments_4_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2631:28: ( ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:1: ( ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) ) ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2632:2: ( ( ruleQualifiedName ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2633:1: ( ruleQualifiedName )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2634:3: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n\n \t\t\tif (current==null) {\n \t current = createModelElement(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \n }\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getTypeJvmTypeCrossReference_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleQualifiedName_in_ruleJvmParameterizedTypeReference6213);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:2: ( ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>' )?\n int alt36=2;\n alt36 = dfa36.predict(input);\n switch (alt36) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' ) ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) ) (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )* otherlv_5= '>'\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:3: ( ( '<' )=>otherlv_1= '<' )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2647:4: ( '<' )=>otherlv_1= '<'\n {\n otherlv_1=(Token)match(input,56,FOLLOW_56_in_ruleJvmParameterizedTypeReference6234); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmParameterizedTypeReferenceAccess().getLessThanSignKeyword_1_0());\n \n }\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2652:2: ( (lv_arguments_2_0= ruleJvmArgumentTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2653:1: (lv_arguments_2_0= ruleJvmArgumentTypeReference )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2654:3: lv_arguments_2_0= ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6256);\n lv_arguments_2_0=ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"arguments\",\n \t\tlv_arguments_2_0, \n \t\t\"JvmArgumentTypeReference\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:2: (otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) ) )*\n loop35:\n do {\n int alt35=2;\n int LA35_0 = input.LA(1);\n\n if ( (LA35_0==55) ) {\n alt35=1;\n }\n\n\n switch (alt35) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2670:4: otherlv_3= ',' ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t {\n \t otherlv_3=(Token)match(input,55,FOLLOW_55_in_ruleJvmParameterizedTypeReference6269); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0());\n \t \n \t }\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2674:1: ( (lv_arguments_4_0= ruleJvmArgumentTypeReference ) )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2675:1: (lv_arguments_4_0= ruleJvmArgumentTypeReference )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2676:3: lv_arguments_4_0= ruleJvmArgumentTypeReference\n \t {\n \t if ( state.backtracking==0 ) {\n \t \n \t \t newCompositeNode(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n \t \t \n \t }\n \t pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_ruleJvmParameterizedTypeReference6290);\n \t lv_arguments_4_0=ruleJvmArgumentTypeReference();\n\n \t state._fsp--;\n \t if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \t if (current==null) {\n \t \t current = createModelElementForParent(grammarAccess.getJvmParameterizedTypeReferenceRule());\n \t \t }\n \t \t\tadd(\n \t \t\t\tcurrent, \n \t \t\t\t\"arguments\",\n \t \t\tlv_arguments_4_0, \n \t \t\t\"JvmArgumentTypeReference\");\n \t \t afterParserOrEnumRuleCall();\n \t \t \n \t }\n\n \t }\n\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop35;\n }\n } while (true);\n\n otherlv_5=(Token)match(input,57,FOLLOW_57_in_ruleJvmParameterizedTypeReference6304); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_5, grammarAccess.getJvmParameterizedTypeReferenceAccess().getGreaterThanSignKeyword_1_3());\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleAstType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2157:2: ( ( ( rule__AstType__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2158:1: ( ( rule__AstType__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2159:1: ( rule__AstType__Alternatives )\n {\n before(grammarAccess.getAstTypeAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:1: ( rule__AstType__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2160:2: rule__AstType__Alternatives\n {\n pushFollow(FOLLOW_rule__AstType__Alternatives_in_ruleAstType4547);\n rule__AstType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19136:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19137:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19138:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBoundAnded__TypeReferenceAssignment_138683);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3897:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3898:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3899:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstBuiltInType() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2129:2: ( ( ( rule__AstBuiltInType__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2130:1: ( ( rule__AstBuiltInType__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2130:1: ( ( rule__AstBuiltInType__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2131:1: ( rule__AstBuiltInType__Alternatives )\n {\n before(grammarAccess.getAstBuiltInTypeAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2132:1: ( rule__AstBuiltInType__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2132:2: rule__AstBuiltInType__Alternatives\n {\n pushFollow(FOLLOW_rule__AstBuiltInType__Alternatives_in_ruleAstBuiltInType4487);\n rule__AstBuiltInType__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstBuiltInTypeAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1564:1: ( ruleJvmTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1565:1: ruleJvmTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3273);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3280); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1849:1: ( ruleJvmTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1850:1: ruleJvmTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_entryRuleJvmTypeReference3880);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmTypeReference3887); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19151:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19152:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19153:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmLowerBound__TypeReferenceAssignment_138714);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmLowerBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:355:1: ( ruleJvmParameterizedTypeReference EOF )\n // InternalCsv.g:356:1: ruleJvmParameterizedTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final EObject ruleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n EObject lv_constraints_2_0 = null;\n\n EObject lv_constraints_3_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2756:28: ( ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2758:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,26,FOLLOW_26_in_ruleJvmWildcardTypeReference6517); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:1: ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n int alt38=3;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==58) ) {\n alt38=1;\n }\n else if ( (LA38_0==59) ) {\n alt38=2;\n }\n switch (alt38) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2769:3: lv_constraints_2_0= ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_ruleJvmWildcardTypeReference6539);\n lv_constraints_2_0=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_2_0, \n \t\t\"JvmUpperBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2788:3: lv_constraints_3_0= ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_ruleJvmWildcardTypeReference6566);\n lv_constraints_3_0=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_3_0, \n \t\t\"JvmLowerBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__PrimaryJointType__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1789:1: ( ( ruleJointTypeReference ) | ( ruleBasicJointType ) )\n int alt9=2;\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==RULE_ID) ) {\n alt9=1;\n }\n else if ( (LA9_0==38||LA9_0==40) ) {\n alt9=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 9, 0, input);\n\n throw nvae;\n }\n switch (alt9) {\n case 1 :\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1790:1: ( ruleJointTypeReference )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1790:1: ( ruleJointTypeReference )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1791:1: ruleJointTypeReference\n {\n before(grammarAccess.getPrimaryJointTypeAccess().getJointTypeReferenceParserRuleCall_0()); \n pushFollow(FOLLOW_ruleJointTypeReference_in_rule__PrimaryJointType__Alternatives3796);\n ruleJointTypeReference();\n\n state._fsp--;\n\n after(grammarAccess.getPrimaryJointTypeAccess().getJointTypeReferenceParserRuleCall_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1796:6: ( ruleBasicJointType )\n {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1796:6: ( ruleBasicJointType )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:1797:1: ruleBasicJointType\n {\n before(grammarAccess.getPrimaryJointTypeAccess().getBasicJointTypeParserRuleCall_1()); \n pushFollow(FOLLOW_ruleBasicJointType_in_rule__PrimaryJointType__Alternatives3813);\n ruleBasicJointType();\n\n state._fsp--;\n\n after(grammarAccess.getPrimaryJointTypeAccess().getBasicJointTypeParserRuleCall_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_2=null;\n Token otherlv_3=null;\n EObject this_JvmParameterizedTypeReference_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2584:28: ( (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2585:1: (this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )* )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2586:5: this_JvmParameterizedTypeReference_0= ruleJvmParameterizedTypeReference ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_ruleJvmTypeReference6066);\n this_JvmParameterizedTypeReference_0=ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmParameterizedTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:1: ( ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' ) )*\n loop34:\n do {\n int alt34=2;\n int LA34_0 = input.LA(1);\n\n if ( (LA34_0==46) ) {\n int LA34_2 = input.LA(2);\n\n if ( (LA34_2==47) ) {\n int LA34_3 = input.LA(3);\n\n if ( (synpred11_InternalJavaJRExpression()) ) {\n alt34=1;\n }\n\n\n }\n\n\n }\n\n\n switch (alt34) {\n \tcase 1 :\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2594:2: ( ( () '[' ']' ) )=> ( () otherlv_2= '[' otherlv_3= ']' )\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:5: ( () otherlv_2= '[' otherlv_3= ']' )\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: () otherlv_2= '[' otherlv_3= ']'\n \t {\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2597:6: ()\n \t // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2598:5: \n \t {\n \t if ( state.backtracking==0 ) {\n\n \t current = forceCreateModelElementAndSet(\n \t grammarAccess.getJvmTypeReferenceAccess().getJvmGenericArrayTypeReferenceComponentTypeAction_1_0_0(),\n \t current);\n \t \n \t }\n\n \t }\n\n \t otherlv_2=(Token)match(input,46,FOLLOW_46_in_ruleJvmTypeReference6104); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_2, grammarAccess.getJvmTypeReferenceAccess().getLeftSquareBracketKeyword_1_0_1());\n \t \n \t }\n \t otherlv_3=(Token)match(input,47,FOLLOW_47_in_ruleJvmTypeReference6116); if (state.failed) return current;\n \t if ( state.backtracking==0 ) {\n\n \t \tnewLeafNode(otherlv_3, grammarAccess.getJvmTypeReferenceAccess().getRightSquareBracketKeyword_1_0_2());\n \t \n \t }\n\n \t }\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop34;\n }\n } while (true);\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleAstTypeParam() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2241:2: ( ( ( rule__AstTypeParam__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2242:1: ( ( rule__AstTypeParam__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2242:1: ( ( rule__AstTypeParam__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2243:1: ( rule__AstTypeParam__Alternatives )\n {\n before(grammarAccess.getAstTypeParamAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2244:1: ( rule__AstTypeParam__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2244:2: rule__AstTypeParam__Alternatives\n {\n pushFollow(FOLLOW_rule__AstTypeParam__Alternatives_in_ruleAstTypeParam4727);\n rule__AstTypeParam__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeParamAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19240:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19241:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19242:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13582:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13583:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13584:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_127303);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13473:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13474:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13475:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_2_127078);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstTypeDefinitionParameter() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:605:2: ( ( ( rule__AstTypeDefinitionParameter__Alternatives ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:606:1: ( ( rule__AstTypeDefinitionParameter__Alternatives ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:606:1: ( ( rule__AstTypeDefinitionParameter__Alternatives ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:607:1: ( rule__AstTypeDefinitionParameter__Alternatives )\n {\n before(grammarAccess.getAstTypeDefinitionParameterAccess().getAlternatives()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:608:1: ( rule__AstTypeDefinitionParameter__Alternatives )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:608:2: rule__AstTypeDefinitionParameter__Alternatives\n {\n pushFollow(FOLLOW_rule__AstTypeDefinitionParameter__Alternatives_in_ruleAstTypeDefinitionParameter1234);\n rule__AstTypeDefinitionParameter__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeDefinitionParameterAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleArguments() throws RecognitionException {\n\n \t\tHiddenTokens myHiddenTokenState = ((XtextTokenStream)input).setHiddenTokens(\"RULE_ML_COMMENT\", \"RULE_SL_COMMENT\", \"RULE_WS\");\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:800:2: ( ( ( rule__Arguments__Alternatives ) ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:801:1: ( ( rule__Arguments__Alternatives ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:801:1: ( ( rule__Arguments__Alternatives ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:802:1: ( rule__Arguments__Alternatives )\n {\n before(grammarAccess.getArgumentsAccess().getAlternatives()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:803:1: ( rule__Arguments__Alternatives )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:803:2: rule__Arguments__Alternatives\n {\n pushFollow(FOLLOW_rule__Arguments__Alternatives_in_ruleArguments1482);\n rule__Arguments__Alternatives();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getArgumentsAccess().getAlternatives()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n \tmyHiddenTokenState.restore();\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3882:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:3883:2: ( ruleJvmTypeReference )\n // InternalCsv.g:3884:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__XRelationalExpression__TypeAssignment_1_0_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:17547:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:17548:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:17548:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:17549:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXRelationalExpressionAccess().getTypeJvmTypeReferenceParserRuleCall_1_0_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBound__TypeReferenceAssignment_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19121:1: ( ( ruleJvmTypeReference ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19122:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:19123:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmUpperBound__TypeReferenceAssignment_138652);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmUpperBoundAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19225:1: ( ( ruleJvmTypeReference ) )\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:19226:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:19227:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFunctionTypeRef__ParamTypesAssignment_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13458:1: ( ( ruleJvmTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13459:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13460:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__XFunctionTypeRef__ParamTypesAssignment_0_127047);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFunctionTypeRefAccess().getParamTypesJvmTypeReferenceParserRuleCall_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmParameterizedTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2063:1: ( ruleJvmParameterizedTypeReference EOF )\r\n // InternalDroneScript.g:2064:1: ruleJvmParameterizedTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmParameterizedTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }" ]
[ "0.8269319", "0.78183186", "0.78157973", "0.77882826", "0.77872956", "0.77869177", "0.7777761", "0.7712141", "0.7284067", "0.70796615", "0.69924885", "0.6895324", "0.6721665", "0.6574642", "0.65545905", "0.6436442", "0.64072144", "0.6233834", "0.62235487", "0.6105947", "0.5986534", "0.5979166", "0.59705156", "0.5970429", "0.5960561", "0.5948946", "0.5913049", "0.59116536", "0.5908694", "0.58799136", "0.5849529", "0.58372414", "0.583643", "0.58151025", "0.5798237", "0.578612", "0.57783246", "0.5770297", "0.57416016", "0.5735283", "0.572555", "0.5714441", "0.57104266", "0.5696547", "0.569412", "0.5691509", "0.56892484", "0.5688415", "0.56518203", "0.5642209", "0.5634421", "0.56308514", "0.56268144", "0.56252694", "0.5615845", "0.5610526", "0.5602629", "0.55984473", "0.5580625", "0.55775464", "0.55721724", "0.5549619", "0.55434895", "0.5542715", "0.5534495", "0.55298793", "0.55220824", "0.54373735", "0.5414828", "0.536673", "0.53552663", "0.53434396", "0.5312737", "0.5283698", "0.5254006", "0.52529794", "0.5249677", "0.52436763", "0.5233185", "0.52264154", "0.52237946", "0.5198162", "0.5185648", "0.51270115", "0.51100844", "0.5087986", "0.50666696", "0.5061566", "0.50491565", "0.5009836", "0.49965927", "0.49834156", "0.4964639", "0.49551457", "0.49424508", "0.49171606", "0.49135816", "0.4912086", "0.49026415", "0.48988602" ]
0.8055293
1
$ANTLR end "rule__JvmArgumentTypeReference__Alternatives" $ANTLR start "rule__JvmWildcardTypeReference__Alternatives_2" InternalCsv.g:798:1: rule__JvmWildcardTypeReference__Alternatives_2 : ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) );
public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:802:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) ) int alt8=2; int LA8_0 = input.LA(1); if ( (LA8_0==35) ) { alt8=1; } else if ( (LA8_0==37) ) { alt8=2; } else { if (state.backtracking>0) {state.failed=true; return ;} NoViableAltException nvae = new NoViableAltException("", 8, 0, input); throw nvae; } switch (alt8) { case 1 : // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) { // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) // InternalCsv.g:804:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); } // InternalCsv.g:805:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 ) // InternalCsv.g:805:4: rule__JvmWildcardTypeReference__Group_2_0__0 { pushFollow(FOLLOW_2); rule__JvmWildcardTypeReference__Group_2_0__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); } } } break; case 2 : // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) { // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) // InternalCsv.g:810:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); } // InternalCsv.g:811:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 ) // InternalCsv.g:811:4: rule__JvmWildcardTypeReference__Group_2_1__0 { pushFollow(FOLLOW_2); rule__JvmWildcardTypeReference__Group_2_1__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); } } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2880:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // InternalCsv.g:2882:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // InternalCsv.g:2883:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==35||LA23_0==37) ) {\n alt23=1;\n }\n switch (alt23) {\n case 1 :\n // InternalCsv.g:2883:3: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16317:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // InternalDroneScript.g:16319:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:16320:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt125=2;\r\n int LA125_0 = input.LA(1);\r\n\r\n if ( (LA125_0==45||LA125_0==49) ) {\r\n alt125=1;\r\n }\r\n switch (alt125) {\r\n case 1 :\r\n // InternalDroneScript.g:16320:3: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11725:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11727:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==31||LA73_0==65) ) {\n alt73=1;\n }\n switch (alt73) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:2: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl23519);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16574:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16576:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt106=2;\r\n int LA106_0 = input.LA(1);\r\n\r\n if ( (LA106_0==39||LA106_0==126) ) {\r\n alt106=1;\r\n }\r\n switch (alt106) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:2: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl33455);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3486:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\r\n int alt42=2;\r\n int LA42_0 = input.LA(1);\r\n\r\n if ( (LA42_0==45) ) {\r\n alt42=1;\r\n }\r\n else if ( (LA42_0==49) ) {\r\n alt42=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt42) {\r\n case 1 :\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n // InternalDroneScript.g:3488:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n // InternalDroneScript.g:3489:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n // InternalDroneScript.g:3489:4: rule__JvmWildcardTypeReference__Group_2_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n {\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n // InternalDroneScript.g:3494:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n // InternalDroneScript.g:3495:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n // InternalDroneScript.g:3495:4: rule__JvmWildcardTypeReference__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2444:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) ) | ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) ) )\n int alt24=2;\n int LA24_0 = input.LA(1);\n\n if ( (LA24_0==65) ) {\n alt24=1;\n }\n else if ( (LA24_0==31) ) {\n alt24=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 24, 0, input);\n\n throw nvae;\n }\n switch (alt24) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2445:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2445:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2446:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2447:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2447:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_in_rule__JvmWildcardTypeReference__Alternatives_25280);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2451:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2451:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2452:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2453:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2453:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_in_rule__JvmWildcardTypeReference__Alternatives_25298);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1973:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1975:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:2: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference4153);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3132:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) ) | ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) ) )\r\n int alt35=2;\r\n int LA35_0 = input.LA(1);\r\n\r\n if ( (LA35_0==126) ) {\r\n alt35=1;\r\n }\r\n else if ( (LA35_0==39) ) {\r\n alt35=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 35, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt35) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3134:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_in_rule__JvmWildcardTypeReference__Alternatives_26805);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3140:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_in_rule__JvmWildcardTypeReference__Alternatives_26823);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2950:1: ( rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1 )\n // InternalCsv.g:2951:2: rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2842:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\n // InternalCsv.g:2843:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\n {\n pushFollow(FOLLOW_36);\n rule__JvmWildcardTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2896:1: ( rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1 )\n // InternalCsv.g:2897:2: rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:417:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n {\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n // InternalCsv.g:419:3: ( rule__JvmWildcardTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n // InternalCsv.g:420:3: ( rule__JvmWildcardTypeReference__Group__0 )\n // InternalCsv.g:420:4: rule__JvmWildcardTypeReference__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:405:1: ( ruleJvmWildcardTypeReference EOF )\n // InternalCsv.g:406:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2000:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2002:3: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2003:3: ( rule__JvmTypeReference__Alternatives )\r\n // InternalDroneScript.g:2003:4: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmArgumentTypeReference() throws RecognitionException {\n EObject current = null;\n\n EObject this_JvmTypeReference_0 = null;\n\n EObject this_JvmWildcardTypeReference_1 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2716:28: ( (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2717:1: (this_JvmTypeReference_0= ruleJvmTypeReference | this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference )\n int alt37=2;\n int LA37_0 = input.LA(1);\n\n if ( (LA37_0==RULE_ID) ) {\n alt37=1;\n }\n else if ( (LA37_0==26) ) {\n alt37=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return current;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 37, 0, input);\n\n throw nvae;\n }\n switch (alt37) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2718:5: this_JvmTypeReference_0= ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_ruleJvmArgumentTypeReference6399);\n this_JvmTypeReference_0=ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmTypeReference_0; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2728:5: this_JvmWildcardTypeReference_1= ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n \n newCompositeNode(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_ruleJvmArgumentTypeReference6426);\n this_JvmWildcardTypeReference_1=ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n \n current = this_JvmWildcardTypeReference_1; \n afterParserOrEnumRuleCall();\n \n }\n\n }\n break;\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16387:1: ( rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1 )\r\n // InternalDroneScript.g:16388:2: rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1\r\n {\r\n pushFollow(FOLLOW_110);\r\n rule__JvmWildcardTypeReference__Group_2_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3088:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt33=2;\r\n int LA33_0 = input.LA(1);\r\n\r\n if ( (LA33_0==RULE_ID) ) {\r\n alt33=1;\r\n }\r\n else if ( (LA33_0==26||LA33_0==106) ) {\r\n alt33=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 33, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt33) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3090:1: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:1: ( rule__JvmTypeReference__Group_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:2: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0__0_in_rule__JvmTypeReference__Alternatives6706);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3096:1: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives6724);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1861:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1863:1: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:1: ( rule__JvmTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:2: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3913);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11683:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11684:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1__Impl_in_rule__JvmWildcardTypeReference__Group__123430);\n rule__JvmWildcardTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2_in_rule__JvmWildcardTypeReference__Group__123433);\n rule__JvmWildcardTypeReference__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1576:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1578:1: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:1: ( rule__JvmTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:2: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3306);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2854:1: ( ( '?' ) )\n // InternalCsv.g:2855:1: ( '?' )\n {\n // InternalCsv.g:2855:1: ( '?' )\n // InternalCsv.g:2856:2: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,34,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16333:1: ( rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1 )\r\n // InternalDroneScript.g:16334:2: rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1\r\n {\r\n pushFollow(FOLLOW_110);\r\n rule__JvmWildcardTypeReference__Group_2_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3444:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt40=2;\r\n int LA40_0 = input.LA(1);\r\n\r\n if ( (LA40_0==RULE_ID) ) {\r\n alt40=1;\r\n }\r\n else if ( (LA40_0==31||LA40_0==76) ) {\r\n alt40=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 40, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt40) {\r\n case 1 :\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // InternalDroneScript.g:3446:3: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:3447:3: ( rule__JvmTypeReference__Group_0__0 )\r\n // InternalDroneScript.g:3447:4: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n {\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n // InternalDroneScript.g:3452:3: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2400:1: ( ( ruleJvmParameterizedTypeReference ) | ( ruleXFunctionTypeRef ) )\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==RULE_ID) ) {\n alt22=1;\n }\n else if ( (LA22_0==44||LA22_0==63) ) {\n alt22=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 22, 0, input);\n\n throw nvae;\n }\n switch (alt22) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2401:1: ( ruleJvmParameterizedTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2402:1: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmParameterizedTypeReference_in_rule__JvmTypeReference__Alternatives5182);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2407:6: ( ruleXFunctionTypeRef )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2408:1: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives5199);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1688:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1689:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1689:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1690:1: ( rule__JvmWildcardTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1691:1: ( rule__JvmWildcardTypeReference__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1691:2: rule__JvmWildcardTypeReference__Group__0\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0_in_ruleJvmWildcardTypeReference3546);\n rule__JvmWildcardTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2988:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* ) )\n // InternalCsv.g:2989:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\n {\n // InternalCsv.g:2989:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\n // InternalCsv.g:2990:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \n }\n // InternalCsv.g:2991:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\n loop25:\n do {\n int alt25=2;\n int LA25_0 = input.LA(1);\n\n if ( (LA25_0==36) ) {\n alt25=1;\n }\n\n\n switch (alt25) {\n \tcase 1 :\n \t // InternalCsv.g:2991:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1\n \t {\n \t pushFollow(FOLLOW_38);\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop25;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2125:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\r\n // InternalDroneScript.g:2126:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n {\r\n // InternalDroneScript.g:2126:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n // InternalDroneScript.g:2127:3: ( rule__JvmWildcardTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n // InternalDroneScript.g:2128:3: ( rule__JvmWildcardTypeReference__Group__0 )\r\n // InternalDroneScript.g:2128:4: rule__JvmWildcardTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2815:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // InternalCsv.g:2816:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2934:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* ) )\n // InternalCsv.g:2935:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\n {\n // InternalCsv.g:2935:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\n // InternalCsv.g:2936:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \n }\n // InternalCsv.g:2937:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\n loop24:\n do {\n int alt24=2;\n int LA24_0 = input.LA(1);\n\n if ( (LA24_0==36) ) {\n alt24=1;\n }\n\n\n switch (alt24) {\n \tcase 1 :\n \t // InternalCsv.g:2937:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1\n \t {\n \t pushFollow(FOLLOW_38);\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop24;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16279:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\r\n // InternalDroneScript.g:16280:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\r\n {\r\n pushFollow(FOLLOW_109);\r\n rule__JvmWildcardTypeReference__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleJvmWildcardTypeReference() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_1=null;\n EObject lv_constraints_2_0 = null;\n\n EObject lv_constraints_3_0 = null;\n\n\n enterRule(); \n \n try {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2756:28: ( ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:1: ( () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )? )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: () otherlv_1= '?' ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2757:2: ()\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2758:5: \n {\n if ( state.backtracking==0 ) {\n\n current = forceCreateModelElement(\n grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0(),\n current);\n \n }\n\n }\n\n otherlv_1=(Token)match(input,26,FOLLOW_26_in_ruleJvmWildcardTypeReference6517); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \tnewLeafNode(otherlv_1, grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1());\n \n }\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:1: ( ( (lv_constraints_2_0= ruleJvmUpperBound ) ) | ( (lv_constraints_3_0= ruleJvmLowerBound ) ) )?\n int alt38=3;\n int LA38_0 = input.LA(1);\n\n if ( (LA38_0==58) ) {\n alt38=1;\n }\n else if ( (LA38_0==59) ) {\n alt38=2;\n }\n switch (alt38) {\n case 1 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2767:2: ( (lv_constraints_2_0= ruleJvmUpperBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2768:1: (lv_constraints_2_0= ruleJvmUpperBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2769:3: lv_constraints_2_0= ruleJvmUpperBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundParserRuleCall_2_0_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmUpperBound_in_ruleJvmWildcardTypeReference6539);\n lv_constraints_2_0=ruleJvmUpperBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_2_0, \n \t\t\"JvmUpperBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n case 2 :\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2786:6: ( (lv_constraints_3_0= ruleJvmLowerBound ) )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n {\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2787:1: (lv_constraints_3_0= ruleJvmLowerBound )\n // ../com.jaspersoft.studio.editor.jrexpressions/src-gen/com/jaspersoft/studio/editor/jrexpressions/parser/antlr/internal/InternalJavaJRExpression.g:2788:3: lv_constraints_3_0= ruleJvmLowerBound\n {\n if ( state.backtracking==0 ) {\n \n \t newCompositeNode(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundParserRuleCall_2_1_0()); \n \t \n }\n pushFollow(FOLLOW_ruleJvmLowerBound_in_ruleJvmWildcardTypeReference6566);\n lv_constraints_3_0=ruleJvmLowerBound();\n\n state._fsp--;\n if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t if (current==null) {\n \t current = createModelElementForParent(grammarAccess.getJvmWildcardTypeReferenceRule());\n \t }\n \t\tadd(\n \t\t\tcurrent, \n \t\t\t\"constraints\",\n \t\tlv_constraints_3_0, \n \t\t\"JvmLowerBound\");\n \t afterParserOrEnumRuleCall();\n \t \n }\n\n }\n\n\n }\n\n\n }\n break;\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n leaveRule(); \n }\n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16532:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16533:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1__Impl_in_rule__JvmWildcardTypeReference__Group__133366);\r\n rule__JvmWildcardTypeReference__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2_in_rule__JvmWildcardTypeReference__Group__133369);\r\n rule__JvmWildcardTypeReference__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2113:1: ( ruleJvmWildcardTypeReference EOF )\r\n // InternalDroneScript.g:2114:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // InternalCsv.g:380:1: ( ruleJvmArgumentTypeReference EOF )\n // InternalCsv.g:381:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_1);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11664:1: ( ( () ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11665:1: ( () )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11665:1: ( () )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11666:1: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11667:1: ()\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11669:1: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11714:1: ( rule__JvmWildcardTypeReference__Group__2__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11715:2: rule__JvmWildcardTypeReference__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2__Impl_in_rule__JvmWildcardTypeReference__Group__223492);\n rule__JvmWildcardTypeReference__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2869:1: ( rule__JvmWildcardTypeReference__Group__2__Impl )\n // InternalCsv.g:2870:2: rule__JvmWildcardTypeReference__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11652:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11653:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0__Impl_in_rule__JvmWildcardTypeReference__Group__023369);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1_in_rule__JvmWildcardTypeReference__Group__023372);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2962:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) ) )\n // InternalCsv.g:2963:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\n {\n // InternalCsv.g:2963:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\n // InternalCsv.g:2964:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \n }\n // InternalCsv.g:2965:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\n // InternalCsv.g:2965:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2001:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2002:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2002:1: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2003:1: ( rule__JvmWildcardTypeReference__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2004:1: ( rule__JvmWildcardTypeReference__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2004:2: rule__JvmWildcardTypeReference__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0_in_ruleJvmWildcardTypeReference4213);\r\n rule__JvmWildcardTypeReference__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3961:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3962:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3963:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2827:1: ( ( () ) )\n // InternalCsv.g:2828:1: ( () )\n {\n // InternalCsv.g:2828:1: ( () )\n // InternalCsv.g:2829:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n // InternalCsv.g:2830:2: ()\n // InternalCsv.g:2830:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstTypeParam__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3385:1: ( ( ( rule__AstTypeParam__Group_0__0 ) ) | ( ( rule__AstTypeParam__Group_1__0 ) ) )\n int alt30=2;\n int LA30_0 = input.LA(1);\n\n if ( (LA30_0==RULE_ID) ) {\n int LA30_1 = input.LA(2);\n\n if ( (LA30_1==19) ) {\n alt30=1;\n }\n else if ( (LA30_1==51) ) {\n alt30=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 30, 1, input);\n\n throw nvae;\n }\n }\n else if ( (LA30_0==46) ) {\n alt30=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 30, 0, input);\n\n throw nvae;\n }\n switch (alt30) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3386:1: ( ( rule__AstTypeParam__Group_0__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3386:1: ( ( rule__AstTypeParam__Group_0__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3387:1: ( rule__AstTypeParam__Group_0__0 )\n {\n before(grammarAccess.getAstTypeParamAccess().getGroup_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3388:1: ( rule__AstTypeParam__Group_0__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3388:2: rule__AstTypeParam__Group_0__0\n {\n pushFollow(FOLLOW_rule__AstTypeParam__Group_0__0_in_rule__AstTypeParam__Alternatives7390);\n rule__AstTypeParam__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeParamAccess().getGroup_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3392:6: ( ( rule__AstTypeParam__Group_1__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3392:6: ( ( rule__AstTypeParam__Group_1__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3393:1: ( rule__AstTypeParam__Group_1__0 )\n {\n before(grammarAccess.getAstTypeParamAccess().getGroup_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3394:1: ( rule__AstTypeParam__Group_1__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3394:2: rule__AstTypeParam__Group_1__0\n {\n pushFollow(FOLLOW_rule__AstTypeParam__Group_1__0_in_rule__AstTypeParam__Alternatives7408);\n rule__AstTypeParam__Group_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeParamAccess().getGroup_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16291:1: ( ( '?' ) )\r\n // InternalDroneScript.g:16292:1: ( '?' )\r\n {\r\n // InternalDroneScript.g:16292:1: ( '?' )\r\n // InternalDroneScript.g:16293:2: '?'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n match(input,93,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__LiteralType__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4178:1: ( ( ( rule__LiteralType__Group_0__0 ) ) | ( ( rule__LiteralType__ArraytypeAssignment_1 ) ) | ( ( rule__LiteralType__Group_2__0 ) ) | ( ( rule__LiteralType__SlicetypeAssignment_3 ) ) | ( ( rule__LiteralType__MaptypeAssignment_4 ) ) | ( ( rule__LiteralType__TypenameAssignment_5 ) ) )\r\n int alt42=6;\r\n switch ( input.LA(1) ) {\r\n case 56:\r\n {\r\n alt42=1;\r\n }\r\n break;\r\n case 54:\r\n {\r\n switch ( input.LA(2) ) {\r\n case RULE_STRING:\r\n case RULE_ID:\r\n case RULE_DECIMALS:\r\n case RULE_FLOAT_LIT:\r\n case RULE_UNARY_OP:\r\n case RULE_LITERAL_TYPE:\r\n case RULE_INT_LIT:\r\n case RULE_BOOLEAN_LIT:\r\n case 45:\r\n case 46:\r\n case 48:\r\n case 51:\r\n case 52:\r\n case 54:\r\n case 56:\r\n case 60:\r\n case 61:\r\n case 62:\r\n case 63:\r\n {\r\n alt42=2;\r\n }\r\n break;\r\n case 59:\r\n {\r\n alt42=3;\r\n }\r\n break;\r\n case 55:\r\n {\r\n alt42=4;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 2, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n }\r\n break;\r\n case 61:\r\n {\r\n alt42=5;\r\n }\r\n break;\r\n case RULE_ID:\r\n case 46:\r\n {\r\n alt42=6;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt42) {\r\n case 1 :\r\n // InternalGo.g:4179:2: ( ( rule__LiteralType__Group_0__0 ) )\r\n {\r\n // InternalGo.g:4179:2: ( ( rule__LiteralType__Group_0__0 ) )\r\n // InternalGo.g:4180:3: ( rule__LiteralType__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getGroup_0()); \r\n }\r\n // InternalGo.g:4181:3: ( rule__LiteralType__Group_0__0 )\r\n // InternalGo.g:4181:4: rule__LiteralType__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4185:2: ( ( rule__LiteralType__ArraytypeAssignment_1 ) )\r\n {\r\n // InternalGo.g:4185:2: ( ( rule__LiteralType__ArraytypeAssignment_1 ) )\r\n // InternalGo.g:4186:3: ( rule__LiteralType__ArraytypeAssignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getArraytypeAssignment_1()); \r\n }\r\n // InternalGo.g:4187:3: ( rule__LiteralType__ArraytypeAssignment_1 )\r\n // InternalGo.g:4187:4: rule__LiteralType__ArraytypeAssignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__ArraytypeAssignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getArraytypeAssignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalGo.g:4191:2: ( ( rule__LiteralType__Group_2__0 ) )\r\n {\r\n // InternalGo.g:4191:2: ( ( rule__LiteralType__Group_2__0 ) )\r\n // InternalGo.g:4192:3: ( rule__LiteralType__Group_2__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getGroup_2()); \r\n }\r\n // InternalGo.g:4193:3: ( rule__LiteralType__Group_2__0 )\r\n // InternalGo.g:4193:4: rule__LiteralType__Group_2__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__Group_2__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getGroup_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 4 :\r\n // InternalGo.g:4197:2: ( ( rule__LiteralType__SlicetypeAssignment_3 ) )\r\n {\r\n // InternalGo.g:4197:2: ( ( rule__LiteralType__SlicetypeAssignment_3 ) )\r\n // InternalGo.g:4198:3: ( rule__LiteralType__SlicetypeAssignment_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getSlicetypeAssignment_3()); \r\n }\r\n // InternalGo.g:4199:3: ( rule__LiteralType__SlicetypeAssignment_3 )\r\n // InternalGo.g:4199:4: rule__LiteralType__SlicetypeAssignment_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__SlicetypeAssignment_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getSlicetypeAssignment_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 5 :\r\n // InternalGo.g:4203:2: ( ( rule__LiteralType__MaptypeAssignment_4 ) )\r\n {\r\n // InternalGo.g:4203:2: ( ( rule__LiteralType__MaptypeAssignment_4 ) )\r\n // InternalGo.g:4204:3: ( rule__LiteralType__MaptypeAssignment_4 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getMaptypeAssignment_4()); \r\n }\r\n // InternalGo.g:4205:3: ( rule__LiteralType__MaptypeAssignment_4 )\r\n // InternalGo.g:4205:4: rule__LiteralType__MaptypeAssignment_4\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__MaptypeAssignment_4();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getMaptypeAssignment_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 6 :\r\n // InternalGo.g:4209:2: ( ( rule__LiteralType__TypenameAssignment_5 ) )\r\n {\r\n // InternalGo.g:4209:2: ( ( rule__LiteralType__TypenameAssignment_5 ) )\r\n // InternalGo.g:4210:3: ( rule__LiteralType__TypenameAssignment_5 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getLiteralTypeAccess().getTypenameAssignment_5()); \r\n }\r\n // InternalGo.g:4211:3: ( rule__LiteralType__TypenameAssignment_5 )\r\n // InternalGo.g:4211:4: rule__LiteralType__TypenameAssignment_5\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__LiteralType__TypenameAssignment_5();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getLiteralTypeAccess().getTypenameAssignment_5()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11695:1: ( ( '?' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11696:1: ( '?' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11696:1: ( '?' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11697:1: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,64,FOLLOW_64_in_rule__JvmWildcardTypeReference__Group__1__Impl23461); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16252:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\r\n // InternalDroneScript.g:16253:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_61);\r\n rule__JvmWildcardTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16371:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* ) )\r\n // InternalDroneScript.g:16372:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\r\n {\r\n // InternalDroneScript.g:16372:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\r\n // InternalDroneScript.g:16373:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \r\n }\r\n // InternalDroneScript.g:16374:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\r\n loop126:\r\n do {\r\n int alt126=2;\r\n int LA126_0 = input.LA(1);\r\n\r\n if ( (LA126_0==94) ) {\r\n alt126=1;\r\n }\r\n\r\n\r\n switch (alt126) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:16374:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1\r\n \t {\r\n \t pushFollow(FOLLOW_111);\r\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop126;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16306:1: ( rule__JvmWildcardTypeReference__Group__2__Impl )\r\n // InternalDroneScript.g:16307:2: rule__JvmWildcardTypeReference__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2977:1: ( rule__JvmWildcardTypeReference__Group_2_1__1__Impl )\n // InternalCsv.g:2978:2: rule__JvmWildcardTypeReference__Group_2_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16425:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* ) )\r\n // InternalDroneScript.g:16426:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\r\n {\r\n // InternalDroneScript.g:16426:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\r\n // InternalDroneScript.g:16427:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \r\n }\r\n // InternalDroneScript.g:16428:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\r\n loop127:\r\n do {\r\n int alt127=2;\r\n int LA127_0 = input.LA(1);\r\n\r\n if ( (LA127_0==94) ) {\r\n alt127=1;\r\n }\r\n\r\n\r\n switch (alt127) {\r\n \tcase 1 :\r\n \t // InternalDroneScript.g:16428:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1\r\n \t {\r\n \t pushFollow(FOLLOW_111);\r\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop127;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16513:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16514:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16514:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16515:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16516:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16518:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2908:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) ) )\n // InternalCsv.g:2909:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) )\n {\n // InternalCsv.g:2909:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) )\n // InternalCsv.g:2910:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_0()); \n }\n // InternalCsv.g:2911:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 )\n // InternalCsv.g:2911:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16544:1: ( ( '?' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16545:1: ( '?' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16545:1: ( '?' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16546:1: '?'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n match(input,125,FOLLOW_125_in_rule__JvmWildcardTypeReference__Group__1__Impl33397); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16399:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) ) )\r\n // InternalDroneScript.g:16400:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\r\n {\r\n // InternalDroneScript.g:16400:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\r\n // InternalDroneScript.g:16401:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \r\n }\r\n // InternalDroneScript.g:16402:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\r\n // InternalDroneScript.g:16402:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:15886:1: ( ( ',' ) )\r\n // InternalDroneScript.g:15887:1: ( ',' )\r\n {\r\n // InternalDroneScript.g:15887:1: ( ',' )\r\n // InternalDroneScript.g:15888:2: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \r\n }\r\n match(input,53,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmUpperBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4100:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4101:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4102:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmUpperBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3995:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3996:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3997:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16563:1: ( rule__JvmWildcardTypeReference__Group__2__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16564:2: rule__JvmWildcardTypeReference__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__2__Impl_in_rule__JvmWildcardTypeReference__Group__233428);\r\n rule__JvmWildcardTypeReference__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1676:1: ( ruleJvmWildcardTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1677:1: ruleJvmWildcardTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference3513);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference3520); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1648:1: ( ruleJvmArgumentTypeReference EOF )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1649:1: ruleJvmArgumentTypeReference EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference3453);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \n }\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference3460); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16501:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16502:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__0__Impl_in_rule__JvmWildcardTypeReference__Group__033305);\r\n rule__JvmWildcardTypeReference__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Group__1_in_rule__JvmWildcardTypeReference__Group__033308);\r\n rule__JvmWildcardTypeReference__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_4_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4010:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:4011:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:4012:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_4_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==38) ) {\n alt10=1;\n }\n else if ( (LA10_0==RULE_ID) ) {\n alt10=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 10, 0, input);\n\n throw nvae;\n }\n switch (alt10) {\n case 1 :\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n {\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n {\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmWildcardTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1989:1: ( ruleJvmWildcardTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1990:1: ruleJvmWildcardTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_entryRuleJvmWildcardTypeReference4180);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmWildcardTypeReference4187); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16264:1: ( ( () ) )\r\n // InternalDroneScript.g:16265:1: ( () )\r\n {\r\n // InternalDroneScript.g:16265:1: ( () )\r\n // InternalDroneScript.g:16266:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n // InternalDroneScript.g:16267:2: ()\r\n // InternalDroneScript.g:16267:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getJvmWildcardTypeReferenceAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13537:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13538:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13539:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_127210);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1801:1: ( ( ruleJvmParameterizedTypeReference ) )\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n {\n // InternalCsv.g:1802:1: ( ruleJvmParameterizedTypeReference )\n // InternalCsv.g:1803:2: ruleJvmParameterizedTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmParameterizedTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getJvmParameterizedTypeReferenceParserRuleCall_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4040:1: ( ( ruleJvmUpperBoundAnded ) )\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n {\n // InternalCsv.g:4041:2: ( ruleJvmUpperBoundAnded )\n // InternalCsv.g:4042:3: ruleJvmUpperBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmUpperBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmUpperBoundAndedParserRuleCall_2_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2449:1: ( ( ',' ) )\n // InternalCsv.g:2450:1: ( ',' )\n {\n // InternalCsv.g:2450:1: ( ',' )\n // InternalCsv.g:2451:2: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \n }\n match(input,30,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16414:1: ( rule__JvmWildcardTypeReference__Group_2_1__1__Impl )\r\n // InternalDroneScript.g:16415:2: rule__JvmWildcardTypeReference__Group_2_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // InternalDroneScript.g:2088:1: ( ruleJvmArgumentTypeReference EOF )\r\n // InternalDroneScript.g:2089:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_1);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2923:1: ( rule__JvmWildcardTypeReference__Group_2_0__1__Impl )\n // InternalCsv.g:2924:2: rule__JvmWildcardTypeReference__Group_2_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16345:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) ) )\r\n // InternalDroneScript.g:16346:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) )\r\n {\r\n // InternalDroneScript.g:16346:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 ) )\r\n // InternalDroneScript.g:16347:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_0()); \r\n }\r\n // InternalDroneScript.g:16348:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0 )\r\n // InternalDroneScript.g:16348:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11601:1: ( ( ',' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11602:1: ( ',' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11602:1: ( ',' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11603:1: ','\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \n }\n match(input,39,FOLLOW_39_in_rule__JvmParameterizedTypeReference__Group_1_2__0__Impl23277); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getCommaKeyword_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3946:1: ( ( ruleJvmArgumentTypeReference ) )\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n {\n // InternalCsv.g:3947:2: ( ruleJvmArgumentTypeReference )\n // InternalCsv.g:3948:3: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16360:1: ( rule__JvmWildcardTypeReference__Group_2_0__1__Impl )\r\n // InternalDroneScript.g:16361:2: rule__JvmWildcardTypeReference__Group_2_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstType__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20132:1: ( ( ( rule__AstType__Alternatives_0_1 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20133:1: ( ( rule__AstType__Alternatives_0_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20133:1: ( ( rule__AstType__Alternatives_0_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20134:1: ( rule__AstType__Alternatives_0_1 )\n {\n before(grammarAccess.getAstTypeAccess().getAlternatives_0_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20135:1: ( rule__AstType__Alternatives_0_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20135:2: rule__AstType__Alternatives_0_1\n {\n pushFollow(FOLLOW_rule__AstType__Alternatives_0_1_in_rule__AstType__Group_0__1__Impl40393);\n rule__AstType__Alternatives_0_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getAlternatives_0_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2356:1: ( rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3 )\n // InternalCsv.g:2357:2: rule__JvmParameterizedTypeReference__Group_1__2__Impl rule__JvmParameterizedTypeReference__Group_1__3\n {\n pushFollow(FOLLOW_33);\n rule__JvmParameterizedTypeReference__Group_1__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2437:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1 )\n // InternalCsv.g:2438:2: rule__JvmParameterizedTypeReference__Group_1_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_2__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Type__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3218:1: ( ( ( rule__Type__Group_0__0 ) ) | ( ( rule__Type__Tp2Assignment_1 ) ) | ( ( rule__Type__Group_2__0 ) ) )\r\n int alt6=3;\r\n switch ( input.LA(1) ) {\r\n case RULE_LITERAL_TYPE:\r\n {\r\n alt6=1;\r\n }\r\n break;\r\n case 45:\r\n case 48:\r\n case 54:\r\n case 56:\r\n case 60:\r\n case 61:\r\n case 62:\r\n case 63:\r\n {\r\n alt6=2;\r\n }\r\n break;\r\n case 52:\r\n {\r\n alt6=3;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 6, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt6) {\r\n case 1 :\r\n // InternalGo.g:3219:2: ( ( rule__Type__Group_0__0 ) )\r\n {\r\n // InternalGo.g:3219:2: ( ( rule__Type__Group_0__0 ) )\r\n // InternalGo.g:3220:3: ( rule__Type__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeAccess().getGroup_0()); \r\n }\r\n // InternalGo.g:3221:3: ( rule__Type__Group_0__0 )\r\n // InternalGo.g:3221:4: rule__Type__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Type__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3225:2: ( ( rule__Type__Tp2Assignment_1 ) )\r\n {\r\n // InternalGo.g:3225:2: ( ( rule__Type__Tp2Assignment_1 ) )\r\n // InternalGo.g:3226:3: ( rule__Type__Tp2Assignment_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeAccess().getTp2Assignment_1()); \r\n }\r\n // InternalGo.g:3227:3: ( rule__Type__Tp2Assignment_1 )\r\n // InternalGo.g:3227:4: rule__Type__Tp2Assignment_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Type__Tp2Assignment_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeAccess().getTp2Assignment_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalGo.g:3231:2: ( ( rule__Type__Group_2__0 ) )\r\n {\r\n // InternalGo.g:3231:2: ( ( rule__Type__Group_2__0 ) )\r\n // InternalGo.g:3232:3: ( rule__Type__Group_2__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getTypeAccess().getGroup_2()); \r\n }\r\n // InternalGo.g:3233:3: ( rule__Type__Group_2__0 )\r\n // InternalGo.g:3233:4: rule__Type__Group_2__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Type__Group_2__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getTypeAccess().getGroup_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Arguments__Group_2__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:14381:1: ( ( ( rule__Arguments__Alternatives_2_0 ) ) )\r\n // InternalGo.g:14382:1: ( ( rule__Arguments__Alternatives_2_0 ) )\r\n {\r\n // InternalGo.g:14382:1: ( ( rule__Arguments__Alternatives_2_0 ) )\r\n // InternalGo.g:14383:2: ( rule__Arguments__Alternatives_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getArgumentsAccess().getAlternatives_2_0()); \r\n }\r\n // InternalGo.g:14384:2: ( rule__Arguments__Alternatives_2_0 )\r\n // InternalGo.g:14384:3: rule__Arguments__Alternatives_2_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Arguments__Alternatives_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getArgumentsAccess().getAlternatives_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19304:1: ( ( ruleJvmArgumentTypeReference ) )\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n {\r\n // InternalDroneScript.g:19305:2: ( ruleJvmArgumentTypeReference )\r\n // InternalDroneScript.g:19306:3: ruleJvmArgumentTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsJvmArgumentTypeReferenceParserRuleCall_1_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2368:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* ) )\n // InternalCsv.g:2369:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n {\n // InternalCsv.g:2369:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n // InternalCsv.g:2370:2: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n // InternalCsv.g:2371:2: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n loop19:\n do {\n int alt19=2;\n int LA19_0 = input.LA(1);\n\n if ( (LA19_0==30) ) {\n alt19=1;\n }\n\n\n switch (alt19) {\n \tcase 1 :\n \t // InternalCsv.g:2371:3: rule__JvmParameterizedTypeReference__Group_1_2__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__JvmParameterizedTypeReference__Group_1_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop19;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFeatureCall__TypeArgumentsAssignment_2_2_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13085:1: ( ( ruleJvmArgumentTypeReference ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13086:1: ( ruleJvmArgumentTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:13087:1: ruleJvmArgumentTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_rule__XFeatureCall__TypeArgumentsAssignment_2_2_126284);\n ruleJvmArgumentTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXFeatureCallAccess().getTypeArgumentsJvmArgumentTypeReferenceParserRuleCall_2_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleJvmArgumentTypeReference() throws RecognitionException {\r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1961:1: ( ruleJvmArgumentTypeReference EOF )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1962:1: ruleJvmArgumentTypeReference EOF\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmArgumentTypeReference_in_entryRuleJvmArgumentTypeReference4120);\r\n ruleJvmArgumentTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceRule()); \r\n }\r\n match(input,EOF,FOLLOW_EOF_in_entryRuleJvmArgumentTypeReference4127); if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4070:1: ( ( ruleJvmLowerBoundAnded ) )\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n {\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n // InternalCsv.g:4072:3: ruleJvmLowerBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_2__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2475:1: ( ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) ) )\n // InternalCsv.g:2476:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\n {\n // InternalCsv.g:2476:1: ( ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 ) )\n // InternalCsv.g:2477:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \n }\n // InternalCsv.g:2478:2: ( rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1 )\n // InternalCsv.g:2478:3: rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__ArgumentsAssignment_1_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getArgumentsAssignment_1_2_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11534:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11535:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11535:1: ( ( rule__JvmParameterizedTypeReference__Group_1_2__0 )* )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11536:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11537:1: ( rule__JvmParameterizedTypeReference__Group_1_2__0 )*\n loop72:\n do {\n int alt72=2;\n int LA72_0 = input.LA(1);\n\n if ( (LA72_0==39) ) {\n alt72=1;\n }\n\n\n switch (alt72) {\n \tcase 1 :\n \t // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11537:2: rule__JvmParameterizedTypeReference__Group_1_2__0\n \t {\n \t pushFollow(FOLLOW_rule__JvmParameterizedTypeReference__Group_1_2__0_in_rule__JvmParameterizedTypeReference__Group_1__2__Impl23148);\n \t rule__JvmParameterizedTypeReference__Group_1_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop72;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Arguments__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2260:1: ( ( ( rule__Arguments__Group_0__0 ) ) | ( ( rule__Arguments__Group_1__0 ) ) | ( ( rule__Arguments__Group_2__0 ) ) | ( ( rule__Arguments__Group_3__0 ) ) )\n int alt7=4;\n switch ( input.LA(1) ) {\n case 32:\n {\n alt7=1;\n }\n break;\n case 36:\n {\n alt7=2;\n }\n break;\n case 18:\n {\n alt7=3;\n }\n break;\n case 37:\n {\n alt7=4;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n\n switch (alt7) {\n case 1 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2261:1: ( ( rule__Arguments__Group_0__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2261:1: ( ( rule__Arguments__Group_0__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2262:1: ( rule__Arguments__Group_0__0 )\n {\n before(grammarAccess.getArgumentsAccess().getGroup_0()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2263:1: ( rule__Arguments__Group_0__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2263:2: rule__Arguments__Group_0__0\n {\n pushFollow(FOLLOW_rule__Arguments__Group_0__0_in_rule__Arguments__Alternatives4355);\n rule__Arguments__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getArgumentsAccess().getGroup_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2267:6: ( ( rule__Arguments__Group_1__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2267:6: ( ( rule__Arguments__Group_1__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2268:1: ( rule__Arguments__Group_1__0 )\n {\n before(grammarAccess.getArgumentsAccess().getGroup_1()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2269:1: ( rule__Arguments__Group_1__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2269:2: rule__Arguments__Group_1__0\n {\n pushFollow(FOLLOW_rule__Arguments__Group_1__0_in_rule__Arguments__Alternatives4373);\n rule__Arguments__Group_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getArgumentsAccess().getGroup_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2273:6: ( ( rule__Arguments__Group_2__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2273:6: ( ( rule__Arguments__Group_2__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2274:1: ( rule__Arguments__Group_2__0 )\n {\n before(grammarAccess.getArgumentsAccess().getGroup_2()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2275:1: ( rule__Arguments__Group_2__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2275:2: rule__Arguments__Group_2__0\n {\n pushFollow(FOLLOW_rule__Arguments__Group_2__0_in_rule__Arguments__Alternatives4391);\n rule__Arguments__Group_2__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getArgumentsAccess().getGroup_2()); \n\n }\n\n\n }\n break;\n case 4 :\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2279:6: ( ( rule__Arguments__Group_3__0 ) )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2279:6: ( ( rule__Arguments__Group_3__0 ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2280:1: ( rule__Arguments__Group_3__0 )\n {\n before(grammarAccess.getArgumentsAccess().getGroup_3()); \n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2281:1: ( rule__Arguments__Group_3__0 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2281:2: rule__Arguments__Group_3__0\n {\n pushFollow(FOLLOW_rule__Arguments__Group_3__0_in_rule__Arguments__Alternatives4409);\n rule__Arguments__Group_3__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getArgumentsAccess().getGroup_3()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.8083781", "0.7849392", "0.7688202", "0.76786953", "0.7605566", "0.74790686", "0.73145187", "0.7277828", "0.72434944", "0.7179069", "0.6760963", "0.67329246", "0.6720729", "0.6693753", "0.6657895", "0.64946306", "0.6270192", "0.617264", "0.6153453", "0.611121", "0.61048764", "0.6086715", "0.60808384", "0.6068668", "0.60084075", "0.5997535", "0.5959574", "0.59555995", "0.58914524", "0.58883506", "0.5861002", "0.58400315", "0.5824381", "0.58133113", "0.57975674", "0.57965076", "0.5780022", "0.57579017", "0.57515943", "0.5747935", "0.5735296", "0.5672102", "0.5658826", "0.5639709", "0.5603116", "0.55979526", "0.55732507", "0.5567547", "0.5552801", "0.5531309", "0.5516969", "0.5515423", "0.5506853", "0.55056775", "0.5478441", "0.54570806", "0.5456657", "0.54430336", "0.5428866", "0.5417522", "0.5408075", "0.53956944", "0.53939784", "0.5387633", "0.53583056", "0.5357417", "0.53572446", "0.5350145", "0.53405356", "0.53362525", "0.53255117", "0.5325351", "0.53244317", "0.5316333", "0.5312266", "0.5293494", "0.5291991", "0.5283408", "0.52735555", "0.52671266", "0.5248804", "0.5231419", "0.5227663", "0.52183586", "0.5212332", "0.51930016", "0.5190324", "0.51901245", "0.518529", "0.51582944", "0.51468444", "0.5127806", "0.5121356", "0.51155955", "0.51153135", "0.5096964", "0.50945324", "0.50899965", "0.5065934", "0.50519276" ]
0.7813133
2
$ANTLR end "rule__JvmWildcardTypeReference__Alternatives_2" $ANTLR start "rule__XImportDeclaration__Alternatives_1" InternalCsv.g:819:1: rule__XImportDeclaration__Alternatives_1 : ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) );
public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) ) int alt9=3; alt9 = dfa9.predict(input); switch (alt9) { case 1 : // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) ) { // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) ) // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); } // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 ) // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0 { pushFollow(FOLLOW_2); rule__XImportDeclaration__Group_1_0__0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); } } } break; case 2 : // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) { // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) { if ( state.backtracking==0 ) { before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); } // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1 { pushFollow(FOLLOW_2); rule__XImportDeclaration__ImportedTypeAssignment_1_1(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); } } } break; case 3 : // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) { // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) { if ( state.backtracking==0 ) { before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); } // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 { pushFollow(FOLLOW_2); rule__XImportDeclaration__ImportedNamespaceAssignment_1_2(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); } } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3448:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n {\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n // InternalCsv.g:3450:2: ( rule__XImportDeclaration__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n // InternalCsv.g:3451:2: ( rule__XImportDeclaration__Alternatives_1 )\n // InternalCsv.g:3451:3: rule__XImportDeclaration__Alternatives_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3507:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\r\n int alt43=3;\r\n alt43 = dfa43.predict(input);\r\n switch (alt43) {\r\n case 1 :\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n // InternalDroneScript.g:3509:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n // InternalDroneScript.g:3510:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n // InternalDroneScript.g:3510:4: rule__XImportDeclaration__Group_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n {\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n // InternalDroneScript.g:3515:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n // InternalDroneScript.g:3516:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n // InternalDroneScript.g:3516:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n {\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n // InternalDroneScript.g:3521:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n // InternalDroneScript.g:3522:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n // InternalDroneScript.g:3522:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16777:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n // InternalDroneScript.g:16779:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:16780:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n // InternalDroneScript.g:16780:3: rule__XImportDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16911:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n {\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n // InternalDroneScript.g:16913:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n // InternalDroneScript.g:16914:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n // InternalDroneScript.g:16914:3: rule__XImportDeclaration__Alternatives_1_0_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1_0_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==38) ) {\n alt10=1;\n }\n else if ( (LA10_0==RULE_ID) ) {\n alt10=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 10, 0, input);\n\n throw nvae;\n }\n switch (alt10) {\n case 1 :\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n {\n // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\n // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\n // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n {\n // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\n // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\n // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3534:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\r\n int alt44=2;\r\n int LA44_0 = input.LA(1);\r\n\r\n if ( (LA44_0==36) ) {\r\n alt44=1;\r\n }\r\n else if ( (LA44_0==RULE_ID) ) {\r\n alt44=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 44, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt44) {\r\n case 1 :\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n {\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n // InternalDroneScript.g:3536:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n // InternalDroneScript.g:3537:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n // InternalDroneScript.g:3537:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n {\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n // InternalDroneScript.g:3542:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n // InternalDroneScript.g:3543:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n // InternalDroneScript.g:3543:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2880:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // InternalCsv.g:2882:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // InternalCsv.g:2883:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==35||LA23_0==37) ) {\n alt23=1;\n }\n switch (alt23) {\n case 1 :\n // InternalCsv.g:2883:3: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:802:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==35) ) {\n alt8=1;\n }\n else if ( (LA8_0==37) ) {\n alt8=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n {\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n // InternalCsv.g:804:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n // InternalCsv.g:805:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n // InternalCsv.g:805:4: rule__JvmWildcardTypeReference__Group_2_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n {\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n // InternalCsv.g:810:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n // InternalCsv.g:811:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n // InternalCsv.g:811:4: rule__JvmWildcardTypeReference__Group_2_1__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15514:1: ( ( ( rule__ImportDecl__Alternatives_2 ) ) )\r\n // InternalGo.g:15515:1: ( ( rule__ImportDecl__Alternatives_2 ) )\r\n {\r\n // InternalGo.g:15515:1: ( ( rule__ImportDecl__Alternatives_2 ) )\r\n // InternalGo.g:15516:2: ( rule__ImportDecl__Alternatives_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getAlternatives_2()); \r\n }\r\n // InternalGo.g:15517:2: ( rule__ImportDecl__Alternatives_2 )\r\n // InternalGo.g:15517:3: rule__ImportDecl__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ImportSpec__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15623:1: ( ( ( rule__ImportSpec__Alternatives_0 )? ) )\r\n // InternalGo.g:15624:1: ( ( rule__ImportSpec__Alternatives_0 )? )\r\n {\r\n // InternalGo.g:15624:1: ( ( rule__ImportSpec__Alternatives_0 )? )\r\n // InternalGo.g:15625:2: ( rule__ImportSpec__Alternatives_0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getAlternatives_0()); \r\n }\r\n // InternalGo.g:15626:2: ( rule__ImportSpec__Alternatives_0 )?\r\n int alt121=2;\r\n int LA121_0 = input.LA(1);\r\n\r\n if ( (LA121_0==RULE_ID||(LA121_0>=46 && LA121_0<=47)) ) {\r\n alt121=1;\r\n }\r\n switch (alt121) {\r\n case 1 :\r\n // InternalGo.g:15626:3: rule__ImportSpec__Alternatives_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Alternatives_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getAlternatives_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ImportDecl__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4337:1: ( ( ( rule__ImportDecl__ImportsAssignment_2_0 ) ) | ( ( rule__ImportDecl__Group_2_1__0 ) ) )\r\n int alt47=2;\r\n int LA47_0 = input.LA(1);\r\n\r\n if ( ((LA47_0>=RULE_STRING && LA47_0<=RULE_ID)||(LA47_0>=46 && LA47_0<=47)) ) {\r\n alt47=1;\r\n }\r\n else if ( (LA47_0==52) ) {\r\n alt47=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 47, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt47) {\r\n case 1 :\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n {\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n // InternalGo.g:4339:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n // InternalGo.g:4340:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n // InternalGo.g:4340:4: rule__ImportDecl__ImportsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__ImportsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n {\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n // InternalGo.g:4345:3: ( rule__ImportDecl__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n // InternalGo.g:4346:3: ( rule__ImportDecl__Group_2_1__0 )\r\n // InternalGo.g:4346:4: rule__ImportDecl__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4183:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n {\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n // InternalCsv.g:4185:3: ( ruleQualifiedNameInStaticImport )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n // InternalCsv.g:4186:3: ( ruleQualifiedNameInStaticImport )\n // InternalCsv.g:4187:4: ruleQualifiedNameInStaticImport\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4255:1: ( ( ruleQualifiedNameWithWildcard ) )\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n {\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n // InternalCsv.g:4257:3: ruleQualifiedNameWithWildcard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3556:1: ( ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) ) )\n // InternalCsv.g:3557:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\n {\n // InternalCsv.g:3557:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\n // InternalCsv.g:3558:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \n }\n // InternalCsv.g:3559:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\n // InternalCsv.g:3559:3: rule__XImportDeclaration__ImportedTypeAssignment_1_0_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_0_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11725:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11727:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==31||LA73_0==65) ) {\n alt73=1;\n }\n switch (alt73) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:2: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl23519);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3486:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\r\n int alt42=2;\r\n int LA42_0 = input.LA(1);\r\n\r\n if ( (LA42_0==45) ) {\r\n alt42=1;\r\n }\r\n else if ( (LA42_0==49) ) {\r\n alt42=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt42) {\r\n case 1 :\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n // InternalDroneScript.g:3488:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n // InternalDroneScript.g:3489:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n // InternalDroneScript.g:3489:4: rule__JvmWildcardTypeReference__Group_2_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n {\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n // InternalDroneScript.g:3494:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n // InternalDroneScript.g:3495:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n // InternalDroneScript.g:3495:4: rule__JvmWildcardTypeReference__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16574:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16576:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt106=2;\r\n int LA106_0 = input.LA(1);\r\n\r\n if ( (LA106_0==39||LA106_0==126) ) {\r\n alt106=1;\r\n }\r\n switch (alt106) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:2: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl33455);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_2=null;\n Token lv_importURI_3_0=null;\n Token otherlv_4=null;\n Token lv_name_5_0=null;\n Enumerator lv_importType_1_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:1810:2: ( (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) ) )\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n {\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n // InternalMappingDsl.g:1812:3: otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) )\n {\n otherlv_0=(Token)match(input,35,FOLLOW_45); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n // InternalMappingDsl.g:1816:3: ( (lv_importType_1_0= ruleImportType ) )\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n {\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n // InternalMappingDsl.g:1818:5: lv_importType_1_0= ruleImportType\n {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportAccess().getImportTypeImportTypeEnumRuleCall_1_0());\n \t\t\t\t\n pushFollow(FOLLOW_46);\n lv_importType_1_0=ruleImportType();\n\n state._fsp--;\n\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importType\",\n \t\t\t\t\t\tlv_importType_1_0,\n \t\t\t\t\t\t\"de.fhdo.ddmm.technology.mappingdsl.MappingDsl.ImportType\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_2=(Token)match(input,36,FOLLOW_41); \n\n \t\t\tnewLeafNode(otherlv_2, grammarAccess.getImportAccess().getFromKeyword_2());\n \t\t\n // InternalMappingDsl.g:1839:3: ( (lv_importURI_3_0= RULE_STRING ) )\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n {\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n // InternalMappingDsl.g:1841:5: lv_importURI_3_0= RULE_STRING\n {\n lv_importURI_3_0=(Token)match(input,RULE_STRING,FOLLOW_47); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_3_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_3_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_3_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_4=(Token)match(input,37,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_4, grammarAccess.getImportAccess().getAsKeyword_4());\n \t\t\n // InternalMappingDsl.g:1861:3: ( (lv_name_5_0= RULE_ID ) )\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n {\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n // InternalMappingDsl.g:1863:5: lv_name_5_0= RULE_ID\n {\n lv_name_5_0=(Token)match(input,RULE_ID,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_name_5_0, grammarAccess.getImportAccess().getNameIDTerminalRuleCall_5_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"name\",\n \t\t\t\t\t\tlv_name_5_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.ID\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16317:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // InternalDroneScript.g:16319:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:16320:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt125=2;\r\n int LA125_0 = input.LA(1);\r\n\r\n if ( (LA125_0==45||LA125_0==49) ) {\r\n alt125=1;\r\n }\r\n switch (alt125) {\r\n case 1 :\r\n // InternalDroneScript.g:16320:3: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ImportSpec__Alternatives_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4358:1: ( ( '.' ) | ( ruleIDENTIFIER ) )\r\n int alt48=2;\r\n int LA48_0 = input.LA(1);\r\n\r\n if ( (LA48_0==47) ) {\r\n alt48=1;\r\n }\r\n else if ( (LA48_0==RULE_ID||LA48_0==46) ) {\r\n alt48=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 48, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt48) {\r\n case 1 :\r\n // InternalGo.g:4359:2: ( '.' )\r\n {\r\n // InternalGo.g:4359:2: ( '.' )\r\n // InternalGo.g:4360:3: '.'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getFullStopKeyword_0_0()); \r\n }\r\n match(input,47,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getFullStopKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4365:2: ( ruleIDENTIFIER )\r\n {\r\n // InternalGo.g:4365:2: ( ruleIDENTIFIER )\r\n // InternalGo.g:4366:3: ruleIDENTIFIER\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getIDENTIFIERParserRuleCall_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleIDENTIFIER();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getIDENTIFIERParserRuleCall_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleImportNamespace() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_0=null;\r\n AntlrDatatypeRuleToken lv_importedNamespace_1_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5309:28: ( (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:3: otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n {\r\n otherlv_0=(Token)match(input,78,FOLLOW_78_in_ruleImportNamespace12287); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_0, grammarAccess.getImportNamespaceAccess().getImportKeyword_0());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5314:1: ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5316:3: lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getImportNamespaceAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_ruleImportNamespace12308);\r\n lv_importedNamespace_1_0=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getImportNamespaceRule());\r\n \t }\r\n \t\tset(\r\n \t\t\tcurrent, \r\n \t\t\t\"importedNamespace\",\r\n \t\tlv_importedNamespace_1_0, \r\n \t\t\"QualifiedNameWithWildcard\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16885:1: ( ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) ) )\r\n // InternalDroneScript.g:16886:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\r\n {\r\n // InternalDroneScript.g:16886:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\r\n // InternalDroneScript.g:16887:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \r\n }\r\n // InternalDroneScript.g:16888:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\r\n // InternalDroneScript.g:16888:3: rule__XImportDeclaration__ImportedTypeAssignment_1_0_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_0_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XVariableDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12734:1: ( ( ( rule__XVariableDeclaration__Alternatives_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12735:1: ( ( rule__XVariableDeclaration__Alternatives_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12735:1: ( ( rule__XVariableDeclaration__Alternatives_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12736:1: ( rule__XVariableDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getAlternatives_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12737:1: ( rule__XVariableDeclaration__Alternatives_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12737:2: rule__XVariableDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_rule__XVariableDeclaration__Alternatives_1_in_rule__XVariableDeclaration__Group__1__Impl25896);\r\n rule__XVariableDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1973:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1975:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:2: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference4153);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3444:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt40=2;\r\n int LA40_0 = input.LA(1);\r\n\r\n if ( (LA40_0==RULE_ID) ) {\r\n alt40=1;\r\n }\r\n else if ( (LA40_0==31||LA40_0==76) ) {\r\n alt40=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 40, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt40) {\r\n case 1 :\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3445:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // InternalDroneScript.g:3446:3: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:3447:3: ( rule__JvmTypeReference__Group_0__0 )\r\n // InternalDroneScript.g:3447:4: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n {\r\n // InternalDroneScript.g:3451:2: ( ruleXFunctionTypeRef )\r\n // InternalDroneScript.g:3452:3: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3088:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\r\n int alt33=2;\r\n int LA33_0 = input.LA(1);\r\n\r\n if ( (LA33_0==RULE_ID) ) {\r\n alt33=1;\r\n }\r\n else if ( (LA33_0==26||LA33_0==106) ) {\r\n alt33=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 33, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt33) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3089:1: ( ( rule__JvmTypeReference__Group_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3090:1: ( rule__JvmTypeReference__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:1: ( rule__JvmTypeReference__Group_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3091:2: rule__JvmTypeReference__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Group_0__0_in_rule__JvmTypeReference__Alternatives6706);\r\n rule__JvmTypeReference__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3095:6: ( ruleXFunctionTypeRef )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3096:1: ruleXFunctionTypeRef\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleXFunctionTypeRef_in_rule__JvmTypeReference__Alternatives6724);\r\n ruleXFunctionTypeRef();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19541:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n {\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n // InternalDroneScript.g:19543:3: ( ruleQualifiedNameInStaticImport )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n // InternalDroneScript.g:19544:3: ( ruleQualifiedNameInStaticImport )\r\n // InternalDroneScript.g:19545:4: ruleQualifiedNameInStaticImport\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XVariableDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:12531:1: ( ( ( rule__XVariableDeclaration__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:12532:1: ( ( rule__XVariableDeclaration__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:12532:1: ( ( rule__XVariableDeclaration__Alternatives_1 ) )\r\n // InternalDroneScript.g:12533:2: ( rule__XVariableDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:12534:2: ( rule__XVariableDeclaration__Alternatives_1 )\r\n // InternalDroneScript.g:12534:3: rule__XVariableDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XVariableDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19613:1: ( ( ruleQualifiedNameWithWildcard ) )\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n {\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n // InternalDroneScript.g:19615:3: ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleTypeImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalNgt.g:1345:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // InternalNgt.g:1346:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // InternalNgt.g:1346:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // InternalNgt.g:1347:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_5); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getTypeImportAccess().getImportKeyword_0());\n \t\t\n // InternalNgt.g:1351:3: ( (lv_importURI_1_0= RULE_STRING ) )\n // InternalNgt.g:1352:4: (lv_importURI_1_0= RULE_STRING )\n {\n // InternalNgt.g:1352:4: (lv_importURI_1_0= RULE_STRING )\n // InternalNgt.g:1353:5: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getTypeImportAccess().getImportURISTRINGTerminalRuleCall_1_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getTypeImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__WildcardAssignment_1_0_3_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4202:1: ( ( ( '*' ) ) )\n // InternalCsv.g:4203:2: ( ( '*' ) )\n {\n // InternalCsv.g:4203:2: ( ( '*' ) )\n // InternalCsv.g:4204:3: ( '*' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n // InternalCsv.g:4205:3: ( '*' )\n // InternalCsv.g:4206:4: '*'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n match(input,38,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2934:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* ) )\n // InternalCsv.g:2935:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\n {\n // InternalCsv.g:2935:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\n // InternalCsv.g:2936:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \n }\n // InternalCsv.g:2937:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\n loop24:\n do {\n int alt24=2;\n int LA24_0 = input.LA(1);\n\n if ( (LA24_0==36) ) {\n alt24=1;\n }\n\n\n switch (alt24) {\n \tcase 1 :\n \t // InternalCsv.g:2937:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1\n \t {\n \t pushFollow(FOLLOW_38);\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop24;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2988:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* ) )\n // InternalCsv.g:2989:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\n {\n // InternalCsv.g:2989:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\n // InternalCsv.g:2990:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \n }\n // InternalCsv.g:2991:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\n loop25:\n do {\n int alt25=2;\n int LA25_0 = input.LA(1);\n\n if ( (LA25_0==36) ) {\n alt25=1;\n }\n\n\n switch (alt25) {\n \tcase 1 :\n \t // InternalCsv.g:2991:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1\n \t {\n \t pushFollow(FOLLOW_38);\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop25;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3590:1: ( ( ( rule__AstPackage__Alternatives_4 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3591:1: ( ( rule__AstPackage__Alternatives_4 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3591:1: ( ( rule__AstPackage__Alternatives_4 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3592:1: ( rule__AstPackage__Alternatives_4 )*\n {\n before(grammarAccess.getAstPackageAccess().getAlternatives_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3593:1: ( rule__AstPackage__Alternatives_4 )*\n loop33:\n do {\n int alt33=2;\n int LA33_0 = input.LA(1);\n\n if ( (LA33_0==50||LA33_0==54||LA33_0==57||LA33_0==68||LA33_0==70||LA33_0==91) ) {\n alt33=1;\n }\n\n\n switch (alt33) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3593:2: rule__AstPackage__Alternatives_4\n \t {\n \t pushFollow(FOLLOW_rule__AstPackage__Alternatives_4_in_rule__AstPackage__Group__4__Impl7816);\n \t rule__AstPackage__Alternatives_4();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop33;\n }\n } while (true);\n\n after(grammarAccess.getAstPackageAccess().getAlternatives_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleXImportDeclaration() throws RecognitionException {\n try {\n // InternalCsv.g:605:1: ( ruleXImportDeclaration EOF )\n // InternalCsv.g:606:1: ruleXImportDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXImportDeclaration();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "@Test\r\n public void testImportStringAmbiguity() throws ClassNotFoundException\r\n {\r\n TypeParser typeParser = TypeParsers.create();\r\n typeParser.addImport(\"java.util.*\");\r\n typeParser.addImport(\"java.awt.*\");\r\n try\r\n {\r\n typeParser.parse(\"List\");\r\n fail(\"Expected exception\");\r\n }\r\n catch (IllegalArgumentException e)\r\n {\r\n // Expected\r\n }\r\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:140:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) ) )\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n {\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n // InternalMyDsl.g:142:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n {\n otherlv_0=(Token)match(input,19,FOLLOW_5); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n }\n // InternalMyDsl.g:146:3: ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n {\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n // InternalMyDsl.g:148:5: lv_importURI_1_0= RULE_IMPORT_URI\n {\n lv_importURI_1_0=(Token)match(input,RULE_IMPORT_URI,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURIIMPORT_URITerminalRuleCall_1_0());\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.xtext.example.mydsl.MyDsl.IMPORT_URI\");\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2444:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) ) | ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) ) )\n int alt24=2;\n int LA24_0 = input.LA(1);\n\n if ( (LA24_0==65) ) {\n alt24=1;\n }\n else if ( (LA24_0==31) ) {\n alt24=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 24, 0, input);\n\n throw nvae;\n }\n switch (alt24) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2445:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2445:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2446:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2447:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2447:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_in_rule__JvmWildcardTypeReference__Alternatives_25280);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2451:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2451:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2452:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2453:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2453:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_in_rule__JvmWildcardTypeReference__Alternatives_25298);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleImportedType() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:3271:2: ( ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) ) )\n // InternalMappingDsl.g:3272:2: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) )\n {\n // InternalMappingDsl.g:3272:2: ( ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) ) )\n // InternalMappingDsl.g:3273:3: ( (otherlv_0= RULE_ID ) ) otherlv_1= '::' ( ( ruleQualifiedName ) )\n {\n // InternalMappingDsl.g:3273:3: ( (otherlv_0= RULE_ID ) )\n // InternalMappingDsl.g:3274:4: (otherlv_0= RULE_ID )\n {\n // InternalMappingDsl.g:3274:4: (otherlv_0= RULE_ID )\n // InternalMappingDsl.g:3275:5: otherlv_0= RULE_ID\n {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportedTypeRule());\n \t\t\t\t\t}\n \t\t\t\t\n otherlv_0=(Token)match(input,RULE_ID,FOLLOW_32); \n\n \t\t\t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportedTypeAccess().getImportImportCrossReference_0_0());\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_1=(Token)match(input,29,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_1, grammarAccess.getImportedTypeAccess().getColonColonKeyword_1());\n \t\t\n // InternalMappingDsl.g:3290:3: ( ( ruleQualifiedName ) )\n // InternalMappingDsl.g:3291:4: ( ruleQualifiedName )\n {\n // InternalMappingDsl.g:3291:4: ( ruleQualifiedName )\n // InternalMappingDsl.g:3292:5: ruleQualifiedName\n {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportedTypeRule());\n \t\t\t\t\t}\n \t\t\t\t\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportedTypeAccess().getTypeTypeCrossReference_2_0());\n \t\t\t\t\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n\n\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "private String importDeclaration()\r\n {\r\n String handle;\r\n\r\n matchKeyword(Keyword.IMPORTSY);\r\n handle = nextToken.string;\r\n matchKeyword(Keyword.IDENTSY);\r\n handle = qualifiedImport(handle);\r\n matchKeyword(Keyword.SEMICOLONSY);\r\n\r\n return handle;\r\n }", "public final void rule__AstPackage__ImportsAssignment_4_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22508:1: ( ( ruleImport ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22509:1: ( ruleImport )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22509:1: ( ruleImport )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22510:1: ruleImport\n {\n before(grammarAccess.getAstPackageAccess().getImportsImportParserRuleCall_4_1_0()); \n pushFollow(FOLLOW_ruleImport_in_rule__AstPackage__ImportsAssignment_4_145075);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getAstPackageAccess().getImportsImportParserRuleCall_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private ParseTree parseImportSpecifier() {\n SourcePosition start = getTreeStartLocation();\n IdentifierToken importedName = eatIdOrKeywordAsId();\n IdentifierToken destinationName = null;\n if (peekPredefinedString(PredefinedName.AS)) {\n eatPredefinedString(PredefinedName.AS);\n destinationName = eatId();\n } else if (isKeyword(importedName.value)) {\n reportExpectedError(null, PredefinedName.AS);\n }\n return new ImportSpecifierTree(getTreeLocation(start), importedName, destinationName);\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2950:1: ( rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1 )\n // InternalCsv.g:2951:2: rule__JvmWildcardTypeReference__Group_2_1__0__Impl rule__JvmWildcardTypeReference__Group_2_1__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2962:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) ) )\n // InternalCsv.g:2963:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\n {\n // InternalCsv.g:2963:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\n // InternalCsv.g:2964:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \n }\n // InternalCsv.g:2965:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\n // InternalCsv.g:2965:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXImportDeclaration() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:617:2: ( ( ( rule__XImportDeclaration__Group__0 ) ) )\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n {\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n // InternalCsv.g:619:3: ( rule__XImportDeclaration__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n // InternalCsv.g:620:3: ( rule__XImportDeclaration__Group__0 )\n // InternalCsv.g:620:4: rule__XImportDeclaration__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3529:1: ( ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? ) )\n // InternalCsv.g:3530:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\n {\n // InternalCsv.g:3530:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\n // InternalCsv.g:3531:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \n }\n // InternalCsv.g:3532:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\n int alt28=2;\n int LA28_0 = input.LA(1);\n\n if ( (LA28_0==42) ) {\n alt28=1;\n }\n switch (alt28) {\n case 1 :\n // InternalCsv.g:3532:3: rule__XImportDeclaration__ExtensionAssignment_1_0_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ExtensionAssignment_1_0_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Instance__ImportsAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11940:1: ( ( ruleImport ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11941:1: ( ruleImport )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11941:1: ( ruleImport )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11942:1: ruleImport\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getInstanceAccess().getImportsImportParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleImport_in_rule__Instance__ImportsAssignment_123932);\n ruleImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getInstanceAccess().getImportsImportParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3132:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) ) | ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) ) )\r\n int alt35=2;\r\n int LA35_0 = input.LA(1);\r\n\r\n if ( (LA35_0==126) ) {\r\n alt35=1;\r\n }\r\n else if ( (LA35_0==39) ) {\r\n alt35=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 35, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt35) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3134:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_in_rule__JvmWildcardTypeReference__Alternatives_26805);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3140:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_in_rule__JvmWildcardTypeReference__Alternatives_26823);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2000:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2001:2: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2002:3: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2003:3: ( rule__JvmTypeReference__Alternatives )\r\n // InternalDroneScript.g:2003:4: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1861:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1862:1: ( ( rule__JvmTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1863:1: ( rule__JvmTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:1: ( rule__JvmTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1864:2: rule__JvmTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3913);\r\n rule__JvmTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleComplexTypeImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_1=null;\n Token otherlv_2=null;\n Token lv_importURI_3_0=null;\n Token otherlv_4=null;\n Token lv_name_5_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:5386:2: ( (otherlv_0= 'import' otherlv_1= 'datatypes' otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) ) )\n // InternalMappingDsl.g:5387:2: (otherlv_0= 'import' otherlv_1= 'datatypes' otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n {\n // InternalMappingDsl.g:5387:2: (otherlv_0= 'import' otherlv_1= 'datatypes' otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n // InternalMappingDsl.g:5388:3: otherlv_0= 'import' otherlv_1= 'datatypes' otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) )\n {\n otherlv_0=(Token)match(input,35,FOLLOW_102); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getComplexTypeImportAccess().getImportKeyword_0());\n \t\t\n otherlv_1=(Token)match(input,70,FOLLOW_46); \n\n \t\t\tnewLeafNode(otherlv_1, grammarAccess.getComplexTypeImportAccess().getDatatypesKeyword_1());\n \t\t\n otherlv_2=(Token)match(input,36,FOLLOW_41); \n\n \t\t\tnewLeafNode(otherlv_2, grammarAccess.getComplexTypeImportAccess().getFromKeyword_2());\n \t\t\n // InternalMappingDsl.g:5400:3: ( (lv_importURI_3_0= RULE_STRING ) )\n // InternalMappingDsl.g:5401:4: (lv_importURI_3_0= RULE_STRING )\n {\n // InternalMappingDsl.g:5401:4: (lv_importURI_3_0= RULE_STRING )\n // InternalMappingDsl.g:5402:5: lv_importURI_3_0= RULE_STRING\n {\n lv_importURI_3_0=(Token)match(input,RULE_STRING,FOLLOW_47); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_3_0, grammarAccess.getComplexTypeImportAccess().getImportURISTRINGTerminalRuleCall_3_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getComplexTypeImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_3_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_4=(Token)match(input,37,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_4, grammarAccess.getComplexTypeImportAccess().getAsKeyword_4());\n \t\t\n // InternalMappingDsl.g:5422:3: ( (lv_name_5_0= RULE_ID ) )\n // InternalMappingDsl.g:5423:4: (lv_name_5_0= RULE_ID )\n {\n // InternalMappingDsl.g:5423:4: (lv_name_5_0= RULE_ID )\n // InternalMappingDsl.g:5424:5: lv_name_5_0= RULE_ID\n {\n lv_name_5_0=(Token)match(input,RULE_ID,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_name_5_0, grammarAccess.getComplexTypeImportAccess().getNameIDTerminalRuleCall_5_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getComplexTypeImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"name\",\n \t\t\t\t\t\tlv_name_5_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.ID\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3421:1: ( ( 'import' ) )\n // InternalCsv.g:3422:1: ( 'import' )\n {\n // InternalCsv.g:3422:1: ( 'import' )\n // InternalCsv.g:3423:2: 'import'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n match(input,39,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:103:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:105:1: ( rule__Import__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:1: ( rule__Import__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport160);\n rule__Import__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n enterRule(); \n \n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:298:28: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_15_in_ruleImport672); \n\n \tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:303:1: ( (lv_importURI_1_0= RULE_STRING ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:305:3: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_RULE_STRING_in_ruleImport689); \n\n \t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_1_0()); \n \t\t\n\n \t if (current==null) {\n \t current = createModelElement(grammarAccess.getImportRule());\n \t }\n \t\tsetWithLastConsumed(\n \t\t\tcurrent, \n \t\t\t\"importURI\",\n \t\tlv_importURI_1_0, \n \t\t\"STRING\");\n \t \n\n }\n\n\n }\n\n\n }\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1576:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1577:1: ( ( rule__JvmTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1578:1: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:1: ( rule__JvmTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1579:2: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmTypeReference__Alternatives_in_ruleJvmTypeReference3306);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIntLiteral__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1793:1: ( ( ( rule__XIntLiteral__Group_0__0 ) ) | ( ( rule__XIntLiteral__Group_1__0 ) ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==RULE_INT) ) {\n int LA2_1 = input.LA(2);\n\n if ( (LA2_1==30) ) {\n int LA2_2 = input.LA(3);\n\n if ( (LA2_2==RULE_ID||LA2_2==20) ) {\n alt2=2;\n }\n else if ( (LA2_2==RULE_INT) ) {\n alt2=1;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 2, input);\n\n throw nvae;\n }\n }\n else if ( (LA2_1==EOF||(LA2_1>=RULE_ID && LA2_1<=RULE_STRING)||(LA2_1>=12 && LA2_1<=29)||(LA2_1>=31 && LA2_1<=32)||(LA2_1>=35 && LA2_1<=41)||(LA2_1>=43 && LA2_1<=53)||(LA2_1>=55 && LA2_1<=63)||(LA2_1>=67 && LA2_1<=69)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 1, input);\n\n throw nvae;\n }\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1794:1: ( ( rule__XIntLiteral__Group_0__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1794:1: ( ( rule__XIntLiteral__Group_0__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1795:1: ( rule__XIntLiteral__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXIntLiteralAccess().getGroup_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1796:1: ( rule__XIntLiteral__Group_0__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1796:2: rule__XIntLiteral__Group_0__0\n {\n pushFollow(FOLLOW_rule__XIntLiteral__Group_0__0_in_rule__XIntLiteral__Alternatives3764);\n rule__XIntLiteral__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXIntLiteralAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1800:6: ( ( rule__XIntLiteral__Group_1__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1800:6: ( ( rule__XIntLiteral__Group_1__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1801:1: ( rule__XIntLiteral__Group_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXIntLiteralAccess().getGroup_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1802:1: ( rule__XIntLiteral__Group_1__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1802:2: rule__XIntLiteral__Group_1__0\n {\n pushFollow(FOLLOW_rule__XIntLiteral__Group_1__0_in_rule__XIntLiteral__Alternatives3782);\n rule__XIntLiteral__Group_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXIntLiteralAccess().getGroup_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3517:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\n // InternalCsv.g:3518:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2842:1: ( rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2 )\n // InternalCsv.g:2843:2: rule__JvmWildcardTypeReference__Group__1__Impl rule__JvmWildcardTypeReference__Group__2\n {\n pushFollow(FOLLOW_36);\n rule__JvmWildcardTypeReference__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void importDeclaration() throws RecognitionException {\n int importDeclaration_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"importDeclaration\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(189, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 3) ) { return ; }\n // Java.g:190:5: ( 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';' )\n dbg.enterAlt(1);\n\n // Java.g:190:9: 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';'\n {\n dbg.location(190,9);\n match(input,27,FOLLOW_27_in_importDeclaration154); if (state.failed) return ;\n dbg.location(190,18);\n // Java.g:190:18: ( 'static' )?\n int alt9=2;\n try { dbg.enterSubRule(9);\n try { dbg.enterDecision(9);\n\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==28) ) {\n alt9=1;\n }\n } finally {dbg.exitDecision(9);}\n\n switch (alt9) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:0:0: 'static'\n {\n dbg.location(190,18);\n match(input,28,FOLLOW_28_in_importDeclaration156); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(9);}\n\n dbg.location(190,28);\n pushFollow(FOLLOW_qualifiedName_in_importDeclaration159);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(190,42);\n // Java.g:190:42: ( '.' '*' )?\n int alt10=2;\n try { dbg.enterSubRule(10);\n try { dbg.enterDecision(10);\n\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==29) ) {\n alt10=1;\n }\n } finally {dbg.exitDecision(10);}\n\n switch (alt10) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:190:43: '.' '*'\n {\n dbg.location(190,43);\n match(input,29,FOLLOW_29_in_importDeclaration162); if (state.failed) return ;\n dbg.location(190,47);\n match(input,30,FOLLOW_30_in_importDeclaration164); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(10);}\n\n dbg.location(190,53);\n match(input,26,FOLLOW_26_in_importDeclaration168); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 3, importDeclaration_StartIndex); }\n }\n dbg.location(191, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"importDeclaration\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void rule__JvmLowerBoundAnded__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3204:1: ( ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) ) )\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n {\n // InternalCsv.g:3205:1: ( ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 ) )\n // InternalCsv.g:3206:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n // InternalCsv.g:3207:2: ( rule__JvmLowerBoundAnded__TypeReferenceAssignment_1 )\n // InternalCsv.g:3207:3: rule__JvmLowerBoundAnded__TypeReferenceAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__JvmLowerBoundAnded__TypeReferenceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group_2_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15569:1: ( ( ( rule__ImportDecl__Imports2Assignment_2_1_1 )* ) )\r\n // InternalGo.g:15570:1: ( ( rule__ImportDecl__Imports2Assignment_2_1_1 )* )\r\n {\r\n // InternalGo.g:15570:1: ( ( rule__ImportDecl__Imports2Assignment_2_1_1 )* )\r\n // InternalGo.g:15571:2: ( rule__ImportDecl__Imports2Assignment_2_1_1 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImports2Assignment_2_1_1()); \r\n }\r\n // InternalGo.g:15572:2: ( rule__ImportDecl__Imports2Assignment_2_1_1 )*\r\n loop120:\r\n do {\r\n int alt120=2;\r\n int LA120_0 = input.LA(1);\r\n\r\n if ( ((LA120_0>=RULE_STRING && LA120_0<=RULE_ID)||(LA120_0>=46 && LA120_0<=47)) ) {\r\n alt120=1;\r\n }\r\n\r\n\r\n switch (alt120) {\r\n \tcase 1 :\r\n \t // InternalGo.g:15572:3: rule__ImportDecl__Imports2Assignment_2_1_1\r\n \t {\r\n \t pushFollow(FOLLOW_88);\r\n \t rule__ImportDecl__Imports2Assignment_2_1_1();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop120;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImports2Assignment_2_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Override\n\tpublic Void visit(ClauseImport clause, Void ctx) {\n\t\treturn null;\n\t}", "public final void rule__XImportDeclaration__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16750:1: ( ( 'import' ) )\r\n // InternalDroneScript.g:16751:1: ( 'import' )\r\n {\r\n // InternalDroneScript.g:16751:1: ( 'import' )\r\n // InternalDroneScript.g:16752:2: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \r\n }\r\n match(input,47,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20132:1: ( ( ( rule__AstType__Alternatives_0_1 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20133:1: ( ( rule__AstType__Alternatives_0_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20133:1: ( ( rule__AstType__Alternatives_0_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20134:1: ( rule__AstType__Alternatives_0_1 )\n {\n before(grammarAccess.getAstTypeAccess().getAlternatives_0_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20135:1: ( rule__AstType__Alternatives_0_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20135:2: rule__AstType__Alternatives_0_1\n {\n pushFollow(FOLLOW_rule__AstType__Alternatives_0_1_in_rule__AstType__Group_0__1__Impl40393);\n rule__AstType__Alternatives_0_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeAccess().getAlternatives_0_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2896:1: ( rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1 )\n // InternalCsv.g:2897:2: rule__JvmWildcardTypeReference__Group_2_0__0__Impl rule__JvmWildcardTypeReference__Group_2_0__1\n {\n pushFollow(FOLLOW_37);\n rule__JvmWildcardTypeReference__Group_2_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XVariableDeclaration__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:12558:1: ( ( ( rule__XVariableDeclaration__Alternatives_2 ) ) )\r\n // InternalDroneScript.g:12559:1: ( ( rule__XVariableDeclaration__Alternatives_2 ) )\r\n {\r\n // InternalDroneScript.g:12559:1: ( ( rule__XVariableDeclaration__Alternatives_2 ) )\r\n // InternalDroneScript.g:12560:2: ( rule__XVariableDeclaration__Alternatives_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:12561:2: ( rule__XVariableDeclaration__Alternatives_2 )\r\n // InternalDroneScript.g:12561:3: rule__XVariableDeclaration__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XVariableDeclaration__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2605:1: ( ( ( rule__Import__ImportedNamespaceAssignment_1 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2606:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2606:1: ( ( rule__Import__ImportedNamespaceAssignment_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2607:1: ( rule__Import__ImportedNamespaceAssignment_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2608:1: ( rule__Import__ImportedNamespaceAssignment_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2608:2: rule__Import__ImportedNamespaceAssignment_1\n {\n pushFollow(FOLLOW_rule__Import__ImportedNamespaceAssignment_1_in_rule__Import__Group__1__Impl5605);\n rule__Import__ImportedNamespaceAssignment_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceAssignment_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public String visit(ImportDeclaration n, Object arg) {\n return null;\n }", "ImportDeclaration createImportDeclaration();", "public final void rule__XVariableDeclaration__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12763:1: ( ( ( rule__XVariableDeclaration__Alternatives_2 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12764:1: ( ( rule__XVariableDeclaration__Alternatives_2 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12764:1: ( ( rule__XVariableDeclaration__Alternatives_2 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12765:1: ( rule__XVariableDeclaration__Alternatives_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12766:1: ( rule__XVariableDeclaration__Alternatives_2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12766:2: rule__XVariableDeclaration__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__XVariableDeclaration__Alternatives_2_in_rule__XVariableDeclaration__Group__2__Impl25956);\r\n rule__XVariableDeclaration__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "@Test\r\n public void testImportStringPriorities() throws ClassNotFoundException\r\n {\r\n TypeParser typeParser0 = TypeParsers.create();\r\n typeParser0.addImport(\"java.awt.List\");\r\n typeParser0.addImport(\"java.util.*\");\r\n\r\n Type t0 = typeParser0.parse(\"List\");\r\n assertEquals(t0, java.awt.List.class);\r\n \r\n TypeParser typeParser1 = TypeParsers.create();\r\n typeParser1.addImport(\"java.awt.*\");\r\n typeParser1.addImport(\"java.util.List\");\r\n\r\n Type t1 = typeParser1.parse(\"List\");\r\n assertEquals(t1, java.util.List.class);\r\n \r\n }", "public final void ruleJvmWildcardTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:417:2: ( ( ( rule__JvmWildcardTypeReference__Group__0 ) ) )\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n {\n // InternalCsv.g:418:2: ( ( rule__JvmWildcardTypeReference__Group__0 ) )\n // InternalCsv.g:419:3: ( rule__JvmWildcardTypeReference__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n // InternalCsv.g:420:3: ( rule__JvmWildcardTypeReference__Group__0 )\n // InternalCsv.g:420:4: rule__JvmWildcardTypeReference__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2815:1: ( rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1 )\n // InternalCsv.g:2816:2: rule__JvmWildcardTypeReference__Group__0__Impl rule__JvmWildcardTypeReference__Group__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmWildcardTypeReference__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Insert__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1250:1: ( ( ( rule__Insert__Group_0__0 ) ) | ( ( rule__Insert__Group_1__0 ) ) )\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n int LA11_1 = input.LA(2);\n\n if ( (LA11_1==44) ) {\n alt11=1;\n }\n else if ( (LA11_1==32) ) {\n alt11=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 11, 1, input);\n\n throw nvae;\n }\n }\n else if ( (LA11_0==32) ) {\n alt11=2;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 11, 0, input);\n\n throw nvae;\n }\n switch (alt11) {\n case 1 :\n // InternalBrowser.g:1251:2: ( ( rule__Insert__Group_0__0 ) )\n {\n // InternalBrowser.g:1251:2: ( ( rule__Insert__Group_0__0 ) )\n // InternalBrowser.g:1252:3: ( rule__Insert__Group_0__0 )\n {\n before(grammarAccess.getInsertAccess().getGroup_0()); \n // InternalBrowser.g:1253:3: ( rule__Insert__Group_0__0 )\n // InternalBrowser.g:1253:4: rule__Insert__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__Insert__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInsertAccess().getGroup_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // InternalBrowser.g:1257:2: ( ( rule__Insert__Group_1__0 ) )\n {\n // InternalBrowser.g:1257:2: ( ( rule__Insert__Group_1__0 ) )\n // InternalBrowser.g:1258:3: ( rule__Insert__Group_1__0 )\n {\n before(grammarAccess.getInsertAccess().getGroup_1()); \n // InternalBrowser.g:1259:3: ( rule__Insert__Group_1__0 )\n // InternalBrowser.g:1259:4: rule__Insert__Group_1__0\n {\n pushFollow(FOLLOW_2);\n rule__Insert__Group_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInsertAccess().getGroup_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "DefaultTypeParser()\r\n {\r\n importPackageNames.add(\"\");\r\n importPackageNames.add(\"java.lang.\");\r\n }", "@Test\r\n public void testImportRedundancy() throws ClassNotFoundException\r\n {\r\n TypeParser typeParser = TypeParsers.create();\r\n typeParser.addImport(\"java.util.*\");\r\n typeParser.addImport(\"java.util.*\");\r\n Type t1 = typeParser.parse(\"List\");\r\n assertEquals(t1, java.util.List.class);\r\n }", "public final void rule__AstTypeDefinition__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6828:1: ( ( ( rule__AstTypeDefinition__Alternatives_4 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6829:1: ( ( rule__AstTypeDefinition__Alternatives_4 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6829:1: ( ( rule__AstTypeDefinition__Alternatives_4 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6830:1: ( rule__AstTypeDefinition__Alternatives_4 )\n {\n before(grammarAccess.getAstTypeDefinitionAccess().getAlternatives_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6831:1: ( rule__AstTypeDefinition__Alternatives_4 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6831:2: rule__AstTypeDefinition__Alternatives_4\n {\n pushFollow(FOLLOW_rule__AstTypeDefinition__Alternatives_4_in_rule__AstTypeDefinition__Group__4__Impl14197);\n rule__AstTypeDefinition__Alternatives_4();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstTypeDefinitionAccess().getAlternatives_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmLowerBoundAnded__TypeReferenceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4130:1: ( ( ruleJvmTypeReference ) )\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:4131:2: ( ruleJvmTypeReference )\n // InternalCsv.g:4132:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmLowerBoundAndedAccess().getTypeReferenceJvmTypeReferenceParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3474:1: ( ( ( ';' )? ) )\n // InternalCsv.g:3475:1: ( ( ';' )? )\n {\n // InternalCsv.g:3475:1: ( ( ';' )? )\n // InternalCsv.g:3476:2: ( ';' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n // InternalCsv.g:3477:2: ( ';' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==14) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // InternalCsv.g:3477:3: ';'\n {\n match(input,14,FOLLOW_2); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1815:1: ( ( ( rule__XAssignment__Group_0__0 ) ) | ( ( rule__XAssignment__Group_1__0 ) ) )\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==RULE_ID) ) {\n int LA3_1 = input.LA(2);\n\n if ( (LA3_1==EOF||(LA3_1>=RULE_ID && LA3_1<=RULE_STRING)||(LA3_1>=12 && LA3_1<=32)||(LA3_1>=35 && LA3_1<=41)||(LA3_1>=43 && LA3_1<=63)||(LA3_1>=67 && LA3_1<=69)) ) {\n alt3=2;\n }\n else if ( (LA3_1==11) ) {\n alt3=1;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 3, 1, input);\n\n throw nvae;\n }\n }\n else if ( ((LA3_0>=RULE_INT && LA3_0<=RULE_STRING)||LA3_0==20||(LA3_0>=23 && LA3_0<=24)||LA3_0==29||(LA3_0>=31 && LA3_0<=32)||LA3_0==35||LA3_0==41||(LA3_0>=44 && LA3_0<=45)||LA3_0==47||(LA3_0>=51 && LA3_0<=53)||(LA3_0>=55 && LA3_0<=60)||LA3_0==69) ) {\n alt3=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 3, 0, input);\n\n throw nvae;\n }\n switch (alt3) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1816:1: ( ( rule__XAssignment__Group_0__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1816:1: ( ( rule__XAssignment__Group_0__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1817:1: ( rule__XAssignment__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXAssignmentAccess().getGroup_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1818:1: ( rule__XAssignment__Group_0__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1818:2: rule__XAssignment__Group_0__0\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_0__0_in_rule__XAssignment__Alternatives3815);\n rule__XAssignment__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXAssignmentAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1822:6: ( ( rule__XAssignment__Group_1__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1822:6: ( ( rule__XAssignment__Group_1__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1823:1: ( rule__XAssignment__Group_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXAssignmentAccess().getGroup_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1824:1: ( rule__XAssignment__Group_1__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1824:2: rule__XAssignment__Group_1__0\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1__0_in_rule__XAssignment__Alternatives3833);\n rule__XAssignment__Group_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXAssignmentAccess().getGroup_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2854:1: ( ( '?' ) )\n // InternalCsv.g:2855:1: ( '?' )\n {\n // InternalCsv.g:2855:1: ( '?' )\n // InternalCsv.g:2856:2: '?'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n match(input,34,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getQuestionMarkKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16803:1: ( ( ( ';' )? ) )\r\n // InternalDroneScript.g:16804:1: ( ( ';' )? )\r\n {\r\n // InternalDroneScript.g:16804:1: ( ( ';' )? )\r\n // InternalDroneScript.g:16805:2: ( ';' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \r\n }\r\n // InternalDroneScript.g:16806:2: ( ';' )?\r\n int alt128=2;\r\n int LA128_0 = input.LA(1);\r\n\r\n if ( (LA128_0==75) ) {\r\n alt128=1;\r\n }\r\n switch (alt128) {\r\n case 1 :\r\n // InternalDroneScript.g:16806:3: ';'\r\n {\r\n match(input,75,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XBooleanLiteral__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:13880:1: ( ( ( rule__XBooleanLiteral__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:13881:1: ( ( rule__XBooleanLiteral__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:13881:1: ( ( rule__XBooleanLiteral__Alternatives_1 ) )\r\n // InternalDroneScript.g:13882:2: ( rule__XBooleanLiteral__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXBooleanLiteralAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:13883:2: ( rule__XBooleanLiteral__Alternatives_1 )\r\n // InternalDroneScript.g:13883:3: rule__XBooleanLiteral__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XBooleanLiteral__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXBooleanLiteralAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19594:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19596:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n // InternalDroneScript.g:19597:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19598:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ImportDecl__Group_2_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15542:1: ( ( '(' ) )\r\n // InternalGo.g:15543:1: ( '(' )\r\n {\r\n // InternalGo.g:15543:1: ( '(' )\r\n // InternalGo.g:15544:2: '('\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getLeftParenthesisKeyword_2_1_0()); \r\n }\r\n match(input,52,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getLeftParenthesisKeyword_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11970:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11972:1: ruleQualifiedNameWithWildCard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_123994);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3436:1: ( rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2 )\n // InternalCsv.g:3437:2: rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2\n {\n pushFollow(FOLLOW_6);\n rule__XImportDeclaration__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7478276", "0.7474222", "0.7401494", "0.7351753", "0.71428883", "0.6976826", "0.6631089", "0.6258455", "0.62351525", "0.62100214", "0.61990106", "0.6034023", "0.5935668", "0.58651644", "0.5858425", "0.58188087", "0.58028483", "0.57710963", "0.5766972", "0.5742488", "0.57094574", "0.57053095", "0.5703911", "0.5691346", "0.56859994", "0.5619142", "0.55251086", "0.5509027", "0.5487487", "0.54630935", "0.5446482", "0.54384184", "0.5428523", "0.54192156", "0.53971", "0.5389492", "0.53482944", "0.53427315", "0.5316109", "0.5298157", "0.5279666", "0.5267813", "0.5266524", "0.5250921", "0.52385616", "0.522006", "0.52153975", "0.5214323", "0.5209286", "0.5185554", "0.5177861", "0.51697147", "0.5158918", "0.5136575", "0.51353335", "0.5116856", "0.5115817", "0.50980145", "0.5088106", "0.5065914", "0.50621253", "0.5059971", "0.505082", "0.50452954", "0.5028088", "0.5019057", "0.50126386", "0.50077903", "0.50074387", "0.50049907", "0.5004319", "0.49975014", "0.4994482", "0.49919084", "0.49860278", "0.49782756", "0.4963403", "0.4960911", "0.49455252", "0.49437147", "0.4942242", "0.49309784", "0.49286026", "0.4915845", "0.49114478", "0.49070057", "0.49069667", "0.49039626", "0.4894592", "0.48760912", "0.4873994", "0.4871909", "0.48703262", "0.486435", "0.4863325", "0.4856783", "0.4840482", "0.48372376", "0.48263407", "0.48228964" ]
0.7936669
0
$ANTLR end "rule__XImportDeclaration__Alternatives_1" $ANTLR start "rule__XImportDeclaration__Alternatives_1_0_3" InternalCsv.g:846:1: rule__XImportDeclaration__Alternatives_1_0_3 : ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) );
public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:850:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) ) int alt10=2; int LA10_0 = input.LA(1); if ( (LA10_0==38) ) { alt10=1; } else if ( (LA10_0==RULE_ID) ) { alt10=2; } else { if (state.backtracking>0) {state.failed=true; return ;} NoViableAltException nvae = new NoViableAltException("", 10, 0, input); throw nvae; } switch (alt10) { case 1 : // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) { // InternalCsv.g:851:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) // InternalCsv.g:852:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) { if ( state.backtracking==0 ) { before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); } // InternalCsv.g:853:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) // InternalCsv.g:853:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0 { pushFollow(FOLLOW_2); rule__XImportDeclaration__WildcardAssignment_1_0_3_0(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); } } } break; case 2 : // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) { // InternalCsv.g:857:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) // InternalCsv.g:858:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) { if ( state.backtracking==0 ) { before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); } // InternalCsv.g:859:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) // InternalCsv.g:859:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 { pushFollow(FOLLOW_2); rule__XImportDeclaration__MemberNameAssignment_1_0_3_1(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); } } } break; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__XImportDeclaration__Alternatives_1_0_3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3534:1: ( ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) ) | ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) ) )\r\n int alt44=2;\r\n int LA44_0 = input.LA(1);\r\n\r\n if ( (LA44_0==36) ) {\r\n alt44=1;\r\n }\r\n else if ( (LA44_0==RULE_ID) ) {\r\n alt44=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 44, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt44) {\r\n case 1 :\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n {\r\n // InternalDroneScript.g:3535:2: ( ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 ) )\r\n // InternalDroneScript.g:3536:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n // InternalDroneScript.g:3537:3: ( rule__XImportDeclaration__WildcardAssignment_1_0_3_0 )\r\n // InternalDroneScript.g:3537:4: rule__XImportDeclaration__WildcardAssignment_1_0_3_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__WildcardAssignment_1_0_3_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAssignment_1_0_3_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n {\r\n // InternalDroneScript.g:3541:2: ( ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 ) )\r\n // InternalDroneScript.g:3542:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n // InternalDroneScript.g:3543:3: ( rule__XImportDeclaration__MemberNameAssignment_1_0_3_1 )\r\n // InternalDroneScript.g:3543:4: rule__XImportDeclaration__MemberNameAssignment_1_0_3_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__MemberNameAssignment_1_0_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameAssignment_1_0_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16911:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n {\r\n // InternalDroneScript.g:16912:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\r\n // InternalDroneScript.g:16913:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n // InternalDroneScript.g:16914:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\r\n // InternalDroneScript.g:16914:3: rule__XImportDeclaration__Alternatives_1_0_3\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1_0_3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3507:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\r\n int alt43=3;\r\n alt43 = dfa43.predict(input);\r\n switch (alt43) {\r\n case 1 :\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3508:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\r\n // InternalDroneScript.g:3509:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n // InternalDroneScript.g:3510:3: ( rule__XImportDeclaration__Group_1_0__0 )\r\n // InternalDroneScript.g:3510:4: rule__XImportDeclaration__Group_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n {\r\n // InternalDroneScript.g:3514:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\r\n // InternalDroneScript.g:3515:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n // InternalDroneScript.g:3516:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\r\n // InternalDroneScript.g:3516:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 3 :\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n {\r\n // InternalDroneScript.g:3520:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\r\n // InternalDroneScript.g:3521:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n // InternalDroneScript.g:3522:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\r\n // InternalDroneScript.g:3522:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3448:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n {\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n // InternalCsv.g:3450:2: ( rule__XImportDeclaration__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n // InternalCsv.g:3451:2: ( rule__XImportDeclaration__Alternatives_1 )\n // InternalCsv.g:3451:3: rule__XImportDeclaration__Alternatives_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16777:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:16778:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\r\n // InternalDroneScript.g:16779:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:16780:2: ( rule__XImportDeclaration__Alternatives_1 )\r\n // InternalDroneScript.g:16780:3: rule__XImportDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__WildcardAssignment_1_0_3_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4202:1: ( ( ( '*' ) ) )\n // InternalCsv.g:4203:2: ( ( '*' ) )\n {\n // InternalCsv.g:4203:2: ( ( '*' ) )\n // InternalCsv.g:4204:3: ( '*' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n // InternalCsv.g:4205:3: ( '*' )\n // InternalCsv.g:4206:4: '*'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n match(input,38,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4337:1: ( ( ( rule__ImportDecl__ImportsAssignment_2_0 ) ) | ( ( rule__ImportDecl__Group_2_1__0 ) ) )\r\n int alt47=2;\r\n int LA47_0 = input.LA(1);\r\n\r\n if ( ((LA47_0>=RULE_STRING && LA47_0<=RULE_ID)||(LA47_0>=46 && LA47_0<=47)) ) {\r\n alt47=1;\r\n }\r\n else if ( (LA47_0==52) ) {\r\n alt47=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 47, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt47) {\r\n case 1 :\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n {\r\n // InternalGo.g:4338:2: ( ( rule__ImportDecl__ImportsAssignment_2_0 ) )\r\n // InternalGo.g:4339:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n // InternalGo.g:4340:3: ( rule__ImportDecl__ImportsAssignment_2_0 )\r\n // InternalGo.g:4340:4: rule__ImportDecl__ImportsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__ImportsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n {\r\n // InternalGo.g:4344:2: ( ( rule__ImportDecl__Group_2_1__0 ) )\r\n // InternalGo.g:4345:3: ( rule__ImportDecl__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n // InternalGo.g:4346:3: ( rule__ImportDecl__Group_2_1__0 )\r\n // InternalGo.g:4346:4: rule__ImportDecl__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4255:1: ( ( ruleQualifiedNameWithWildcard ) )\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n {\n // InternalCsv.g:4256:2: ( ruleQualifiedNameWithWildcard )\n // InternalCsv.g:4257:3: ruleQualifiedNameWithWildcard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameWithWildcard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4183:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n {\n // InternalCsv.g:4184:2: ( ( ruleQualifiedNameInStaticImport ) )\n // InternalCsv.g:4185:3: ( ruleQualifiedNameInStaticImport )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n // InternalCsv.g:4186:3: ( ruleQualifiedNameInStaticImport )\n // InternalCsv.g:4187:4: ruleQualifiedNameInStaticImport\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedNameInStaticImport();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4236:1: ( ( ( ruleQualifiedName ) ) )\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n {\n // InternalCsv.g:4237:2: ( ( ruleQualifiedName ) )\n // InternalCsv.g:4238:3: ( ruleQualifiedName )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n // InternalCsv.g:4239:3: ( ruleQualifiedName )\n // InternalCsv.g:4240:4: ruleQualifiedName\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n pushFollow(FOLLOW_2);\n ruleQualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportSpec__Alternatives_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4358:1: ( ( '.' ) | ( ruleIDENTIFIER ) )\r\n int alt48=2;\r\n int LA48_0 = input.LA(1);\r\n\r\n if ( (LA48_0==47) ) {\r\n alt48=1;\r\n }\r\n else if ( (LA48_0==RULE_ID||LA48_0==46) ) {\r\n alt48=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 48, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt48) {\r\n case 1 :\r\n // InternalGo.g:4359:2: ( '.' )\r\n {\r\n // InternalGo.g:4359:2: ( '.' )\r\n // InternalGo.g:4360:3: '.'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getFullStopKeyword_0_0()); \r\n }\r\n match(input,47,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getFullStopKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:4365:2: ( ruleIDENTIFIER )\r\n {\r\n // InternalGo.g:4365:2: ( ruleIDENTIFIER )\r\n // InternalGo.g:4366:3: ruleIDENTIFIER\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getIDENTIFIERParserRuleCall_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleIDENTIFIER();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getIDENTIFIERParserRuleCall_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__ImportSpec__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15623:1: ( ( ( rule__ImportSpec__Alternatives_0 )? ) )\r\n // InternalGo.g:15624:1: ( ( rule__ImportSpec__Alternatives_0 )? )\r\n {\r\n // InternalGo.g:15624:1: ( ( rule__ImportSpec__Alternatives_0 )? )\r\n // InternalGo.g:15625:2: ( rule__ImportSpec__Alternatives_0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getAlternatives_0()); \r\n }\r\n // InternalGo.g:15626:2: ( rule__ImportSpec__Alternatives_0 )?\r\n int alt121=2;\r\n int LA121_0 = input.LA(1);\r\n\r\n if ( (LA121_0==RULE_ID||(LA121_0>=46 && LA121_0<=47)) ) {\r\n alt121=1;\r\n }\r\n switch (alt121) {\r\n case 1 :\r\n // InternalGo.g:15626:3: rule__ImportSpec__Alternatives_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Alternatives_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getAlternatives_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__WildcardAssignment_1_0_3_0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19560:1: ( ( ( '*' ) ) )\r\n // InternalDroneScript.g:19561:2: ( ( '*' ) )\r\n {\r\n // InternalDroneScript.g:19561:2: ( ( '*' ) )\r\n // InternalDroneScript.g:19562:3: ( '*' )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n // InternalDroneScript.g:19563:3: ( '*' )\r\n // InternalDroneScript.g:19564:4: '*'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n match(input,36,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getWildcardAsteriskKeyword_1_0_3_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:392:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // InternalCsv.g:393:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // InternalCsv.g:394:3: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:395:3: ( rule__JvmArgumentTypeReference__Alternatives )\n // InternalCsv.g:395:4: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15514:1: ( ( ( rule__ImportDecl__Alternatives_2 ) ) )\r\n // InternalGo.g:15515:1: ( ( rule__ImportDecl__Alternatives_2 ) )\r\n {\r\n // InternalGo.g:15515:1: ( ( rule__ImportDecl__Alternatives_2 ) )\r\n // InternalGo.g:15516:2: ( rule__ImportDecl__Alternatives_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getAlternatives_2()); \r\n }\r\n // InternalGo.g:15517:2: ( rule__ImportDecl__Alternatives_2 )\r\n // InternalGo.g:15517:3: rule__ImportDecl__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedNamespaceAssignment_1_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19613:1: ( ( ruleQualifiedNameWithWildcard ) )\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n {\r\n // InternalDroneScript.g:19614:2: ( ruleQualifiedNameWithWildcard )\r\n // InternalDroneScript.g:19615:3: ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_0_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19541:1: ( ( ( ruleQualifiedNameInStaticImport ) ) )\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n {\r\n // InternalDroneScript.g:19542:2: ( ( ruleQualifiedNameInStaticImport ) )\r\n // InternalDroneScript.g:19543:3: ( ruleQualifiedNameInStaticImport )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n // InternalDroneScript.g:19544:3: ( ruleQualifiedNameInStaticImport )\r\n // InternalDroneScript.g:19545:4: ruleQualifiedNameInStaticImport\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedNameInStaticImport();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameInStaticImportParserRuleCall_1_0_2_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_0_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1815:1: ( ( ( rule__XAssignment__Group_0__0 ) ) | ( ( rule__XAssignment__Group_1__0 ) ) )\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==RULE_ID) ) {\n int LA3_1 = input.LA(2);\n\n if ( (LA3_1==EOF||(LA3_1>=RULE_ID && LA3_1<=RULE_STRING)||(LA3_1>=12 && LA3_1<=32)||(LA3_1>=35 && LA3_1<=41)||(LA3_1>=43 && LA3_1<=63)||(LA3_1>=67 && LA3_1<=69)) ) {\n alt3=2;\n }\n else if ( (LA3_1==11) ) {\n alt3=1;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 3, 1, input);\n\n throw nvae;\n }\n }\n else if ( ((LA3_0>=RULE_INT && LA3_0<=RULE_STRING)||LA3_0==20||(LA3_0>=23 && LA3_0<=24)||LA3_0==29||(LA3_0>=31 && LA3_0<=32)||LA3_0==35||LA3_0==41||(LA3_0>=44 && LA3_0<=45)||LA3_0==47||(LA3_0>=51 && LA3_0<=53)||(LA3_0>=55 && LA3_0<=60)||LA3_0==69) ) {\n alt3=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 3, 0, input);\n\n throw nvae;\n }\n switch (alt3) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1816:1: ( ( rule__XAssignment__Group_0__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1816:1: ( ( rule__XAssignment__Group_0__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1817:1: ( rule__XAssignment__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXAssignmentAccess().getGroup_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1818:1: ( rule__XAssignment__Group_0__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1818:2: rule__XAssignment__Group_0__0\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_0__0_in_rule__XAssignment__Alternatives3815);\n rule__XAssignment__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXAssignmentAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1822:6: ( ( rule__XAssignment__Group_1__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1822:6: ( ( rule__XAssignment__Group_1__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1823:1: ( rule__XAssignment__Group_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXAssignmentAccess().getGroup_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1824:1: ( rule__XAssignment__Group_1__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1824:2: rule__XAssignment__Group_1__0\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1__0_in_rule__XAssignment__Alternatives3833);\n rule__XAssignment__Group_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXAssignmentAccess().getGroup_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2880:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // InternalCsv.g:2881:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // InternalCsv.g:2882:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // InternalCsv.g:2883:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==35||LA23_0==37) ) {\n alt23=1;\n }\n switch (alt23) {\n case 1 :\n // InternalCsv.g:2883:3: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:781:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==RULE_ID||LA7_0==18||LA7_0==29) ) {\n alt7=1;\n }\n else if ( (LA7_0==34) ) {\n alt7=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 7, 0, input);\n\n throw nvae;\n }\n switch (alt7) {\n case 1 :\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n {\n // InternalCsv.g:782:2: ( ruleJvmTypeReference )\n // InternalCsv.g:783:3: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n {\n // InternalCsv.g:788:2: ( ruleJvmWildcardTypeReference )\n // InternalCsv.g:789:3: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNamespace__ExternalsAssignment_4_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22659:1: ( ( ( rule__AstNamespace__ExternalsAlternatives_4_2_0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22660:1: ( ( rule__AstNamespace__ExternalsAlternatives_4_2_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22660:1: ( ( rule__AstNamespace__ExternalsAlternatives_4_2_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22661:1: ( rule__AstNamespace__ExternalsAlternatives_4_2_0 )\n {\n before(grammarAccess.getAstNamespaceAccess().getExternalsAlternatives_4_2_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22662:1: ( rule__AstNamespace__ExternalsAlternatives_4_2_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22662:2: rule__AstNamespace__ExternalsAlternatives_4_2_0\n {\n pushFollow(FOLLOW_rule__AstNamespace__ExternalsAlternatives_4_2_0_in_rule__AstNamespace__ExternalsAssignment_4_245387);\n rule__AstNamespace__ExternalsAlternatives_4_2_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstNamespaceAccess().getExternalsAlternatives_4_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__CharsetAssignment_4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3757:1: ( ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) ) )\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n {\n // InternalCsv.g:3758:2: ( ( rule__OpenCSV__CharsetAlternatives_4_0 ) )\n // InternalCsv.g:3759:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n // InternalCsv.g:3760:3: ( rule__OpenCSV__CharsetAlternatives_4_0 )\n // InternalCsv.g:3760:4: rule__OpenCSV__CharsetAlternatives_4_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAlternatives_4_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAlternatives_4_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:802:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==35) ) {\n alt8=1;\n }\n else if ( (LA8_0==37) ) {\n alt8=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 8, 0, input);\n\n throw nvae;\n }\n switch (alt8) {\n case 1 :\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n {\n // InternalCsv.g:803:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\n // InternalCsv.g:804:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n // InternalCsv.g:805:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\n // InternalCsv.g:805:4: rule__JvmWildcardTypeReference__Group_2_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n {\n // InternalCsv.g:809:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\n // InternalCsv.g:810:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n // InternalCsv.g:811:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\n // InternalCsv.g:811:4: rule__JvmWildcardTypeReference__Group_2_1__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__Group_2_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XVariableDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12734:1: ( ( ( rule__XVariableDeclaration__Alternatives_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12735:1: ( ( rule__XVariableDeclaration__Alternatives_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12735:1: ( ( rule__XVariableDeclaration__Alternatives_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12736:1: ( rule__XVariableDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getAlternatives_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12737:1: ( rule__XVariableDeclaration__Alternatives_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12737:2: rule__XVariableDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_rule__XVariableDeclaration__Alternatives_1_in_rule__XVariableDeclaration__Group__1__Impl25896);\r\n rule__XVariableDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XVariableDeclaration__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:12531:1: ( ( ( rule__XVariableDeclaration__Alternatives_1 ) ) )\r\n // InternalDroneScript.g:12532:1: ( ( rule__XVariableDeclaration__Alternatives_1 ) )\r\n {\r\n // InternalDroneScript.g:12532:1: ( ( rule__XVariableDeclaration__Alternatives_1 ) )\r\n // InternalDroneScript.g:12533:2: ( rule__XVariableDeclaration__Alternatives_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getAlternatives_1()); \r\n }\r\n // InternalDroneScript.g:12534:2: ( rule__XVariableDeclaration__Alternatives_1 )\r\n // InternalDroneScript.g:12534:3: rule__XVariableDeclaration__Alternatives_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XVariableDeclaration__Alternatives_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getAlternatives_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleDeclaration() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1167:2: ( ( ( rule__Declaration__Alternatives ) ) )\r\n // InternalGo.g:1168:2: ( ( rule__Declaration__Alternatives ) )\r\n {\r\n // InternalGo.g:1168:2: ( ( rule__Declaration__Alternatives ) )\r\n // InternalGo.g:1169:3: ( rule__Declaration__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getDeclarationAccess().getAlternatives()); \r\n }\r\n // InternalGo.g:1170:3: ( rule__Declaration__Alternatives )\r\n // InternalGo.g:1170:4: rule__Declaration__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Declaration__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getDeclarationAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ExtensionAssignment_1_0_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4164:1: ( ( ( 'extension' ) ) )\n // InternalCsv.g:4165:2: ( ( 'extension' ) )\n {\n // InternalCsv.g:4165:2: ( ( 'extension' ) )\n // InternalCsv.g:4166:3: ( 'extension' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getExtensionExtensionKeyword_1_0_1_0()); \n }\n // InternalCsv.g:4167:3: ( 'extension' )\n // InternalCsv.g:4168:4: 'extension'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getExtensionExtensionKeyword_1_0_1_0()); \n }\n match(input,42,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getExtensionExtensionKeyword_1_0_1_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getExtensionExtensionKeyword_1_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token otherlv_2=null;\n Token lv_importURI_3_0=null;\n Token otherlv_4=null;\n Token lv_name_5_0=null;\n Enumerator lv_importType_1_0 = null;\n\n\n\n \tenterRule();\n\n try {\n // InternalMappingDsl.g:1810:2: ( (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) ) )\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n {\n // InternalMappingDsl.g:1811:2: (otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) ) )\n // InternalMappingDsl.g:1812:3: otherlv_0= 'import' ( (lv_importType_1_0= ruleImportType ) ) otherlv_2= 'from' ( (lv_importURI_3_0= RULE_STRING ) ) otherlv_4= 'as' ( (lv_name_5_0= RULE_ID ) )\n {\n otherlv_0=(Token)match(input,35,FOLLOW_45); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n // InternalMappingDsl.g:1816:3: ( (lv_importType_1_0= ruleImportType ) )\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n {\n // InternalMappingDsl.g:1817:4: (lv_importType_1_0= ruleImportType )\n // InternalMappingDsl.g:1818:5: lv_importType_1_0= ruleImportType\n {\n\n \t\t\t\t\tnewCompositeNode(grammarAccess.getImportAccess().getImportTypeImportTypeEnumRuleCall_1_0());\n \t\t\t\t\n pushFollow(FOLLOW_46);\n lv_importType_1_0=ruleImportType();\n\n state._fsp--;\n\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElementForParent(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tset(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importType\",\n \t\t\t\t\t\tlv_importType_1_0,\n \t\t\t\t\t\t\"de.fhdo.ddmm.technology.mappingdsl.MappingDsl.ImportType\");\n \t\t\t\t\tafterParserOrEnumRuleCall();\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_2=(Token)match(input,36,FOLLOW_41); \n\n \t\t\tnewLeafNode(otherlv_2, grammarAccess.getImportAccess().getFromKeyword_2());\n \t\t\n // InternalMappingDsl.g:1839:3: ( (lv_importURI_3_0= RULE_STRING ) )\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n {\n // InternalMappingDsl.g:1840:4: (lv_importURI_3_0= RULE_STRING )\n // InternalMappingDsl.g:1841:5: lv_importURI_3_0= RULE_STRING\n {\n lv_importURI_3_0=(Token)match(input,RULE_STRING,FOLLOW_47); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_3_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_3_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_3_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n otherlv_4=(Token)match(input,37,FOLLOW_7); \n\n \t\t\tnewLeafNode(otherlv_4, grammarAccess.getImportAccess().getAsKeyword_4());\n \t\t\n // InternalMappingDsl.g:1861:3: ( (lv_name_5_0= RULE_ID ) )\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n {\n // InternalMappingDsl.g:1862:4: (lv_name_5_0= RULE_ID )\n // InternalMappingDsl.g:1863:5: lv_name_5_0= RULE_ID\n {\n lv_name_5_0=(Token)match(input,RULE_ID,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_name_5_0, grammarAccess.getImportAccess().getNameIDTerminalRuleCall_5_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"name\",\n \t\t\t\t\t\tlv_name_5_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.ID\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__Group_1_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3556:1: ( ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) ) )\n // InternalCsv.g:3557:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\n {\n // InternalCsv.g:3557:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\n // InternalCsv.g:3558:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \n }\n // InternalCsv.g:3559:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\n // InternalCsv.g:3559:3: rule__XImportDeclaration__ImportedTypeAssignment_1_0_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_0_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "@Override\n public String visit(ImportDeclaration n, Object arg) {\n return null;\n }", "@Override\n\tpublic Void visit(ClauseImport clause, Void ctx) {\n\t\treturn null;\n\t}", "public final void ruleJvmTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:292:2: ( ( ( rule__JvmTypeReference__Alternatives ) ) )\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n {\n // InternalCsv.g:293:2: ( ( rule__JvmTypeReference__Alternatives ) )\n // InternalCsv.g:294:3: ( rule__JvmTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n // InternalCsv.g:295:3: ( rule__JvmTypeReference__Alternatives )\n // InternalCsv.g:295:4: rule__JvmTypeReference__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3529:1: ( ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? ) )\n // InternalCsv.g:3530:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\n {\n // InternalCsv.g:3530:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\n // InternalCsv.g:3531:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \n }\n // InternalCsv.g:3532:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\n int alt28=2;\n int LA28_0 = input.LA(1);\n\n if ( (LA28_0==42) ) {\n alt28=1;\n }\n switch (alt28) {\n case 1 :\n // InternalCsv.g:3532:3: rule__XImportDeclaration__ExtensionAssignment_1_0_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ExtensionAssignment_1_0_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "private String importDeclaration()\r\n {\r\n String handle;\r\n\r\n matchKeyword(Keyword.IMPORTSY);\r\n handle = nextToken.string;\r\n matchKeyword(Keyword.IDENTSY);\r\n handle = qualifiedImport(handle);\r\n matchKeyword(Keyword.SEMICOLONSY);\r\n\r\n return handle;\r\n }", "public final void rule__StatementList__Alternatives_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3428:1: ( ( ';' ) | ( ',' ) )\r\n int alt14=2;\r\n int LA14_0 = input.LA(1);\r\n\r\n if ( (LA14_0==42) ) {\r\n alt14=1;\r\n }\r\n else if ( (LA14_0==43) ) {\r\n alt14=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 14, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt14) {\r\n case 1 :\r\n // InternalGo.g:3429:2: ( ';' )\r\n {\r\n // InternalGo.g:3429:2: ( ';' )\r\n // InternalGo.g:3430:3: ';'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementListAccess().getSemicolonKeyword_1_1_0()); \r\n }\r\n match(input,42,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementListAccess().getSemicolonKeyword_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3435:2: ( ',' )\r\n {\r\n // InternalGo.g:3435:2: ( ',' )\r\n // InternalGo.g:3436:3: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getStatementListAccess().getCommaKeyword_1_1_1()); \r\n }\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getStatementListAccess().getCommaKeyword_1_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXAssignment() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:492:2: ( ( ( rule__XAssignment__Alternatives ) ) )\r\n // InternalDroneScript.g:493:2: ( ( rule__XAssignment__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:493:2: ( ( rule__XAssignment__Alternatives ) )\r\n // InternalDroneScript.g:494:3: ( rule__XAssignment__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:495:3: ( rule__XAssignment__Alternatives )\r\n // InternalDroneScript.g:495:4: rule__XAssignment__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:760:1: ( ( ( rule__JvmTypeReference__Group_0__0 ) ) | ( ruleXFunctionTypeRef ) )\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==RULE_ID) ) {\n alt6=1;\n }\n else if ( (LA6_0==18||LA6_0==29) ) {\n alt6=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 6, 0, input);\n\n throw nvae;\n }\n switch (alt6) {\n case 1 :\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n {\n // InternalCsv.g:761:2: ( ( rule__JvmTypeReference__Group_0__0 ) )\n // InternalCsv.g:762:3: ( rule__JvmTypeReference__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n // InternalCsv.g:763:3: ( rule__JvmTypeReference__Group_0__0 )\n // InternalCsv.g:763:4: rule__JvmTypeReference__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n {\n // InternalCsv.g:767:2: ( ruleXFunctionTypeRef )\n // InternalCsv.g:768:3: ruleXFunctionTypeRef\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n pushFollow(FOLLOW_2);\n ruleXFunctionTypeRef();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getXFunctionTypeRefParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__StaticAssignment_1_0_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4145:1: ( ( ( 'static' ) ) )\n // InternalCsv.g:4146:2: ( ( 'static' ) )\n {\n // InternalCsv.g:4146:2: ( ( 'static' ) )\n // InternalCsv.g:4147:3: ( 'static' )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n // InternalCsv.g:4148:3: ( 'static' )\n // InternalCsv.g:4149:4: 'static'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n match(input,41,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticStaticKeyword_1_0_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Alternatives_7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:706:1: ( ( ( rule__OpenCSV__HeaderAssignment_7_0 ) ) | ( 'false' ) )\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==40) ) {\n alt4=1;\n }\n else if ( (LA4_0==12) ) {\n alt4=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 4, 0, input);\n\n throw nvae;\n }\n switch (alt4) {\n case 1 :\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n {\n // InternalCsv.g:707:2: ( ( rule__OpenCSV__HeaderAssignment_7_0 ) )\n // InternalCsv.g:708:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n // InternalCsv.g:709:3: ( rule__OpenCSV__HeaderAssignment_7_0 )\n // InternalCsv.g:709:4: rule__OpenCSV__HeaderAssignment_7_0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__HeaderAssignment_7_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderAssignment_7_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:713:2: ( 'false' )\n {\n // InternalCsv.g:713:2: ( 'false' )\n // InternalCsv.g:714:3: 'false'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n match(input,12,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFalseKeyword_7_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1973:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1974:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1975:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:1: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:1976:2: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference4153);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3132:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) ) | ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) ) )\r\n int alt35=2;\r\n int LA35_0 = input.LA(1);\r\n\r\n if ( (LA35_0==126) ) {\r\n alt35=1;\r\n }\r\n else if ( (LA35_0==39) ) {\r\n alt35=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 35, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt35) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3133:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3134:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3135:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_in_rule__JvmWildcardTypeReference__Alternatives_26805);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3139:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3140:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3141:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_in_rule__JvmWildcardTypeReference__Alternatives_26823);\r\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XFeatureCall__Group_3__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:13179:1: ( ( ( rule__XFeatureCall__Alternatives_3_1 )? ) )\r\n // InternalDroneScript.g:13180:1: ( ( rule__XFeatureCall__Alternatives_3_1 )? )\r\n {\r\n // InternalDroneScript.g:13180:1: ( ( rule__XFeatureCall__Alternatives_3_1 )? )\r\n // InternalDroneScript.g:13181:2: ( rule__XFeatureCall__Alternatives_3_1 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXFeatureCallAccess().getAlternatives_3_1()); \r\n }\r\n // InternalDroneScript.g:13182:2: ( rule__XFeatureCall__Alternatives_3_1 )?\r\n int alt102=2;\r\n int LA102_0 = input.LA(1);\r\n\r\n if ( ((LA102_0>=RULE_ID && LA102_0<=RULE_STRING)||LA102_0==27||LA102_0==31||(LA102_0>=34 && LA102_0<=35)||LA102_0==40||(LA102_0>=45 && LA102_0<=50)||(LA102_0>=55 && LA102_0<=56)||LA102_0==58||LA102_0==62||(LA102_0>=64 && LA102_0<=65)||(LA102_0>=67 && LA102_0<=68)||(LA102_0>=72 && LA102_0<=73)||(LA102_0>=76 && LA102_0<=77)||LA102_0==79||(LA102_0>=82 && LA102_0<=89)||LA102_0==91||LA102_0==97||LA102_0==99) ) {\r\n alt102=1;\r\n }\r\n switch (alt102) {\r\n case 1 :\r\n // InternalDroneScript.g:13182:3: rule__XFeatureCall__Alternatives_3_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XFeatureCall__Alternatives_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXFeatureCallAccess().getAlternatives_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2444:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) ) | ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) ) )\n int alt24=2;\n int LA24_0 = input.LA(1);\n\n if ( (LA24_0==65) ) {\n alt24=1;\n }\n else if ( (LA24_0==31) ) {\n alt24=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 24, 0, input);\n\n throw nvae;\n }\n switch (alt24) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2445:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2445:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2446:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2447:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2447:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_in_rule__JvmWildcardTypeReference__Alternatives_25280);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2451:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2451:6: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2452:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2453:1: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2453:2: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_in_rule__JvmWildcardTypeReference__Alternatives_25298);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2256:1: ( ( ( rule__XAssignment__Group_0__0 ) ) | ( ( rule__XAssignment__Group_1__0 ) ) )\r\n int alt5=2;\r\n int LA5_0 = input.LA(1);\r\n\r\n if ( (LA5_0==RULE_ID) ) {\r\n int LA5_1 = input.LA(2);\r\n\r\n if ( (LA5_1==14) ) {\r\n alt5=1;\r\n }\r\n else if ( (LA5_1==EOF||(LA5_1>=RULE_ID && LA5_1<=RULE_STRING)||(LA5_1>=15 && LA5_1<=40)||LA5_1==74||LA5_1==80||LA5_1==84||(LA5_1>=100 && LA5_1<=124)||(LA5_1>=128 && LA5_1<=129)||(LA5_1>=131 && LA5_1<=132)) ) {\r\n alt5=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 5, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else if ( ((LA5_0>=RULE_HEX && LA5_0<=RULE_STRING)||LA5_0==23||(LA5_0>=30 && LA5_0<=31)||LA5_0==36||(LA5_0>=39 && LA5_0<=40)||LA5_0==74||LA5_0==104||(LA5_0>=106 && LA5_0<=107)||LA5_0==109||(LA5_0>=113 && LA5_0<=115)||(LA5_0>=117 && LA5_0<=122)||LA5_0==132) ) {\r\n alt5=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 5, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt5) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2257:1: ( ( rule__XAssignment__Group_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2257:1: ( ( rule__XAssignment__Group_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2258:1: ( rule__XAssignment__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2259:1: ( rule__XAssignment__Group_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2259:2: rule__XAssignment__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__0_in_rule__XAssignment__Alternatives4764);\r\n rule__XAssignment__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2263:6: ( ( rule__XAssignment__Group_1__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2263:6: ( ( rule__XAssignment__Group_1__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2264:1: ( rule__XAssignment__Group_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2265:1: ( rule__XAssignment__Group_1__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2265:2: rule__XAssignment__Group_1__0\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1__0_in_rule__XAssignment__Alternatives4782);\r\n rule__XAssignment__Group_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__FieldDecl__Alternatives_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3323:1: ( ( ( rule__FieldDecl__Group_1_0__0 ) ) | ( ( rule__FieldDecl__EmbeddedAssignment_1_1 ) ) )\r\n int alt9=2;\r\n switch ( input.LA(1) ) {\r\n case RULE_ID:\r\n {\r\n switch ( input.LA(2) ) {\r\n case EOF:\r\n case RULE_ID:\r\n case RULE_RAW_STRING_LIT:\r\n case RULE_INTERPRETED_STRING_LIT:\r\n case 42:\r\n case 46:\r\n case 47:\r\n case 58:\r\n {\r\n alt9=2;\r\n }\r\n break;\r\n case 45:\r\n {\r\n int LA9_4 = input.LA(3);\r\n\r\n if ( (LA9_4==RULE_LITERAL_TYPE||LA9_4==45||LA9_4==48||LA9_4==52||LA9_4==54||LA9_4==56||(LA9_4>=60 && LA9_4<=63)) ) {\r\n alt9=1;\r\n }\r\n else if ( (LA9_4==RULE_ID||LA9_4==46) ) {\r\n alt9=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 4, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case RULE_LITERAL_TYPE:\r\n case 43:\r\n case 48:\r\n case 52:\r\n case 54:\r\n case 56:\r\n case 60:\r\n case 61:\r\n case 62:\r\n case 63:\r\n {\r\n alt9=1;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 1, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n }\r\n break;\r\n case 46:\r\n {\r\n int LA9_2 = input.LA(2);\r\n\r\n if ( (LA9_2==RULE_ID) ) {\r\n switch ( input.LA(3) ) {\r\n case EOF:\r\n case RULE_ID:\r\n case RULE_RAW_STRING_LIT:\r\n case RULE_INTERPRETED_STRING_LIT:\r\n case 42:\r\n case 46:\r\n case 47:\r\n case 58:\r\n {\r\n alt9=2;\r\n }\r\n break;\r\n case 45:\r\n {\r\n int LA9_4 = input.LA(4);\r\n\r\n if ( (LA9_4==RULE_LITERAL_TYPE||LA9_4==45||LA9_4==48||LA9_4==52||LA9_4==54||LA9_4==56||(LA9_4>=60 && LA9_4<=63)) ) {\r\n alt9=1;\r\n }\r\n else if ( (LA9_4==RULE_ID||LA9_4==46) ) {\r\n alt9=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 4, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case RULE_LITERAL_TYPE:\r\n case 43:\r\n case 48:\r\n case 52:\r\n case 54:\r\n case 56:\r\n case 60:\r\n case 61:\r\n case 62:\r\n case 63:\r\n {\r\n alt9=1;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 6, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 2, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case 45:\r\n {\r\n alt9=2;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 9, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt9) {\r\n case 1 :\r\n // InternalGo.g:3324:2: ( ( rule__FieldDecl__Group_1_0__0 ) )\r\n {\r\n // InternalGo.g:3324:2: ( ( rule__FieldDecl__Group_1_0__0 ) )\r\n // InternalGo.g:3325:3: ( rule__FieldDecl__Group_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFieldDeclAccess().getGroup_1_0()); \r\n }\r\n // InternalGo.g:3326:3: ( rule__FieldDecl__Group_1_0__0 )\r\n // InternalGo.g:3326:4: rule__FieldDecl__Group_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__FieldDecl__Group_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFieldDeclAccess().getGroup_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3330:2: ( ( rule__FieldDecl__EmbeddedAssignment_1_1 ) )\r\n {\r\n // InternalGo.g:3330:2: ( ( rule__FieldDecl__EmbeddedAssignment_1_1 ) )\r\n // InternalGo.g:3331:3: ( rule__FieldDecl__EmbeddedAssignment_1_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFieldDeclAccess().getEmbeddedAssignment_1_1()); \r\n }\r\n // InternalGo.g:3332:3: ( rule__FieldDecl__EmbeddedAssignment_1_1 )\r\n // InternalGo.g:3332:4: rule__FieldDecl__EmbeddedAssignment_1_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__FieldDecl__EmbeddedAssignment_1_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFieldDeclAccess().getEmbeddedAssignment_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "private ParseTree parseImportSpecifier() {\n SourcePosition start = getTreeStartLocation();\n IdentifierToken importedName = eatIdOrKeywordAsId();\n IdentifierToken destinationName = null;\n if (peekPredefinedString(PredefinedName.AS)) {\n eatPredefinedString(PredefinedName.AS);\n destinationName = eatId();\n } else if (isKeyword(importedName.value)) {\n reportExpectedError(null, PredefinedName.AS);\n }\n return new ImportSpecifierTree(getTreeLocation(start), importedName, destinationName);\n }", "public final void rule__XAssignment__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2478:1: ( ( ( rule__XAssignment__Group_0__0 ) ) | ( ( rule__XAssignment__Group_1__0 ) ) )\r\n int alt6=2;\r\n switch ( input.LA(1) ) {\r\n case RULE_ID:\r\n {\r\n int LA6_1 = input.LA(2);\r\n\r\n if ( (LA6_1==13) ) {\r\n alt6=1;\r\n }\r\n else if ( (LA6_1==EOF||(LA6_1>=RULE_ID && LA6_1<=RULE_STRING)||(LA6_1>=14 && LA6_1<=50)||LA6_1==53||(LA6_1>=55 && LA6_1<=56)||(LA6_1>=58 && LA6_1<=62)||(LA6_1>=64 && LA6_1<=68)||(LA6_1>=70 && LA6_1<=92)||(LA6_1>=95 && LA6_1<=96)||(LA6_1>=98 && LA6_1<=99)) ) {\r\n alt6=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 6, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case 45:\r\n {\r\n int LA6_2 = input.LA(2);\r\n\r\n if ( (LA6_2==EOF||(LA6_2>=RULE_ID && LA6_2<=RULE_STRING)||(LA6_2>=14 && LA6_2<=50)||LA6_2==53||(LA6_2>=55 && LA6_2<=56)||(LA6_2>=58 && LA6_2<=62)||(LA6_2>=64 && LA6_2<=68)||(LA6_2>=70 && LA6_2<=92)||(LA6_2>=95 && LA6_2<=96)||(LA6_2>=98 && LA6_2<=99)) ) {\r\n alt6=2;\r\n }\r\n else if ( (LA6_2==13) ) {\r\n alt6=1;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 6, 2, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case 46:\r\n {\r\n int LA6_3 = input.LA(2);\r\n\r\n if ( (LA6_3==EOF||(LA6_3>=RULE_ID && LA6_3<=RULE_STRING)||(LA6_3>=14 && LA6_3<=50)||LA6_3==53||(LA6_3>=55 && LA6_3<=56)||(LA6_3>=58 && LA6_3<=62)||(LA6_3>=64 && LA6_3<=68)||(LA6_3>=70 && LA6_3<=92)||(LA6_3>=95 && LA6_3<=96)||(LA6_3>=98 && LA6_3<=99)) ) {\r\n alt6=2;\r\n }\r\n else if ( (LA6_3==13) ) {\r\n alt6=1;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 6, 3, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case 47:\r\n {\r\n int LA6_4 = input.LA(2);\r\n\r\n if ( (LA6_4==13) ) {\r\n alt6=1;\r\n }\r\n else if ( (LA6_4==EOF||(LA6_4>=RULE_ID && LA6_4<=RULE_STRING)||(LA6_4>=14 && LA6_4<=50)||LA6_4==53||(LA6_4>=55 && LA6_4<=56)||(LA6_4>=58 && LA6_4<=62)||(LA6_4>=64 && LA6_4<=68)||(LA6_4>=70 && LA6_4<=92)||(LA6_4>=95 && LA6_4<=96)||(LA6_4>=98 && LA6_4<=99)) ) {\r\n alt6=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 6, 4, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case 48:\r\n {\r\n int LA6_5 = input.LA(2);\r\n\r\n if ( (LA6_5==EOF||(LA6_5>=RULE_ID && LA6_5<=RULE_STRING)||(LA6_5>=14 && LA6_5<=50)||LA6_5==53||(LA6_5>=55 && LA6_5<=56)||(LA6_5>=58 && LA6_5<=62)||(LA6_5>=64 && LA6_5<=68)||(LA6_5>=70 && LA6_5<=92)||(LA6_5>=95 && LA6_5<=96)||(LA6_5>=98 && LA6_5<=99)) ) {\r\n alt6=2;\r\n }\r\n else if ( (LA6_5==13) ) {\r\n alt6=1;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 6, 5, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n break;\r\n case RULE_HEX:\r\n case RULE_INT:\r\n case RULE_DECIMAL:\r\n case RULE_STRING:\r\n case 27:\r\n case 34:\r\n case 35:\r\n case 40:\r\n case 49:\r\n case 50:\r\n case 55:\r\n case 58:\r\n case 72:\r\n case 73:\r\n case 76:\r\n case 77:\r\n case 79:\r\n case 82:\r\n case 83:\r\n case 84:\r\n case 85:\r\n case 86:\r\n case 87:\r\n case 88:\r\n case 89:\r\n case 91:\r\n case 99:\r\n {\r\n alt6=2;\r\n }\r\n break;\r\n default:\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 6, 0, input);\r\n\r\n throw nvae;\r\n }\r\n\r\n switch (alt6) {\r\n case 1 :\r\n // InternalDroneScript.g:2479:2: ( ( rule__XAssignment__Group_0__0 ) )\r\n {\r\n // InternalDroneScript.g:2479:2: ( ( rule__XAssignment__Group_0__0 ) )\r\n // InternalDroneScript.g:2480:3: ( rule__XAssignment__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_0()); \r\n }\r\n // InternalDroneScript.g:2481:3: ( rule__XAssignment__Group_0__0 )\r\n // InternalDroneScript.g:2481:4: rule__XAssignment__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:2485:2: ( ( rule__XAssignment__Group_1__0 ) )\r\n {\r\n // InternalDroneScript.g:2485:2: ( ( rule__XAssignment__Group_1__0 ) )\r\n // InternalDroneScript.g:2486:3: ( rule__XAssignment__Group_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_1()); \r\n }\r\n // InternalDroneScript.g:2487:3: ( rule__XAssignment__Group_1__0 )\r\n // InternalDroneScript.g:2487:4: rule__XAssignment__Group_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__ImportedTypeAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:19594:1: ( ( ( ruleQualifiedName ) ) )\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n {\r\n // InternalDroneScript.g:19595:2: ( ( ruleQualifiedName ) )\r\n // InternalDroneScript.g:19596:3: ( ruleQualifiedName )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n // InternalDroneScript.g:19597:3: ( ruleQualifiedName )\r\n // InternalDroneScript.g:19598:4: ruleQualifiedName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleQualifiedName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeQualifiedNameParserRuleCall_1_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeJvmDeclaredTypeCrossReference_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXAssignment() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:271:2: ( ( ( rule__XAssignment__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:272:1: ( ( rule__XAssignment__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:272:1: ( ( rule__XAssignment__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:273:1: ( rule__XAssignment__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXAssignmentAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:274:1: ( rule__XAssignment__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:274:2: rule__XAssignment__Alternatives\n {\n pushFollow(FOLLOW_rule__XAssignment__Alternatives_in_ruleXAssignment519);\n rule__XAssignment__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXAssignmentAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1660:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1661:1: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1662:1: ( rule__JvmArgumentTypeReference__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:1: ( rule__JvmArgumentTypeReference__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1663:2: rule__JvmArgumentTypeReference__Alternatives\n {\n pushFollow(FOLLOW_rule__JvmArgumentTypeReference__Alternatives_in_ruleJvmArgumentTypeReference3486);\n rule__JvmArgumentTypeReference__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final EObject ruleImportNamespace() throws RecognitionException {\r\n EObject current = null;\r\n\r\n Token otherlv_0=null;\r\n AntlrDatatypeRuleToken lv_importedNamespace_1_0 = null;\r\n\r\n\r\n enterRule(); \r\n \r\n try {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5309:28: ( (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:1: (otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5310:3: otherlv_0= 'import' ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n {\r\n otherlv_0=(Token)match(input,78,FOLLOW_78_in_ruleImportNamespace12287); if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \tnewLeafNode(otherlv_0, grammarAccess.getImportNamespaceAccess().getImportKeyword_0());\r\n \r\n }\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5314:1: ( (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard ) )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n {\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5315:1: (lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard )\r\n // ../eu.artist.postmigration.nfrvt.lang.gml/src-gen/eu/artist/postmigration/nfrvt/lang/gml/parser/antlr/internal/InternalGML.g:5316:3: lv_importedNamespace_1_0= ruleQualifiedNameWithWildcard\r\n {\r\n if ( state.backtracking==0 ) {\r\n \r\n \t newCompositeNode(grammarAccess.getImportNamespaceAccess().getImportedNamespaceQualifiedNameWithWildcardParserRuleCall_1_0()); \r\n \t \r\n }\r\n pushFollow(FOLLOW_ruleQualifiedNameWithWildcard_in_ruleImportNamespace12308);\r\n lv_importedNamespace_1_0=ruleQualifiedNameWithWildcard();\r\n\r\n state._fsp--;\r\n if (state.failed) return current;\r\n if ( state.backtracking==0 ) {\r\n\r\n \t if (current==null) {\r\n \t current = createModelElementForParent(grammarAccess.getImportNamespaceRule());\r\n \t }\r\n \t\tset(\r\n \t\t\tcurrent, \r\n \t\t\t\"importedNamespace\",\r\n \t\tlv_importedNamespace_1_0, \r\n \t\t\"QualifiedNameWithWildcard\");\r\n \t afterParserOrEnumRuleCall();\r\n \t \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n leaveRule(); \r\n }\r\n }\r\n \r\n catch (RecognitionException re) { \r\n recover(input,re); \r\n appendSkippedTokens();\r\n } \r\n finally {\r\n }\r\n return current;\r\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalMyDsl.g:140:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) ) )\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n {\n // InternalMyDsl.g:141:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) ) )\n // InternalMyDsl.g:142:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n {\n otherlv_0=(Token)match(input,19,FOLLOW_5); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \t\t\n }\n // InternalMyDsl.g:146:3: ( (lv_importURI_1_0= RULE_IMPORT_URI ) )\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n {\n // InternalMyDsl.g:147:4: (lv_importURI_1_0= RULE_IMPORT_URI )\n // InternalMyDsl.g:148:5: lv_importURI_1_0= RULE_IMPORT_URI\n {\n lv_importURI_1_0=(Token)match(input,RULE_IMPORT_URI,FOLLOW_2); if (state.failed) return current;\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURIIMPORT_URITerminalRuleCall_1_0());\n \t\t\t\t\n }\n if ( state.backtracking==0 ) {\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.xtext.example.mydsl.MyDsl.IMPORT_URI\");\n \t\t\t\t\n }\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n if ( state.backtracking==0 ) {\n\n \tleaveRule();\n\n }\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__XImportDeclaration__Group_1_0__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16885:1: ( ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) ) )\r\n // InternalDroneScript.g:16886:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\r\n {\r\n // InternalDroneScript.g:16886:1: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 ) )\r\n // InternalDroneScript.g:16887:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \r\n }\r\n // InternalDroneScript.g:16888:2: ( rule__XImportDeclaration__ImportedTypeAssignment_1_0_2 )\r\n // InternalDroneScript.g:16888:3: rule__XImportDeclaration__ImportedTypeAssignment_1_0_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ImportedTypeAssignment_1_0_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_0_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2934:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* ) )\n // InternalCsv.g:2935:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\n {\n // InternalCsv.g:2935:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )* )\n // InternalCsv.g:2936:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \n }\n // InternalCsv.g:2937:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1 )*\n loop24:\n do {\n int alt24=2;\n int LA24_0 = input.LA(1);\n\n if ( (LA24_0==36) ) {\n alt24=1;\n }\n\n\n switch (alt24) {\n \tcase 1 :\n \t // InternalCsv.g:2937:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1\n \t {\n \t pushFollow(FOLLOW_38);\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_0_1();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop24;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11970:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11971:1: ( ruleQualifiedNameWithWildCard )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11972:1: ruleQualifiedNameWithWildCard\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_123994);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__MemberNameAssignment_1_0_3_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4221:1: ( ( ruleValidID ) )\n // InternalCsv.g:4222:2: ( ruleValidID )\n {\n // InternalCsv.g:4222:2: ( ruleValidID )\n // InternalCsv.g:4223:3: ruleValidID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleValidID();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getMemberNameValidIDParserRuleCall_1_0_3_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXAssignment() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:354:2: ( ( ( rule__XAssignment__Alternatives ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:355:1: ( ( rule__XAssignment__Alternatives ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:355:1: ( ( rule__XAssignment__Alternatives ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:356:1: ( rule__XAssignment__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getAlternatives()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:357:1: ( rule__XAssignment__Alternatives )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:357:2: rule__XAssignment__Alternatives\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Alternatives_in_ruleXAssignment699);\r\n rule__XAssignment__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleJvmArgumentTypeReference() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:2100:2: ( ( ( rule__JvmArgumentTypeReference__Alternatives ) ) )\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:2101:2: ( ( rule__JvmArgumentTypeReference__Alternatives ) )\r\n // InternalDroneScript.g:2102:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:2103:3: ( rule__JvmArgumentTypeReference__Alternatives )\r\n // InternalDroneScript.g:2103:4: rule__JvmArgumentTypeReference__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmArgumentTypeReference__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XVariableDeclaration__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3216:1: ( ( ( rule__XVariableDeclaration__Group_2_0__0 ) ) | ( ( rule__XVariableDeclaration__NameAssignment_2_1 ) ) )\r\n int alt30=2;\r\n int LA30_0 = input.LA(1);\r\n\r\n if ( (LA30_0==RULE_ID) ) {\r\n int LA30_1 = input.LA(2);\r\n\r\n if ( (synpred75_InternalDroneScript()) ) {\r\n alt30=1;\r\n }\r\n else if ( (true) ) {\r\n alt30=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 30, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else if ( (LA30_0==31||LA30_0==76) ) {\r\n alt30=1;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 30, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt30) {\r\n case 1 :\r\n // InternalDroneScript.g:3217:2: ( ( rule__XVariableDeclaration__Group_2_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3217:2: ( ( rule__XVariableDeclaration__Group_2_0__0 ) )\r\n // InternalDroneScript.g:3218:3: ( rule__XVariableDeclaration__Group_2_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0()); \r\n }\r\n // InternalDroneScript.g:3219:3: ( rule__XVariableDeclaration__Group_2_0__0 )\r\n // InternalDroneScript.g:3219:4: rule__XVariableDeclaration__Group_2_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XVariableDeclaration__Group_2_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3223:2: ( ( rule__XVariableDeclaration__NameAssignment_2_1 ) )\r\n {\r\n // InternalDroneScript.g:3223:2: ( ( rule__XVariableDeclaration__NameAssignment_2_1 ) )\r\n // InternalDroneScript.g:3224:3: ( rule__XVariableDeclaration__NameAssignment_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_1()); \r\n }\r\n // InternalDroneScript.g:3225:3: ( rule__XVariableDeclaration__NameAssignment_2_1 )\r\n // InternalDroneScript.g:3225:4: rule__XVariableDeclaration__NameAssignment_2_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XVariableDeclaration__NameAssignment_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XVariableDeclaration__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2886:1: ( ( ( rule__XVariableDeclaration__Group_2_0__0 ) ) | ( ( rule__XVariableDeclaration__NameAssignment_2_1 ) ) )\r\n int alt24=2;\r\n int LA24_0 = input.LA(1);\r\n\r\n if ( (LA24_0==RULE_ID) ) {\r\n int LA24_1 = input.LA(2);\r\n\r\n if ( (synpred54_InternalFin()) ) {\r\n alt24=1;\r\n }\r\n else if ( (true) ) {\r\n alt24=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 24, 1, input);\r\n\r\n throw nvae;\r\n }\r\n }\r\n else if ( (LA24_0==26||LA24_0==106) ) {\r\n alt24=1;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 24, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt24) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2887:1: ( ( rule__XVariableDeclaration__Group_2_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2887:1: ( ( rule__XVariableDeclaration__Group_2_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2888:1: ( rule__XVariableDeclaration__Group_2_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2889:1: ( rule__XVariableDeclaration__Group_2_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2889:2: rule__XVariableDeclaration__Group_2_0__0\r\n {\r\n pushFollow(FOLLOW_rule__XVariableDeclaration__Group_2_0__0_in_rule__XVariableDeclaration__Alternatives_26249);\r\n rule__XVariableDeclaration__Group_2_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getGroup_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2893:6: ( ( rule__XVariableDeclaration__NameAssignment_2_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2893:6: ( ( rule__XVariableDeclaration__NameAssignment_2_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2894:1: ( rule__XVariableDeclaration__NameAssignment_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2895:1: ( rule__XVariableDeclaration__NameAssignment_2_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:2895:2: rule__XVariableDeclaration__NameAssignment_2_1\r\n {\r\n pushFollow(FOLLOW_rule__XVariableDeclaration__NameAssignment_2_1_in_rule__XVariableDeclaration__Alternatives_26267);\r\n rule__XVariableDeclaration__NameAssignment_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getNameAssignment_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void entryRuleXImportDeclaration() throws RecognitionException {\n try {\n // InternalCsv.g:605:1: ( ruleXImportDeclaration EOF )\n // InternalCsv.g:606:1: ruleXImportDeclaration EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationRule()); \n }\n pushFollow(FOLLOW_1);\n ruleXImportDeclaration();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void importDeclaration() throws RecognitionException {\n int importDeclaration_StartIndex = input.index();\n try { dbg.enterRule(getGrammarFileName(), \"importDeclaration\");\n if ( getRuleLevel()==0 ) {dbg.commence();}\n incRuleLevel();\n dbg.location(189, 1);\n\n try {\n if ( state.backtracking>0 && alreadyParsedRule(input, 3) ) { return ; }\n // Java.g:190:5: ( 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';' )\n dbg.enterAlt(1);\n\n // Java.g:190:9: 'import' ( 'static' )? qualifiedName ( '.' '*' )? ';'\n {\n dbg.location(190,9);\n match(input,27,FOLLOW_27_in_importDeclaration154); if (state.failed) return ;\n dbg.location(190,18);\n // Java.g:190:18: ( 'static' )?\n int alt9=2;\n try { dbg.enterSubRule(9);\n try { dbg.enterDecision(9);\n\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==28) ) {\n alt9=1;\n }\n } finally {dbg.exitDecision(9);}\n\n switch (alt9) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:0:0: 'static'\n {\n dbg.location(190,18);\n match(input,28,FOLLOW_28_in_importDeclaration156); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(9);}\n\n dbg.location(190,28);\n pushFollow(FOLLOW_qualifiedName_in_importDeclaration159);\n qualifiedName();\n\n state._fsp--;\n if (state.failed) return ;\n dbg.location(190,42);\n // Java.g:190:42: ( '.' '*' )?\n int alt10=2;\n try { dbg.enterSubRule(10);\n try { dbg.enterDecision(10);\n\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==29) ) {\n alt10=1;\n }\n } finally {dbg.exitDecision(10);}\n\n switch (alt10) {\n case 1 :\n dbg.enterAlt(1);\n\n // Java.g:190:43: '.' '*'\n {\n dbg.location(190,43);\n match(input,29,FOLLOW_29_in_importDeclaration162); if (state.failed) return ;\n dbg.location(190,47);\n match(input,30,FOLLOW_30_in_importDeclaration164); if (state.failed) return ;\n\n }\n break;\n\n }\n } finally {dbg.exitSubRule(10);}\n\n dbg.location(190,53);\n match(input,26,FOLLOW_26_in_importDeclaration168); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n if ( state.backtracking>0 ) { memoize(input, 3, importDeclaration_StartIndex); }\n }\n dbg.location(191, 5);\n\n }\n finally {\n dbg.exitRule(getGrammarFileName(), \"importDeclaration\");\n decRuleLevel();\n if ( getRuleLevel()==0 ) {dbg.terminate();}\n }\n\n return ;\n }", "public final void rule__XMemberFeatureCall__Group_1_1_3__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:8697:1: ( ( ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )? ) )\r\n // InternalDroneScript.g:8698:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )? )\r\n {\r\n // InternalDroneScript.g:8698:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )? )\r\n // InternalDroneScript.g:8699:2: ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_3_1()); \r\n }\r\n // InternalDroneScript.g:8700:2: ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )?\r\n int alt70=2;\r\n int LA70_0 = input.LA(1);\r\n\r\n if ( ((LA70_0>=RULE_ID && LA70_0<=RULE_STRING)||LA70_0==27||LA70_0==31||(LA70_0>=34 && LA70_0<=35)||LA70_0==40||(LA70_0>=45 && LA70_0<=50)||(LA70_0>=55 && LA70_0<=56)||LA70_0==58||LA70_0==62||(LA70_0>=64 && LA70_0<=65)||(LA70_0>=67 && LA70_0<=68)||(LA70_0>=72 && LA70_0<=73)||(LA70_0>=76 && LA70_0<=77)||LA70_0==79||(LA70_0>=82 && LA70_0<=89)||LA70_0==91||LA70_0==97||LA70_0==99) ) {\r\n alt70=1;\r\n }\r\n switch (alt70) {\r\n case 1 :\r\n // InternalDroneScript.g:8700:3: rule__XMemberFeatureCall__Alternatives_1_1_3_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XMemberFeatureCall__Alternatives_1_1_3_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleXExpression() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:142:2: ( ( ( rule__XExpression__Alternatives ) ) )\r\n // InternalDroneScript.g:143:2: ( ( rule__XExpression__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:143:2: ( ( rule__XExpression__Alternatives ) )\r\n // InternalDroneScript.g:144:3: ( rule__XExpression__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXExpressionAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:145:3: ( rule__XExpression__Alternatives )\r\n // InternalDroneScript.g:145:4: rule__XExpression__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XExpression__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXExpressionAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstPackage__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3590:1: ( ( ( rule__AstPackage__Alternatives_4 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3591:1: ( ( rule__AstPackage__Alternatives_4 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3591:1: ( ( rule__AstPackage__Alternatives_4 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3592:1: ( rule__AstPackage__Alternatives_4 )*\n {\n before(grammarAccess.getAstPackageAccess().getAlternatives_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3593:1: ( rule__AstPackage__Alternatives_4 )*\n loop33:\n do {\n int alt33=2;\n int LA33_0 = input.LA(1);\n\n if ( (LA33_0==50||LA33_0==54||LA33_0==57||LA33_0==68||LA33_0==70||LA33_0==91) ) {\n alt33=1;\n }\n\n\n switch (alt33) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3593:2: rule__AstPackage__Alternatives_4\n \t {\n \t pushFollow(FOLLOW_rule__AstPackage__Alternatives_4_in_rule__AstPackage__Group__4__Impl7816);\n \t rule__AstPackage__Alternatives_4();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop33;\n }\n } while (true);\n\n after(grammarAccess.getAstPackageAccess().getAlternatives_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXLiteral() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1092:2: ( ( ( rule__XLiteral__Alternatives ) ) )\r\n // InternalDroneScript.g:1093:2: ( ( rule__XLiteral__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:1093:2: ( ( rule__XLiteral__Alternatives ) )\r\n // InternalDroneScript.g:1094:3: ( rule__XLiteral__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXLiteralAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:1095:3: ( rule__XLiteral__Alternatives )\r\n // InternalDroneScript.g:1095:4: rule__XLiteral__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XLiteral__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXLiteralAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__ImportedNamespaceAssignment_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22765:1: ( ( ruleQualifiedNameWithWildCard ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22766:1: ( ruleQualifiedNameWithWildCard )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22767:1: ruleQualifiedNameWithWildCard\n {\n before(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n pushFollow(FOLLOW_ruleQualifiedNameWithWildCard_in_rule__Import__ImportedNamespaceAssignment_145606);\n ruleQualifiedNameWithWildCard();\n\n state._fsp--;\n\n after(grammarAccess.getImportAccess().getImportedNamespaceQualifiedNameWithWildCardParserRuleCall_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__ImportsAssignment_4_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22508:1: ( ( ruleImport ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22509:1: ( ruleImport )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22509:1: ( ruleImport )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22510:1: ruleImport\n {\n before(grammarAccess.getAstPackageAccess().getImportsImportParserRuleCall_4_1_0()); \n pushFollow(FOLLOW_ruleImport_in_rule__AstPackage__ImportsAssignment_4_145075);\n ruleImport();\n\n state._fsp--;\n\n after(grammarAccess.getAstPackageAccess().getImportsImportParserRuleCall_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:281:1: ( ( ( rule__Input__Group_0__0 ) ) | ( ( rule__Input__VariableAssignment_1 ) ) )\n int alt1=2;\n int LA1_0 = input.LA(1);\n\n if ( (LA1_0==RULE_MAJUSCULE) ) {\n int LA1_1 = input.LA(2);\n\n if ( (LA1_1==EOF||LA1_1==19) ) {\n alt1=2;\n }\n else if ( (LA1_1==21) ) {\n alt1=1;\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 1, 1, input);\n\n throw nvae;\n }\n }\n else {\n NoViableAltException nvae =\n new NoViableAltException(\"\", 1, 0, input);\n\n throw nvae;\n }\n switch (alt1) {\n case 1 :\n // InternalWh.g:282:2: ( ( rule__Input__Group_0__0 ) )\n {\n // InternalWh.g:282:2: ( ( rule__Input__Group_0__0 ) )\n // InternalWh.g:283:3: ( rule__Input__Group_0__0 )\n {\n before(grammarAccess.getInputAccess().getGroup_0()); \n // InternalWh.g:284:3: ( rule__Input__Group_0__0 )\n // InternalWh.g:284:4: rule__Input__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getGroup_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // InternalWh.g:288:2: ( ( rule__Input__VariableAssignment_1 ) )\n {\n // InternalWh.g:288:2: ( ( rule__Input__VariableAssignment_1 ) )\n // InternalWh.g:289:3: ( rule__Input__VariableAssignment_1 )\n {\n before(grammarAccess.getInputAccess().getVariableAssignment_1()); \n // InternalWh.g:290:3: ( rule__Input__VariableAssignment_1 )\n // InternalWh.g:290:4: rule__Input__VariableAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Input__VariableAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getVariableAssignment_1()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2962:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) ) )\n // InternalCsv.g:2963:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\n {\n // InternalCsv.g:2963:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 ) )\n // InternalCsv.g:2964:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \n }\n // InternalCsv.g:2965:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0 )\n // InternalCsv.g:2965:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0\n {\n pushFollow(FOLLOW_2);\n rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XVariableDeclaration__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:12558:1: ( ( ( rule__XVariableDeclaration__Alternatives_2 ) ) )\r\n // InternalDroneScript.g:12559:1: ( ( rule__XVariableDeclaration__Alternatives_2 ) )\r\n {\r\n // InternalDroneScript.g:12559:1: ( ( rule__XVariableDeclaration__Alternatives_2 ) )\r\n // InternalDroneScript.g:12560:2: ( rule__XVariableDeclaration__Alternatives_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:12561:2: ( rule__XVariableDeclaration__Alternatives_2 )\r\n // InternalDroneScript.g:12561:3: rule__XVariableDeclaration__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XVariableDeclaration__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group_2_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2988:1: ( ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* ) )\n // InternalCsv.g:2989:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\n {\n // InternalCsv.g:2989:1: ( ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )* )\n // InternalCsv.g:2990:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \n }\n // InternalCsv.g:2991:2: ( rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1 )*\n loop25:\n do {\n int alt25=2;\n int LA25_0 = input.LA(1);\n\n if ( (LA25_0==36) ) {\n alt25=1;\n }\n\n\n switch (alt25) {\n \tcase 1 :\n \t // InternalCsv.g:2991:3: rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1\n \t {\n \t pushFollow(FOLLOW_38);\n \t rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop25;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsAssignment_2_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNamespace__ExternalsAlternatives_4_2_0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2586:1: ( ( ruleAstExternalVariable ) | ( ruleAstExternalFunction ) | ( ruleAstExternalProcedure ) )\n int alt6=3;\n alt6 = dfa6.predict(input);\n switch (alt6) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2587:1: ( ruleAstExternalVariable )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2587:1: ( ruleAstExternalVariable )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2588:1: ruleAstExternalVariable\n {\n before(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalVariableParserRuleCall_4_2_0_0()); \n pushFollow(FOLLOW_ruleAstExternalVariable_in_rule__AstNamespace__ExternalsAlternatives_4_2_05517);\n ruleAstExternalVariable();\n\n state._fsp--;\n\n after(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalVariableParserRuleCall_4_2_0_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2593:6: ( ruleAstExternalFunction )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2593:6: ( ruleAstExternalFunction )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2594:1: ruleAstExternalFunction\n {\n before(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalFunctionParserRuleCall_4_2_0_1()); \n pushFollow(FOLLOW_ruleAstExternalFunction_in_rule__AstNamespace__ExternalsAlternatives_4_2_05534);\n ruleAstExternalFunction();\n\n state._fsp--;\n\n after(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalFunctionParserRuleCall_4_2_0_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2599:6: ( ruleAstExternalProcedure )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2599:6: ( ruleAstExternalProcedure )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2600:1: ruleAstExternalProcedure\n {\n before(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalProcedureParserRuleCall_4_2_0_2()); \n pushFollow(FOLLOW_ruleAstExternalProcedure_in_rule__AstNamespace__ExternalsAlternatives_4_2_05551);\n ruleAstExternalProcedure();\n\n state._fsp--;\n\n after(grammarAccess.getAstNamespaceAccess().getExternalsAstExternalProcedureParserRuleCall_4_2_0_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmWildcardTypeReference__Alternatives_2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3486:1: ( ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) ) | ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) ) )\r\n int alt42=2;\r\n int LA42_0 = input.LA(1);\r\n\r\n if ( (LA42_0==45) ) {\r\n alt42=1;\r\n }\r\n else if ( (LA42_0==49) ) {\r\n alt42=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 42, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt42) {\r\n case 1 :\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n {\r\n // InternalDroneScript.g:3487:2: ( ( rule__JvmWildcardTypeReference__Group_2_0__0 ) )\r\n // InternalDroneScript.g:3488:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n // InternalDroneScript.g:3489:3: ( rule__JvmWildcardTypeReference__Group_2_0__0 )\r\n // InternalDroneScript.g:3489:4: rule__JvmWildcardTypeReference__Group_2_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n {\r\n // InternalDroneScript.g:3493:2: ( ( rule__JvmWildcardTypeReference__Group_2_1__0 ) )\r\n // InternalDroneScript.g:3494:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n // InternalDroneScript.g:3495:3: ( rule__JvmWildcardTypeReference__Group_2_1__0 )\r\n // InternalDroneScript.g:3495:4: rule__JvmWildcardTypeReference__Group_2_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Group_2_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getGroup_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XMemberFeatureCall__Group_1_1_0_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:8480:1: ( ( ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 ) ) )\r\n // InternalDroneScript.g:8481:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 ) )\r\n {\r\n // InternalDroneScript.g:8481:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 ) )\r\n // InternalDroneScript.g:8482:2: ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_0_0_1()); \r\n }\r\n // InternalDroneScript.g:8483:2: ( rule__XMemberFeatureCall__Alternatives_1_1_0_0_1 )\r\n // InternalDroneScript.g:8483:3: rule__XMemberFeatureCall__Alternatives_1_1_0_0_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XMemberFeatureCall__Alternatives_1_1_0_0_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_0_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16317:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // InternalDroneScript.g:16318:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // InternalDroneScript.g:16319:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // InternalDroneScript.g:16320:2: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt125=2;\r\n int LA125_0 = input.LA(1);\r\n\r\n if ( (LA125_0==45||LA125_0==49) ) {\r\n alt125=1;\r\n }\r\n switch (alt125) {\r\n case 1 :\r\n // InternalDroneScript.g:16320:3: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3465:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt41=2;\r\n int LA41_0 = input.LA(1);\r\n\r\n if ( (LA41_0==RULE_ID||LA41_0==31||LA41_0==76) ) {\r\n alt41=1;\r\n }\r\n else if ( (LA41_0==93) ) {\r\n alt41=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 41, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt41) {\r\n case 1 :\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n {\r\n // InternalDroneScript.g:3466:2: ( ruleJvmTypeReference )\r\n // InternalDroneScript.g:3467:3: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n {\r\n // InternalDroneScript.g:3472:2: ( ruleJvmWildcardTypeReference )\r\n // InternalDroneScript.g:3473:3: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16858:1: ( ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? ) )\r\n // InternalDroneScript.g:16859:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\r\n {\r\n // InternalDroneScript.g:16859:1: ( ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )? )\r\n // InternalDroneScript.g:16860:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \r\n }\r\n // InternalDroneScript.g:16861:2: ( rule__XImportDeclaration__ExtensionAssignment_1_0_1 )?\r\n int alt129=2;\r\n int LA129_0 = input.LA(1);\r\n\r\n if ( (LA129_0==48) ) {\r\n alt129=1;\r\n }\r\n switch (alt129) {\r\n case 1 :\r\n // InternalDroneScript.g:16861:3: rule__XImportDeclaration__ExtensionAssignment_1_0_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__ExtensionAssignment_1_0_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXImportDeclarationAccess().getExtensionAssignment_1_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3502:1: ( ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) ) )\n // InternalCsv.g:3503:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\n {\n // InternalCsv.g:3503:1: ( ( rule__XImportDeclaration__StaticAssignment_1_0_0 ) )\n // InternalCsv.g:3504:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \n }\n // InternalCsv.g:3505:2: ( rule__XImportDeclaration__StaticAssignment_1_0_0 )\n // InternalCsv.g:3505:3: rule__XImportDeclaration__StaticAssignment_1_0_0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__StaticAssignment_1_0_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getStaticAssignment_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__Group_1_1_3__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6268:1: ( ( ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6269:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6269:1: ( ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6270:1: ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_3_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6271:1: ( rule__XMemberFeatureCall__Alternatives_1_1_3_1 )?\n int alt42=2;\n int LA42_0 = input.LA(1);\n\n if ( ((LA42_0>=RULE_ID && LA42_0<=RULE_STRING)||LA42_0==20||(LA42_0>=23 && LA42_0<=24)||LA42_0==29||(LA42_0>=31 && LA42_0<=32)||LA42_0==35||(LA42_0>=41 && LA42_0<=42)||(LA42_0>=44 && LA42_0<=45)||LA42_0==47||(LA42_0>=51 && LA42_0<=53)||(LA42_0>=55 && LA42_0<=60)||LA42_0==63||LA42_0==69) ) {\n alt42=1;\n }\n switch (alt42) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:6271:2: rule__XMemberFeatureCall__Alternatives_1_1_3_1\n {\n pushFollow(FOLLOW_rule__XMemberFeatureCall__Alternatives_1_1_3_1_in_rule__XMemberFeatureCall__Group_1_1_3__1__Impl12802);\n rule__XMemberFeatureCall__Alternatives_1_1_3_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_1_3_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXLiteral() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:895:2: ( ( ( rule__XLiteral__Alternatives ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:896:1: ( ( rule__XLiteral__Alternatives ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:896:1: ( ( rule__XLiteral__Alternatives ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:897:1: ( rule__XLiteral__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXLiteralAccess().getAlternatives()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:898:1: ( rule__XLiteral__Alternatives )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:898:2: rule__XLiteral__Alternatives\n {\n pushFollow(FOLLOW_rule__XLiteral__Alternatives_in_ruleXLiteral1847);\n rule__XLiteral__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXLiteralAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIntLiteral__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1793:1: ( ( ( rule__XIntLiteral__Group_0__0 ) ) | ( ( rule__XIntLiteral__Group_1__0 ) ) )\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==RULE_INT) ) {\n int LA2_1 = input.LA(2);\n\n if ( (LA2_1==30) ) {\n int LA2_2 = input.LA(3);\n\n if ( (LA2_2==RULE_ID||LA2_2==20) ) {\n alt2=2;\n }\n else if ( (LA2_2==RULE_INT) ) {\n alt2=1;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 2, input);\n\n throw nvae;\n }\n }\n else if ( (LA2_1==EOF||(LA2_1>=RULE_ID && LA2_1<=RULE_STRING)||(LA2_1>=12 && LA2_1<=29)||(LA2_1>=31 && LA2_1<=32)||(LA2_1>=35 && LA2_1<=41)||(LA2_1>=43 && LA2_1<=53)||(LA2_1>=55 && LA2_1<=63)||(LA2_1>=67 && LA2_1<=69)) ) {\n alt2=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 1, input);\n\n throw nvae;\n }\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n switch (alt2) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1794:1: ( ( rule__XIntLiteral__Group_0__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1794:1: ( ( rule__XIntLiteral__Group_0__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1795:1: ( rule__XIntLiteral__Group_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXIntLiteralAccess().getGroup_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1796:1: ( rule__XIntLiteral__Group_0__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1796:2: rule__XIntLiteral__Group_0__0\n {\n pushFollow(FOLLOW_rule__XIntLiteral__Group_0__0_in_rule__XIntLiteral__Alternatives3764);\n rule__XIntLiteral__Group_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXIntLiteralAccess().getGroup_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1800:6: ( ( rule__XIntLiteral__Group_1__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1800:6: ( ( rule__XIntLiteral__Group_1__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1801:1: ( rule__XIntLiteral__Group_1__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXIntLiteralAccess().getGroup_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1802:1: ( rule__XIntLiteral__Group_1__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:1802:2: rule__XIntLiteral__Group_1__0\n {\n pushFollow(FOLLOW_rule__XIntLiteral__Group_1__0_in_rule__XIntLiteral__Alternatives3782);\n rule__XIntLiteral__Group_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXIntLiteralAccess().getGroup_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XMemberFeatureCall__Group_1_0_0_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:8211:1: ( ( ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 ) ) )\r\n // InternalDroneScript.g:8212:1: ( ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 ) )\r\n {\r\n // InternalDroneScript.g:8212:1: ( ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 ) )\r\n // InternalDroneScript.g:8213:2: ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_0_0_0_1()); \r\n }\r\n // InternalDroneScript.g:8214:2: ( rule__XMemberFeatureCall__Alternatives_1_0_0_0_1 )\r\n // InternalDroneScript.g:8214:3: rule__XMemberFeatureCall__Alternatives_1_0_0_0_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XMemberFeatureCall__Alternatives_1_0_0_0_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXMemberFeatureCallAccess().getAlternatives_1_0_0_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleAction() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:117:2: ( ( ( rule__Action__Alternatives ) ) )\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n {\n // InternalCsv.g:118:2: ( ( rule__Action__Alternatives ) )\n // InternalCsv.g:119:3: ( rule__Action__Alternatives )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getActionAccess().getAlternatives()); \n }\n // InternalCsv.g:120:3: ( rule__Action__Alternatives )\n // InternalCsv.g:120:4: rule__Action__Alternatives\n {\n pushFollow(FOLLOW_2);\n rule__Action__Alternatives();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getActionAccess().getAlternatives()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2422:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\n int alt23=2;\n int LA23_0 = input.LA(1);\n\n if ( (LA23_0==RULE_ID||LA23_0==44||LA23_0==63) ) {\n alt23=1;\n }\n else if ( (LA23_0==64) ) {\n alt23=2;\n }\n else {\n if (state.backtracking>0) {state.failed=true; return ;}\n NoViableAltException nvae =\n new NoViableAltException(\"\", 23, 0, input);\n\n throw nvae;\n }\n switch (alt23) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2423:1: ( ruleJvmTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2424:1: ruleJvmTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5231);\n ruleJvmTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2429:6: ( ruleJvmWildcardTypeReference )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2430:1: ruleJvmWildcardTypeReference\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives5248);\n ruleJvmWildcardTypeReference();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXExpressionOrVarDeclaration() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:1492:2: ( ( ( rule__XExpressionOrVarDeclaration__Alternatives ) ) )\r\n // InternalDroneScript.g:1493:2: ( ( rule__XExpressionOrVarDeclaration__Alternatives ) )\r\n {\r\n // InternalDroneScript.g:1493:2: ( ( rule__XExpressionOrVarDeclaration__Alternatives ) )\r\n // InternalDroneScript.g:1494:3: ( rule__XExpressionOrVarDeclaration__Alternatives )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXExpressionOrVarDeclarationAccess().getAlternatives()); \r\n }\r\n // InternalDroneScript.g:1495:3: ( rule__XExpressionOrVarDeclaration__Alternatives )\r\n // InternalDroneScript.g:1495:4: rule__XExpressionOrVarDeclaration__Alternatives\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XExpressionOrVarDeclaration__Alternatives();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXExpressionOrVarDeclarationAccess().getAlternatives()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleTypeImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n\n \tenterRule();\n\n try {\n // InternalNgt.g:1345:2: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // InternalNgt.g:1346:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // InternalNgt.g:1346:2: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // InternalNgt.g:1347:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_5); \n\n \t\t\tnewLeafNode(otherlv_0, grammarAccess.getTypeImportAccess().getImportKeyword_0());\n \t\t\n // InternalNgt.g:1351:3: ( (lv_importURI_1_0= RULE_STRING ) )\n // InternalNgt.g:1352:4: (lv_importURI_1_0= RULE_STRING )\n {\n // InternalNgt.g:1352:4: (lv_importURI_1_0= RULE_STRING )\n // InternalNgt.g:1353:5: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_2); \n\n \t\t\t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getTypeImportAccess().getImportURISTRINGTerminalRuleCall_1_0());\n \t\t\t\t\n\n \t\t\t\t\tif (current==null) {\n \t\t\t\t\t\tcurrent = createModelElement(grammarAccess.getTypeImportRule());\n \t\t\t\t\t}\n \t\t\t\t\tsetWithLastConsumed(\n \t\t\t\t\t\tcurrent,\n \t\t\t\t\t\t\"importURI\",\n \t\t\t\t\t\tlv_importURI_1_0,\n \t\t\t\t\t\t\"org.eclipse.xtext.common.Terminals.STRING\");\n \t\t\t\t\n\n }\n\n\n }\n\n\n }\n\n\n }\n\n\n \tleaveRule();\n\n }\n\n catch (RecognitionException re) {\n recover(input,re);\n appendSkippedTokens();\n }\n finally {\n }\n return current;\n }", "public final void rule__Compilation_initial__ImportdeclAssignment_1_1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15695:1: ( ( ruleImportDecl ) )\r\n // InternalGo.g:15696:2: ( ruleImportDecl )\r\n {\r\n // InternalGo.g:15696:2: ( ruleImportDecl )\r\n // InternalGo.g:15697:3: ruleImportDecl\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getCompilation_initialAccess().getImportdeclImportDeclParserRuleCall_1_1_0()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n ruleImportDecl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getCompilation_initialAccess().getImportdeclImportDeclParserRuleCall_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstPackage__Alternatives_4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2450:1: ( ( ( rule__AstPackage__EntitiesAssignment_4_0 ) ) | ( ( rule__AstPackage__ImportsAssignment_4_1 ) ) | ( ( rule__AstPackage__UnitsAssignment_4_2 ) ) )\n int alt2=3;\n switch ( input.LA(1) ) {\n case 57:\n case 68:\n case 70:\n case 91:\n {\n alt2=1;\n }\n break;\n case 54:\n {\n alt2=2;\n }\n break;\n case 50:\n {\n alt2=3;\n }\n break;\n default:\n NoViableAltException nvae =\n new NoViableAltException(\"\", 2, 0, input);\n\n throw nvae;\n }\n\n switch (alt2) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2451:1: ( ( rule__AstPackage__EntitiesAssignment_4_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2451:1: ( ( rule__AstPackage__EntitiesAssignment_4_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2452:1: ( rule__AstPackage__EntitiesAssignment_4_0 )\n {\n before(grammarAccess.getAstPackageAccess().getEntitiesAssignment_4_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2453:1: ( rule__AstPackage__EntitiesAssignment_4_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2453:2: rule__AstPackage__EntitiesAssignment_4_0\n {\n pushFollow(FOLLOW_rule__AstPackage__EntitiesAssignment_4_0_in_rule__AstPackage__Alternatives_45172);\n rule__AstPackage__EntitiesAssignment_4_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstPackageAccess().getEntitiesAssignment_4_0()); \n\n }\n\n\n }\n break;\n case 2 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2457:6: ( ( rule__AstPackage__ImportsAssignment_4_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2457:6: ( ( rule__AstPackage__ImportsAssignment_4_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2458:1: ( rule__AstPackage__ImportsAssignment_4_1 )\n {\n before(grammarAccess.getAstPackageAccess().getImportsAssignment_4_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2459:1: ( rule__AstPackage__ImportsAssignment_4_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2459:2: rule__AstPackage__ImportsAssignment_4_1\n {\n pushFollow(FOLLOW_rule__AstPackage__ImportsAssignment_4_1_in_rule__AstPackage__Alternatives_45190);\n rule__AstPackage__ImportsAssignment_4_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstPackageAccess().getImportsAssignment_4_1()); \n\n }\n\n\n }\n break;\n case 3 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2463:6: ( ( rule__AstPackage__UnitsAssignment_4_2 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2463:6: ( ( rule__AstPackage__UnitsAssignment_4_2 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2464:1: ( rule__AstPackage__UnitsAssignment_4_2 )\n {\n before(grammarAccess.getAstPackageAccess().getUnitsAssignment_4_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2465:1: ( rule__AstPackage__UnitsAssignment_4_2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:2465:2: rule__AstPackage__UnitsAssignment_4_2\n {\n pushFollow(FOLLOW_rule__AstPackage__UnitsAssignment_4_2_in_rule__AstPackage__Alternatives_45208);\n rule__AstPackage__UnitsAssignment_4_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstPackageAccess().getUnitsAssignment_4_2()); \n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XVariableDeclaration__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12763:1: ( ( ( rule__XVariableDeclaration__Alternatives_2 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12764:1: ( ( rule__XVariableDeclaration__Alternatives_2 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12764:1: ( ( rule__XVariableDeclaration__Alternatives_2 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12765:1: ( rule__XVariableDeclaration__Alternatives_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXVariableDeclarationAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12766:1: ( rule__XVariableDeclaration__Alternatives_2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:12766:2: rule__XVariableDeclaration__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__XVariableDeclaration__Alternatives_2_in_rule__XVariableDeclaration__Group__2__Impl25956);\r\n rule__XVariableDeclaration__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXVariableDeclarationAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final EObject ruleImport() throws RecognitionException {\n EObject current = null;\n\n Token otherlv_0=null;\n Token lv_importURI_1_0=null;\n\n enterRule(); \n \n try {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:298:28: ( (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:1: (otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:299:3: otherlv_0= 'import' ( (lv_importURI_1_0= RULE_STRING ) )\n {\n otherlv_0=(Token)match(input,15,FOLLOW_15_in_ruleImport672); \n\n \tnewLeafNode(otherlv_0, grammarAccess.getImportAccess().getImportKeyword_0());\n \n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:303:1: ( (lv_importURI_1_0= RULE_STRING ) )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n {\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:304:1: (lv_importURI_1_0= RULE_STRING )\n // ../de.hs_rm.cs.vs.dsm.flow/src-gen/de/hs_rm/cs/vs/dsm/parser/antlr/internal/InternalFlow.g:305:3: lv_importURI_1_0= RULE_STRING\n {\n lv_importURI_1_0=(Token)match(input,RULE_STRING,FOLLOW_RULE_STRING_in_ruleImport689); \n\n \t\t\tnewLeafNode(lv_importURI_1_0, grammarAccess.getImportAccess().getImportURISTRINGTerminalRuleCall_1_0()); \n \t\t\n\n \t if (current==null) {\n \t current = createModelElement(grammarAccess.getImportRule());\n \t }\n \t\tsetWithLastConsumed(\n \t\t\tcurrent, \n \t\t\t\"importURI\",\n \t\tlv_importURI_1_0, \n \t\t\"STRING\");\n \t \n\n }\n\n\n }\n\n\n }\n\n\n }\n\n leaveRule(); \n }\n \n catch (RecognitionException re) { \n recover(input,re); \n appendSkippedTokens();\n } \n finally {\n }\n return current;\n }", "public final void rule__JvmWildcardTypeReference__ConstraintsAssignment_2_1_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:4070:1: ( ( ruleJvmLowerBoundAnded ) )\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n {\n // InternalCsv.g:4071:2: ( ruleJvmLowerBoundAnded )\n // InternalCsv.g:4072:3: ruleJvmLowerBoundAnded\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n pushFollow(FOLLOW_2);\n ruleJvmLowerBoundAnded();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getConstraintsJvmLowerBoundAndedParserRuleCall_2_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ParameterDecl__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3365:1: ( ( ( rule__ParameterDecl__Group_0__0 ) ) | ( ( rule__ParameterDecl__Group_1__0 ) ) )\r\n int alt11=2;\r\n alt11 = dfa11.predict(input);\r\n switch (alt11) {\r\n case 1 :\r\n // InternalGo.g:3366:2: ( ( rule__ParameterDecl__Group_0__0 ) )\r\n {\r\n // InternalGo.g:3366:2: ( ( rule__ParameterDecl__Group_0__0 ) )\r\n // InternalGo.g:3367:3: ( rule__ParameterDecl__Group_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getParameterDeclAccess().getGroup_0()); \r\n }\r\n // InternalGo.g:3368:3: ( rule__ParameterDecl__Group_0__0 )\r\n // InternalGo.g:3368:4: rule__ParameterDecl__Group_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ParameterDecl__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getParameterDeclAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // InternalGo.g:3372:2: ( ( rule__ParameterDecl__Group_1__0 ) )\r\n {\r\n // InternalGo.g:3372:2: ( ( rule__ParameterDecl__Group_1__0 ) )\r\n // InternalGo.g:3373:3: ( rule__ParameterDecl__Group_1__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getParameterDeclAccess().getGroup_1()); \r\n }\r\n // InternalGo.g:3374:3: ( rule__ParameterDecl__Group_1__0 )\r\n // InternalGo.g:3374:4: rule__ParameterDecl__Group_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ParameterDecl__Group_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getParameterDeclAccess().getGroup_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11725:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11726:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11727:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==31||LA73_0==65) ) {\n alt73=1;\n }\n switch (alt73) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11728:2: rule__JvmWildcardTypeReference__Alternatives_2\n {\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl23519);\n rule__JvmWildcardTypeReference__Alternatives_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmArgumentTypeReference__Alternatives() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3110:1: ( ( ruleJvmTypeReference ) | ( ruleJvmWildcardTypeReference ) )\r\n int alt34=2;\r\n int LA34_0 = input.LA(1);\r\n\r\n if ( (LA34_0==RULE_ID||LA34_0==26||LA34_0==106) ) {\r\n alt34=1;\r\n }\r\n else if ( (LA34_0==125) ) {\r\n alt34=2;\r\n }\r\n else {\r\n if (state.backtracking>0) {state.failed=true; return ;}\r\n NoViableAltException nvae =\r\n new NoViableAltException(\"\", 34, 0, input);\r\n\r\n throw nvae;\r\n }\r\n switch (alt34) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3111:1: ( ruleJvmTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3112:1: ruleJvmTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6756);\r\n ruleJvmTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmTypeReferenceParserRuleCall_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n case 2 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3117:6: ( ruleJvmWildcardTypeReference )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3118:1: ruleJvmWildcardTypeReference\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_ruleJvmWildcardTypeReference_in_rule__JvmArgumentTypeReference__Alternatives6773);\r\n ruleJvmWildcardTypeReference();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmArgumentTypeReferenceAccess().getJvmWildcardTypeReferenceParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmWildcardTypeReference__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16574:1: ( ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16575:1: ( ( rule__JvmWildcardTypeReference__Alternatives_2 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16576:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:1: ( rule__JvmWildcardTypeReference__Alternatives_2 )?\r\n int alt106=2;\r\n int LA106_0 = input.LA(1);\r\n\r\n if ( (LA106_0==39||LA106_0==126) ) {\r\n alt106=1;\r\n }\r\n switch (alt106) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:16577:2: rule__JvmWildcardTypeReference__Alternatives_2\r\n {\r\n pushFollow(FOLLOW_rule__JvmWildcardTypeReference__Alternatives_2_in_rule__JvmWildcardTypeReference__Group__2__Impl33455);\r\n rule__JvmWildcardTypeReference__Alternatives_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getJvmWildcardTypeReferenceAccess().getAlternatives_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstUnit__ExternalsAssignment_4_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22583:1: ( ( ( rule__AstUnit__ExternalsAlternatives_4_2_0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22584:1: ( ( rule__AstUnit__ExternalsAlternatives_4_2_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22584:1: ( ( rule__AstUnit__ExternalsAlternatives_4_2_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22585:1: ( rule__AstUnit__ExternalsAlternatives_4_2_0 )\n {\n before(grammarAccess.getAstUnitAccess().getExternalsAlternatives_4_2_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22586:1: ( rule__AstUnit__ExternalsAlternatives_4_2_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22586:2: rule__AstUnit__ExternalsAlternatives_4_2_0\n {\n pushFollow(FOLLOW_rule__AstUnit__ExternalsAlternatives_4_2_0_in_rule__AstUnit__ExternalsAssignment_4_245230);\n rule__AstUnit__ExternalsAlternatives_4_2_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstUnitAccess().getExternalsAlternatives_4_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7509572", "0.7348443", "0.7315116", "0.71581984", "0.6886478", "0.6717681", "0.6650702", "0.614745", "0.59976184", "0.5860015", "0.576417", "0.57304174", "0.5716903", "0.5678401", "0.5510288", "0.54756737", "0.5364337", "0.5355735", "0.5326518", "0.52748436", "0.52649724", "0.52622616", "0.5256856", "0.52535987", "0.52454066", "0.5244374", "0.5231886", "0.5218567", "0.51946616", "0.51776123", "0.5160046", "0.5144016", "0.50858617", "0.50851995", "0.5083648", "0.5064758", "0.504199", "0.50395215", "0.5028412", "0.50262713", "0.5020658", "0.499813", "0.49975783", "0.49948674", "0.4984766", "0.4981774", "0.4960538", "0.49522558", "0.49518764", "0.49451065", "0.49308938", "0.49197903", "0.4919356", "0.490501", "0.48999158", "0.48941365", "0.48657155", "0.4855324", "0.48548388", "0.48512056", "0.484751", "0.48425734", "0.48327836", "0.483086", "0.48273578", "0.48037797", "0.47925127", "0.4787587", "0.4780268", "0.4774023", "0.47721612", "0.47591335", "0.47576192", "0.47534516", "0.47433373", "0.47343493", "0.47279665", "0.4723973", "0.4722734", "0.47212932", "0.47147104", "0.4708803", "0.47086993", "0.47056833", "0.47045022", "0.47025833", "0.4693963", "0.46884203", "0.46759525", "0.4675578", "0.4672581", "0.46689022", "0.4667836", "0.4661676", "0.46577638", "0.46561375", "0.46550378", "0.46548986", "0.46482408", "0.4636423" ]
0.79098594
0
$ANTLR end "rule__XImportDeclaration__Alternatives_1_0_3" $ANTLR start "rule__Model__Group__0" InternalCsv.g:867:1: rule__Model__Group__0 : rule__Model__Group__0__Impl rule__Model__Group__1 ;
public final void rule__Model__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 ) // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1 { pushFollow(FOLLOW_4); rule__Model__Group__0__Impl(); state._fsp--; if (state.failed) return ; pushFollow(FOLLOW_2); rule__Model__Group__1(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3490:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\n // InternalCsv.g:3491:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2563:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2564:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__05516);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__05519);\n rule__Import__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3582:1: ( ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) ) )\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n {\n // InternalCsv.g:3583:1: ( ( rule__XImportDeclaration__Alternatives_1_0_3 ) )\n // InternalCsv.g:3584:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n // InternalCsv.g:3585:2: ( rule__XImportDeclaration__Alternatives_1_0_3 )\n // InternalCsv.g:3585:3: rule__XImportDeclaration__Alternatives_1_0_3\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1_0_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1_0_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3409:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\n // InternalCsv.g:3410:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\n {\n pushFollow(FOLLOW_40);\n rule__XImportDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4062:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4063:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__08733);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__08736);\n rule__Import__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15461:1: ( ( () ) )\r\n // InternalGo.g:15462:1: ( () )\r\n {\r\n // InternalGo.g:15462:1: ( () )\r\n // InternalGo.g:15463:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportDeclAction_0()); \r\n }\r\n // InternalGo.g:15464:2: ()\r\n // InternalGo.g:15464:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportDeclAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:440:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:441:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__0890);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__0893);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3549:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3550:2: rule__Import__Group__0__Impl rule__Import__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__07845);\r\n rule__Import__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__07848);\r\n rule__Import__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2575:1: ( ( 'import' ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2576:1: ( 'import' )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2576:1: ( 'import' )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2577:1: 'import'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getImportKeyword_0()); \n }\n match(input,33,FOLLOW_33_in_rule__Import__Group__0__Impl5547); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getImportKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4074:1: ( ( 'import' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4075:1: ( 'import' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4075:1: ( 'import' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4076:1: 'import'\n {\n before(grammarAccess.getImportAccess().getImportKeyword_0()); \n match(input,54,FOLLOW_54_in_rule__Import__Group__0__Impl8764); \n after(grammarAccess.getImportAccess().getImportKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3448:1: ( ( ( rule__XImportDeclaration__Alternatives_1 ) ) )\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n {\n // InternalCsv.g:3449:1: ( ( rule__XImportDeclaration__Alternatives_1 ) )\n // InternalCsv.g:3450:2: ( rule__XImportDeclaration__Alternatives_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n // InternalCsv.g:3451:2: ( rule__XImportDeclaration__Alternatives_1 )\n // InternalCsv.g:3451:3: rule__XImportDeclaration__Alternatives_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Alternatives_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getAlternatives_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2538:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2539:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04997);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__05000);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:130:2: ( ( ( rule__Import__Group__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:131:1: ( ( rule__Import__Group__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:132:1: ( rule__Import__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:1: ( rule__Import__Group__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:133:2: rule__Import__Group__0\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport220);\r\n rule__Import__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:103:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:104:1: ( ( rule__Import__Group__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:105:1: ( rule__Import__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getImportAccess().getGroup()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:1: ( rule__Import__Group__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:106:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport160);\n rule__Import__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getImportAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3517:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\n // InternalCsv.g:3518:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleXImportDeclaration() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:617:2: ( ( ( rule__XImportDeclaration__Group__0 ) ) )\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n {\n // InternalCsv.g:618:2: ( ( rule__XImportDeclaration__Group__0 ) )\n // InternalCsv.g:619:3: ( rule__XImportDeclaration__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n // InternalCsv.g:620:3: ( rule__XImportDeclaration__Group__0 )\n // InternalCsv.g:620:4: rule__XImportDeclaration__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Alternatives_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:823:1: ( ( ( rule__XImportDeclaration__Group_1_0__0 ) ) | ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) ) | ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) ) )\n int alt9=3;\n alt9 = dfa9.predict(input);\n switch (alt9) {\n case 1 :\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n {\n // InternalCsv.g:824:2: ( ( rule__XImportDeclaration__Group_1_0__0 ) )\n // InternalCsv.g:825:3: ( rule__XImportDeclaration__Group_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n // InternalCsv.g:826:3: ( rule__XImportDeclaration__Group_1_0__0 )\n // InternalCsv.g:826:4: rule__XImportDeclaration__Group_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getGroup_1_0()); \n }\n\n }\n\n\n }\n break;\n case 2 :\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n {\n // InternalCsv.g:830:2: ( ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 ) )\n // InternalCsv.g:831:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n // InternalCsv.g:832:3: ( rule__XImportDeclaration__ImportedTypeAssignment_1_1 )\n // InternalCsv.g:832:4: rule__XImportDeclaration__ImportedTypeAssignment_1_1\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedTypeAssignment_1_1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedTypeAssignment_1_1()); \n }\n\n }\n\n\n }\n break;\n case 3 :\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n {\n // InternalCsv.g:836:2: ( ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 ) )\n // InternalCsv.g:837:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n // InternalCsv.g:838:3: ( rule__XImportDeclaration__ImportedNamespaceAssignment_1_2 )\n // InternalCsv.g:838:4: rule__XImportDeclaration__ImportedNamespaceAssignment_1_2\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__ImportedNamespaceAssignment_1_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportedNamespaceAssignment_1_2()); \n }\n\n }\n\n\n }\n break;\n\n }\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3561:1: ( ( 'import' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3562:1: ( 'import' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3562:1: ( 'import' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3563:1: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getImportKeyword_0()); \r\n }\r\n match(input,72,FOLLOW_72_in_rule__Import__Group__0__Impl7876); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getImportKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalMLRegression.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImport() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:241:2: ( ( ( rule__Import__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:242:1: ( ( rule__Import__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:243:1: ( rule__Import__Group__0 )\n {\n before(grammarAccess.getImportAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:1: ( rule__Import__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:244:2: rule__Import__Group__0\n {\n pushFollow(FOLLOW_rule__Import__Group__0_in_ruleImport454);\n rule__Import__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getImportAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3421:1: ( ( 'import' ) )\n // InternalCsv.g:3422:1: ( 'import' )\n {\n // InternalCsv.g:3422:1: ( 'import' )\n // InternalCsv.g:3423:2: 'import'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n match(input,39,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getImportKeyword_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportSpec__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15623:1: ( ( ( rule__ImportSpec__Alternatives_0 )? ) )\r\n // InternalGo.g:15624:1: ( ( rule__ImportSpec__Alternatives_0 )? )\r\n {\r\n // InternalGo.g:15624:1: ( ( rule__ImportSpec__Alternatives_0 )? )\r\n // InternalGo.g:15625:2: ( rule__ImportSpec__Alternatives_0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportSpecAccess().getAlternatives_0()); \r\n }\r\n // InternalGo.g:15626:2: ( rule__ImportSpec__Alternatives_0 )?\r\n int alt121=2;\r\n int LA121_0 = input.LA(1);\r\n\r\n if ( (LA121_0==RULE_ID||(LA121_0>=46 && LA121_0<=47)) ) {\r\n alt121=1;\r\n }\r\n switch (alt121) {\r\n case 1 :\r\n // InternalGo.g:15626:3: rule__ImportSpec__Alternatives_0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Alternatives_0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportSpecAccess().getAlternatives_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3406:1: ( ( ( rule__FinModelFile__Group_0__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3408:1: ( rule__FinModelFile__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:1: ( rule__FinModelFile__Group_0__0 )?\r\n int alt38=2;\r\n int LA38_0 = input.LA(1);\r\n\r\n if ( (LA38_0==71) ) {\r\n alt38=1;\r\n }\r\n switch (alt38) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:2: rule__FinModelFile__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0_in_rule__FinModelFile__Group__0__Impl7566);\r\n rule__FinModelFile__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:452:1: ( ( () ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:453:1: ( () )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:453:1: ( () )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:454:1: ()\n {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:455:1: ()\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:457:1: \n {\n }\n\n after(grammarAccess.getModelAccess().getModelAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15449:1: ( rule__ImportDecl__Group__0__Impl rule__ImportDecl__Group__1 )\r\n // InternalGo.g:15450:2: rule__ImportDecl__Group__0__Impl rule__ImportDecl__Group__1\r\n {\r\n pushFollow(FOLLOW_85);\r\n rule__ImportDecl__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:73:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:75:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:1: ( rule__Model__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel94);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1370:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1371:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0__Impl_in_rule__Language__Group__02668);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1_in_rule__Language__Group__02671);\n rule__Language__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2060:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2061:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04407);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__04410);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1827:1: ( ( ( rule__JvmTypeReference__Group_0_1__0 )* ) )\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n {\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n // InternalCsv.g:1829:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n // InternalCsv.g:1830:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n loop14:\n do {\n int alt14=2;\n int LA14_0 = input.LA(1);\n\n if ( (LA14_0==27) ) {\n alt14=1;\n }\n\n\n switch (alt14) {\n \tcase 1 :\n \t // InternalCsv.g:1830:3: rule__JvmTypeReference__Group_0_1__0\n \t {\n \t pushFollow(FOLLOW_24);\n \t rule__JvmTypeReference__Group_0_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop14;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:67:2: ( ( ( rule__Model__Group__0 ) ) )\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n {\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n // InternalCsv.g:69:3: ( rule__Model__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getGroup()); \n }\n // InternalCsv.g:70:3: ( rule__Model__Group__0 )\n // InternalCsv.g:70:4: rule__Model__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1789:1: ( rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1 )\n // InternalCsv.g:1790:2: rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1854:1: ( ( ( rule__JvmTypeReference__Group_0_1_0__0 ) ) )\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n {\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n // InternalCsv.g:1856:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n // InternalCsv.g:1857:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n // InternalCsv.g:1857:3: rule__JvmTypeReference__Group_0_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16738:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\r\n // InternalDroneScript.g:16739:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\r\n {\r\n pushFollow(FOLLOW_113);\r\n rule__XImportDeclaration__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16819:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\r\n // InternalDroneScript.g:16820:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\r\n {\r\n pushFollow(FOLLOW_114);\r\n rule__XImportDeclaration__Group_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Definition__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:552:1: ( ( ( rule__Definition__Group_0__0 ) ) )\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n {\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n // InternalWh.g:554:2: ( rule__Definition__Group_0__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup_0()); \n // InternalWh.g:555:2: ( rule__Definition__Group_0__0 )\n // InternalWh.g:555:3: rule__Definition__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1870:1: ( rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1 )\n // InternalCsv.g:1871:2: rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Link__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:750:1: ( rule__Link__Group__0__Impl rule__Link__Group__1 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:751:2: rule__Link__Group__0__Impl rule__Link__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Link__Group__0__Impl_in_rule__Link__Group__01474);\n rule__Link__Group__0__Impl();\n _fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Link__Group__1_in_rule__Link__Group__01477);\n rule__Link__Group__1();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group_2_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15542:1: ( ( '(' ) )\r\n // InternalGo.g:15543:1: ( '(' )\r\n {\r\n // InternalGo.g:15543:1: ( '(' )\r\n // InternalGo.g:15544:2: '('\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getLeftParenthesisKeyword_2_1_0()); \r\n }\r\n match(input,52,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getLeftParenthesisKeyword_2_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16900:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\r\n // InternalDroneScript.g:16901:2: rule__XImportDeclaration__Group_1_0__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4337:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4338:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__09000);\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:464:1: ( rule__Activity__Group__0__Impl rule__Activity__Group__1 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:465:2: rule__Activity__Group__0__Impl rule__Activity__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__0__Impl_in_rule__Activity__Group__0914);\n rule__Activity__Group__0__Impl();\n _fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__1_in_rule__Activity__Group__0917);\n rule__Activity__Group__1();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6471:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // InternalDroneScript.g:6472:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4367:1: ( rule__XRelationalExpression__Group_1_0_0_0__0__Impl rule__XRelationalExpression__Group_1_0_0_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4368:2: rule__XRelationalExpression__Group_1_0_0_0__0__Impl rule__XRelationalExpression__Group_1_0_0_0__1\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0_0__09059);\n rule__XRelationalExpression__Group_1_0_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0_0__1_in_rule__XRelationalExpression__Group_1_0_0_0__09062);\n rule__XRelationalExpression__Group_1_0_0_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAdditiveExpression__Group_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4953:1: ( rule__XAdditiveExpression__Group_1_0_0__0__Impl rule__XAdditiveExpression__Group_1_0_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4954:2: rule__XAdditiveExpression__Group_1_0_0__0__Impl rule__XAdditiveExpression__Group_1_0_0__1\n {\n pushFollow(FOLLOW_rule__XAdditiveExpression__Group_1_0_0__0__Impl_in_rule__XAdditiveExpression__Group_1_0_0__010209);\n rule__XAdditiveExpression__Group_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XAdditiveExpression__Group_1_0_0__1_in_rule__XAdditiveExpression__Group_1_0_0__010212);\n rule__XAdditiveExpression__Group_1_0_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3498:1: ( ( 'package' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3499:1: ( 'package' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3499:1: ( 'package' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3500:1: 'package'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getPackageKeyword_0_0()); \r\n }\r\n match(input,71,FOLLOW_71_in_rule__FinModelFile__Group_0__0__Impl7753); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getPackageKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Output__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:891:1: ( rule__Output__Group_0__0__Impl rule__Output__Group_0__1 )\n // InternalWh.g:892:2: rule__Output__Group_0__0__Impl rule__Output__Group_0__1\n {\n pushFollow(FOLLOW_13);\n rule__Output__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Output__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleImportDecl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:3042:2: ( ( ( rule__ImportDecl__Group__0 ) ) )\r\n // InternalGo.g:3043:2: ( ( rule__ImportDecl__Group__0 ) )\r\n {\r\n // InternalGo.g:3043:2: ( ( rule__ImportDecl__Group__0 ) )\r\n // InternalGo.g:3044:3: ( rule__ImportDecl__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getGroup()); \r\n }\r\n // InternalGo.g:3045:3: ( rule__ImportDecl__Group__0 )\r\n // InternalGo.g:3045:4: rule__ImportDecl__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportDecl__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Language__Group_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1626:1: ( rule__Language__Group_4__0__Impl rule__Language__Group_4__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1627:2: rule__Language__Group_4__0__Impl rule__Language__Group_4__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0__Impl_in_rule__Language__Group_4__03169);\n rule__Language__Group_4__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1_in_rule__Language__Group_4__03172);\n rule__Language__Group_4__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3394:1: ( rule__FinModelFile__Group__0__Impl rule__FinModelFile__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3395:2: rule__FinModelFile__Group__0__Impl rule__FinModelFile__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__0__Impl_in_rule__FinModelFile__Group__07536);\r\n rule__FinModelFile__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__1_in_rule__FinModelFile__Group__07539);\r\n rule__FinModelFile__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Database__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1418:1: ( rule__Database__Group__0__Impl rule__Database__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1419:2: rule__Database__Group__0__Impl rule__Database__Group__1\n {\n pushFollow(FOLLOW_rule__Database__Group__0__Impl_in_rule__Database__Group__02816);\n rule__Database__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Database__Group__1_in_rule__Database__Group__02819);\n rule__Database__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3486:1: ( rule__FinModelFile__Group_0__0__Impl rule__FinModelFile__Group_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3487:2: rule__FinModelFile__Group_0__0__Impl rule__FinModelFile__Group_0__1\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0__Impl_in_rule__FinModelFile__Group_0__07722);\r\n rule__FinModelFile__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1_in_rule__FinModelFile__Group_0__07725);\r\n rule__FinModelFile__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Dataset__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1207:1: ( ( 'import' ) )\n // InternalMLRegression.g:1208:1: ( 'import' )\n {\n // InternalMLRegression.g:1208:1: ( 'import' )\n // InternalMLRegression.g:1209:2: 'import'\n {\n before(grammarAccess.getDatasetAccess().getImportKeyword_0()); \n match(input,25,FOLLOW_2); \n after(grammarAccess.getDatasetAccess().getImportKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22111:1: ( ( '@' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22112:1: ( '@' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22112:1: ( '@' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22113:1: '@'\n {\n before(grammarAccess.getAstAnnotationAccess().getCommercialAtKeyword_0()); \n match(input,91,FOLLOW_91_in_rule__AstAnnotation__Group__0__Impl44295); \n after(grammarAccess.getAstAnnotationAccess().getCommercialAtKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportSpec__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15611:1: ( rule__ImportSpec__Group__0__Impl rule__ImportSpec__Group__1 )\r\n // InternalGo.g:15612:2: rule__ImportSpec__Group__0__Impl rule__ImportSpec__Group__1\r\n {\r\n pushFollow(FOLLOW_89);\r\n rule__ImportSpec__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Definition__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:621:1: ( rule__Definition__Group_0__0__Impl rule__Definition__Group_0__1 )\n // InternalWh.g:622:2: rule__Definition__Group_0__0__Impl rule__Definition__Group_0__1\n {\n pushFollow(FOLLOW_10);\n rule__Definition__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAdditiveExpression__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4923:1: ( rule__XAdditiveExpression__Group_1_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4924:2: rule__XAdditiveExpression__Group_1_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XAdditiveExpression__Group_1_0__0__Impl_in_rule__XAdditiveExpression__Group_1_0__010150);\n rule__XAdditiveExpression__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:648:1: ( rule__Attribute__Group_0__0__Impl rule__Attribute__Group_0__1 )\n // InternalMyDsl.g:649:2: rule__Attribute__Group_0__0__Impl rule__Attribute__Group_0__1\n {\n pushFollow(FOLLOW_8);\n rule__Attribute__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1676:1: ( rule__Column__Group__0__Impl rule__Column__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1677:2: rule__Column__Group__0__Impl rule__Column__Group__1\n {\n pushFollow(FOLLOW_rule__Column__Group__0__Impl_in_rule__Column__Group__03316);\n rule__Column__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Column__Group__1_in_rule__Column__Group__03319);\n rule__Column__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7226:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7227:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__015074);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Atributo__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2793:1: ( rule__Atributo__Group__0__Impl rule__Atributo__Group__1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2794:2: rule__Atributo__Group__0__Impl rule__Atributo__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__0__Impl_in_rule__Atributo__Group__05471);\n rule__Atributo__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__1_in_rule__Atributo__Group__05474);\n rule__Atributo__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3474:1: ( ( ( ';' )? ) )\n // InternalCsv.g:3475:1: ( ( ';' )? )\n {\n // InternalCsv.g:3475:1: ( ( ';' )? )\n // InternalCsv.g:3476:2: ( ';' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n // InternalCsv.g:3477:2: ( ';' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==14) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // InternalCsv.g:3477:3: ';'\n {\n match(input,14,FOLLOW_2); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3118:1: ( rule__Action__Group_0_0__0__Impl rule__Action__Group_0_0__1 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3119:2: rule__Action__Group_0_0__0__Impl rule__Action__Group_0_0__1\n {\n pushFollow(FOLLOW_rule__Action__Group_0_0__0__Impl_in_rule__Action__Group_0_0__06140);\n rule__Action__Group_0_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Action__Group_0_0__1_in_rule__Action__Group_0_0__06143);\n rule__Action__Group_0_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:540:1: ( rule__Definition__Group__0__Impl rule__Definition__Group__1 )\n // InternalWh.g:541:2: rule__Definition__Group__0__Impl rule__Definition__Group__1\n {\n pushFollow(FOLLOW_9);\n rule__Definition__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAdditiveExpression__Group_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:7362:1: ( rule__XAdditiveExpression__Group_1_0__0__Impl )\r\n // InternalDroneScript.g:7363:2: rule__XAdditiveExpression__Group_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAdditiveExpression__Group_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAdditiveExpression__Group_1_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:7373:1: ( ( ( rule__XAdditiveExpression__Group_1_0_0__0 ) ) )\r\n // InternalDroneScript.g:7374:1: ( ( rule__XAdditiveExpression__Group_1_0_0__0 ) )\r\n {\r\n // InternalDroneScript.g:7374:1: ( ( rule__XAdditiveExpression__Group_1_0_0__0 ) )\r\n // InternalDroneScript.g:7375:2: ( rule__XAdditiveExpression__Group_1_0_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAdditiveExpressionAccess().getGroup_1_0_0()); \r\n }\r\n // InternalDroneScript.g:7376:2: ( rule__XAdditiveExpression__Group_1_0_0__0 )\r\n // InternalDroneScript.g:7376:3: rule__XAdditiveExpression__Group_1_0_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAdditiveExpression__Group_1_0_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAdditiveExpressionAccess().getGroup_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4215:1: ( rule__XRelationalExpression__Group__0__Impl rule__XRelationalExpression__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4216:2: rule__XRelationalExpression__Group__0__Impl rule__XRelationalExpression__Group__1\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group__0__Impl_in_rule__XRelationalExpression__Group__08758);\n rule__XRelationalExpression__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XRelationalExpression__Group__1_in_rule__XRelationalExpression__Group__08761);\n rule__XRelationalExpression__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:778:1: ( rule__Output__Group__0__Impl rule__Output__Group__1 )\n // InternalWh.g:779:2: rule__Output__Group__0__Impl rule__Output__Group__1\n {\n pushFollow(FOLLOW_11);\n rule__Output__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Output__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16873:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\r\n // InternalDroneScript.g:16874:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\r\n {\r\n pushFollow(FOLLOW_115);\r\n rule__XImportDeclaration__Group_1_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4276:1: ( rule__XRelationalExpression__Group_1_0__0__Impl rule__XRelationalExpression__Group_1_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4277:2: rule__XRelationalExpression__Group_1_0__0__Impl rule__XRelationalExpression__Group_1_0__1\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_0__08879);\n rule__XRelationalExpression__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0__1_in_rule__XRelationalExpression__Group_1_0__08882);\n rule__XRelationalExpression__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4523:1: ( rule__XRelationalExpression__Group_1_1_0_0__0__Impl rule__XRelationalExpression__Group_1_1_0_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4524:2: rule__XRelationalExpression__Group_1_1_0_0__0__Impl rule__XRelationalExpression__Group_1_1_0_0__1\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0_0__09363);\n rule__XRelationalExpression__Group_1_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0_0__1_in_rule__XRelationalExpression__Group_1_1_0_0__09366);\n rule__XRelationalExpression__Group_1_1_0_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6482:1: ( ( ( rule__XRelationalExpression__Group_1_0_0_0__0 ) ) )\r\n // InternalDroneScript.g:6483:1: ( ( rule__XRelationalExpression__Group_1_0_0_0__0 ) )\r\n {\r\n // InternalDroneScript.g:6483:1: ( ( rule__XRelationalExpression__Group_1_0_0_0__0 ) )\r\n // InternalDroneScript.g:6484:2: ( rule__XRelationalExpression__Group_1_0_0_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0_0_0()); \r\n }\r\n // InternalDroneScript.g:6485:2: ( rule__XRelationalExpression__Group_1_0_0_0__0 )\r\n // InternalDroneScript.g:6485:3: rule__XRelationalExpression__Group_1_0_0_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.7093889", "0.7048727", "0.6998418", "0.699618", "0.6950009", "0.6946937", "0.6910933", "0.6835091", "0.6834482", "0.6819605", "0.68170995", "0.6806156", "0.6772763", "0.67604166", "0.6747697", "0.67129666", "0.6637112", "0.6631788", "0.6631697", "0.6628538", "0.66147685", "0.6614387", "0.6613404", "0.6601603", "0.65845823", "0.65734303", "0.65556717", "0.65278584", "0.6505292", "0.650226", "0.64996094", "0.6459292", "0.6447111", "0.64464784", "0.6436155", "0.64266324", "0.6423683", "0.6406372", "0.6385748", "0.6379256", "0.63654023", "0.63616157", "0.635772", "0.6348366", "0.63411415", "0.6339951", "0.63254595", "0.6321305", "0.6308289", "0.6300676", "0.62992793", "0.6281963", "0.6277432", "0.62579596", "0.62333673", "0.6218898", "0.6217216", "0.6214702", "0.62105364", "0.62057585", "0.6201522", "0.61895424", "0.6185933", "0.6185279", "0.6179237", "0.6174559", "0.61730057", "0.61694086", "0.61680186", "0.61596835", "0.6158573", "0.61465544", "0.614051", "0.6131499", "0.6126919", "0.6124749", "0.6124571", "0.61204004", "0.6119102", "0.6117232", "0.61143416", "0.61124665", "0.61114234", "0.61059177", "0.60788316", "0.60786605", "0.60719913", "0.6068522", "0.6061269", "0.60599464", "0.6052937", "0.6047471", "0.6041544", "0.60390294", "0.60383254", "0.60361123", "0.603547", "0.60234797", "0.6022956", "0.6018741" ]
0.735173
0
$ANTLR end "rule__Model__Group__0" $ANTLR start "rule__Model__Group__0__Impl" InternalCsv.g:879:1: rule__Model__Group__0__Impl : ( () ) ;
public final void rule__Model__Group__0__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:883:1: ( ( () ) ) // InternalCsv.g:884:1: ( () ) { // InternalCsv.g:884:1: ( () ) // InternalCsv.g:885:2: () { if ( state.backtracking==0 ) { before(grammarAccess.getModelAccess().getModelAction_0()); } // InternalCsv.g:886:2: () // InternalCsv.g:886:3: { } if ( state.backtracking==0 ) { after(grammarAccess.getModelAccess().getModelAction_0()); } } } } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:440:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:441:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__0890);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__0893);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:552:1: ( ( ( rule__Definition__Group_0__0 ) ) )\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n {\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n // InternalWh.g:554:2: ( rule__Definition__Group_0__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup_0()); \n // InternalWh.g:555:2: ( rule__Definition__Group_0__0 )\n // InternalWh.g:555:3: rule__Definition__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6471:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // InternalDroneScript.g:6472:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4337:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4338:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__09000);\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:452:1: ( ( () ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:453:1: ( () )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:453:1: ( () )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:454:1: ()\n {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:455:1: ()\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:457:1: \n {\n }\n\n after(grammarAccess.getModelAccess().getModelAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3517:1: ( rule__FinModelFile__Group_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3518:2: rule__FinModelFile__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1__Impl_in_rule__FinModelFile__Group_0__17784);\r\n rule__FinModelFile__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7226:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7227:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__015074);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Definition__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:540:1: ( rule__Definition__Group__0__Impl rule__Definition__Group__1 )\n // InternalWh.g:541:2: rule__Definition__Group__0__Impl rule__Definition__Group__1\n {\n pushFollow(FOLLOW_9);\n rule__Definition__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:344:1: ( rule__Program__Group__0__Impl rule__Program__Group__1 )\n // InternalWh.g:345:2: rule__Program__Group__0__Impl rule__Program__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Program__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:373:1: ( rule__Program__Group__0__Impl rule__Program__Group__1 )\n // InternalWh.g:374:2: rule__Program__Group__0__Impl rule__Program__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Program__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2538:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2539:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04997);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__05000);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6606:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\r\n // InternalDroneScript.g:6607:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Definition__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:481:1: ( rule__Definition__Group__0__Impl rule__Definition__Group__1 )\n // InternalWh.g:482:2: rule__Definition__Group__0__Impl rule__Definition__Group__1\n {\n pushFollow(FOLLOW_7);\n rule__Definition__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:648:1: ( rule__Definition__Group_0__1__Impl )\n // InternalWh.g:649:2: rule__Definition__Group_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6525:1: ( rule__XRelationalExpression__Group_1_0_0_0__1__Impl )\r\n // InternalDroneScript.g:6526:2: rule__XRelationalExpression__Group_1_0_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4493:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4494:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0__09304);\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:891:1: ( rule__Output__Group_0__0__Impl rule__Output__Group_0__1 )\n // InternalWh.g:892:2: rule__Output__Group_0__0__Impl rule__Output__Group_0__1\n {\n pushFollow(FOLLOW_13);\n rule__Output__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Output__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalMLRegression.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:621:1: ( rule__Definition__Group_0__0__Impl rule__Definition__Group_0__1 )\n // InternalWh.g:622:2: rule__Definition__Group_0__0__Impl rule__Definition__Group_0__1\n {\n pushFollow(FOLLOW_10);\n rule__Definition__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2574:1: ( rule__Model__Group__1__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2575:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__15074);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15461:1: ( ( () ) )\r\n // InternalGo.g:15462:1: ( () )\r\n {\r\n // InternalGo.g:15462:1: ( () )\r\n // InternalGo.g:15463:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImportDeclAction_0()); \r\n }\r\n // InternalGo.g:15464:2: ()\r\n // InternalGo.g:15464:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImportDeclAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:778:1: ( rule__Output__Group__0__Impl rule__Output__Group__1 )\n // InternalWh.g:779:2: rule__Output__Group__0__Impl rule__Output__Group__1\n {\n pushFollow(FOLLOW_11);\n rule__Output__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Output__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2060:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2061:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04407);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__04410);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RangeClause__Group_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12047:1: ( rule__RangeClause__Group_0_0__1__Impl )\r\n // InternalGo.g:12048:2: rule__RangeClause__Group_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__RangeClause__Group_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Output__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:945:1: ( rule__Output__Group_0__2__Impl )\n // InternalWh.g:946:2: rule__Output__Group_0__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group_0__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:810:1: ( rule__Input__Group_0__0__Impl rule__Input__Group_0__1 )\n // InternalWh.g:811:2: rule__Input__Group_0__0__Impl rule__Input__Group_0__1\n {\n pushFollow(FOLLOW_13);\n rule__Input__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Input__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1843:1: ( rule__JvmTypeReference__Group_0_1__0__Impl )\n // InternalCsv.g:1844:2: rule__JvmTypeReference__Group_0_1__0__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7382:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7383:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0__015378);\r\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:500:1: ( rule__Model__Group__2__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:501:2: rule__Model__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__2__Impl_in_rule__Model__Group__21013);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3406:1: ( ( ( rule__FinModelFile__Group_0__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3408:1: ( rule__FinModelFile__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:1: ( rule__FinModelFile__Group_0__0 )?\r\n int alt38=2;\r\n int LA38_0 = input.LA(1);\r\n\r\n if ( (LA38_0==71) ) {\r\n alt38=1;\r\n }\r\n switch (alt38) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:2: rule__FinModelFile__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0_in_rule__FinModelFile__Group__0__Impl7566);\r\n rule__FinModelFile__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Input__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:670:1: ( rule__Input__Group__0__Impl rule__Input__Group__1 )\n // InternalWh.g:671:2: rule__Input__Group__0__Impl rule__Input__Group__1\n {\n pushFollow(FOLLOW_11);\n rule__Input__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Input__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2563:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2564:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__05516);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__05519);\n rule__Import__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1676:1: ( rule__Column__Group__0__Impl rule__Column__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1677:2: rule__Column__Group__0__Impl rule__Column__Group__1\n {\n pushFollow(FOLLOW_rule__Column__Group__0__Impl_in_rule__Column__Group__03316);\n rule__Column__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Column__Group__1_in_rule__Column__Group__03319);\n rule__Column__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:898:1: ( rule__Model__Group__1__Impl )\n // InternalMLRegression.g:899:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4062:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4063:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__08733);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__08736);\n rule__Import__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:122:1: ( rule__Input__Group__0__Impl rule__Input__Group__1 )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:123:2: rule__Input__Group__0__Impl rule__Input__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__0__Impl_in_rule__Input__Group__0188);\r\n rule__Input__Group__0__Impl();\r\n\r\n state._fsp--;\r\n\r\n pushFollow(FOLLOW_rule__Input__Group__1_in_rule__Input__Group__0191);\r\n rule__Input__Group__1();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:864:1: ( rule__Input__Group_0__2__Impl )\n // InternalWh.g:865:2: rule__Input__Group_0__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group_0__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:805:1: ( rule__Output__Group__1__Impl )\n // InternalWh.g:806:2: rule__Output__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3490:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\n // InternalCsv.g:3491:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2167:1: ( rule__XFunctionTypeRef__Group_0_1__1__Impl )\n // InternalCsv.g:2168:2: rule__XFunctionTypeRef__Group_0_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6660:1: ( rule__XRelationalExpression__Group_1_1_0_0__1__Impl )\r\n // InternalDroneScript.g:6661:2: rule__XRelationalExpression__Group_1_1_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_1_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__TopLevelDecl__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4541:1: ( rule__TopLevelDecl__Group_0__1__Impl )\r\n // InternalGo.g:4542:2: rule__TopLevelDecl__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__TopLevelDecl__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:859:1: ( rule__Output__Group_1__1__Impl )\n // InternalWh.g:860:2: rule__Output__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4398:1: ( rule__XRelationalExpression__Group_1_0_0_0__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4399:2: rule__XRelationalExpression__Group_1_0_0_0__1__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0_0__1__Impl_in_rule__XRelationalExpression__Group_1_0_0_0__19120);\n rule__XRelationalExpression__Group_1_0_0_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14463:1: ( rule__AstInputPattern__Group_0__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14464:2: rule__AstInputPattern__Group_0__1__Impl\n {\n pushFollow(FOLLOW_rule__AstInputPattern__Group_0__1__Impl_in_rule__AstInputPattern__Group_0__129239);\n rule__AstInputPattern__Group_0__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Database__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1418:1: ( rule__Database__Group__0__Impl rule__Database__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1419:2: rule__Database__Group__0__Impl rule__Database__Group__1\n {\n pushFollow(FOLLOW_rule__Database__Group__0__Impl_in_rule__Database__Group__02816);\n rule__Database__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Database__Group__1_in_rule__Database__Group__02819);\n rule__Database__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14841:1: ( rule__AstOutputPattern__Group_0__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14842:2: rule__AstOutputPattern__Group_0__1__Impl\n {\n pushFollow(FOLLOW_rule__AstOutputPattern__Group_0__1__Impl_in_rule__AstOutputPattern__Group_0__129984);\n rule__AstOutputPattern__Group_0__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__UnaryExpr__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12560:1: ( rule__UnaryExpr__Group_0__1__Impl )\r\n // InternalGo.g:12561:2: rule__UnaryExpr__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__UnaryExpr__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Statement__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:7430:1: ( rule__Statement__Group_0__1__Impl )\r\n // InternalGo.g:7431:2: rule__Statement__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Statement__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__FinModelFile__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3498:1: ( ( 'package' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3499:1: ( 'package' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3499:1: ( 'package' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3500:1: 'package'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getPackageKeyword_0_0()); \r\n }\r\n match(input,71,FOLLOW_71_in_rule__FinModelFile__Group_0__0__Impl7753); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getPackageKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7287:1: ( rule__XRelationalExpression__Group_1_0_0_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7288:2: rule__XRelationalExpression__Group_1_0_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0_0__1__Impl_in_rule__XRelationalExpression__Group_1_0_0_0__115194);\r\n rule__XRelationalExpression__Group_1_0_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Schema__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:486:1: ( rule__Schema__Group__0__Impl rule__Schema__Group__1 )\n // InternalMyDsl.g:487:2: rule__Schema__Group__0__Impl rule__Schema__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Schema__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Schema__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__CommCase__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:11438:1: ( ( () ) )\r\n // InternalGo.g:11439:1: ( () )\r\n {\r\n // InternalGo.g:11439:1: ( () )\r\n // InternalGo.g:11440:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getCommCaseAccess().getCommCaseAction_0_0()); \r\n }\r\n // InternalGo.g:11441:2: ()\r\n // InternalGo.g:11441:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getCommCaseAccess().getCommCaseAction_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3409:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\n // InternalCsv.g:3410:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\n {\n pushFollow(FOLLOW_40);\n rule__XImportDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1568:1: ( rule__Input__Group__0__Impl rule__Input__Group__1 )\n // InternalBrowser.g:1569:2: rule__Input__Group__0__Impl rule__Input__Group__1\n {\n pushFollow(FOLLOW_9);\n rule__Input__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Input__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Field__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1805:1: ( rule__Field__Group__0__Impl rule__Field__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1806:2: rule__Field__Group__0__Impl rule__Field__Group__1\n {\n pushFollow(FOLLOW_rule__Field__Group__0__Impl_in_rule__Field__Group__03566);\n rule__Field__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Field__Group__1_in_rule__Field__Group__03569);\n rule__Field__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1370:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1371:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0__Impl_in_rule__Language__Group__02668);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1_in_rule__Language__Group__02671);\n rule__Language__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Commands__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:972:1: ( rule__Commands__Group_0__0__Impl rule__Commands__Group_0__1 )\n // InternalWh.g:973:2: rule__Commands__Group_0__0__Impl rule__Commands__Group_0__1\n {\n pushFollow(FOLLOW_14);\n rule__Commands__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Commands__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:918:1: ( rule__Output__Group_0__1__Impl rule__Output__Group_0__2 )\n // InternalWh.g:919:2: rule__Output__Group_0__1__Impl rule__Output__Group_0__2\n {\n pushFollow(FOLLOW_10);\n rule__Output__Group_0__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Output__Group_0__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Commands__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:886:1: ( rule__Commands__Group__0__Impl rule__Commands__Group__1 )\n // InternalWh.g:887:2: rule__Commands__Group__0__Impl rule__Commands__Group__1\n {\n pushFollow(FOLLOW_13);\n rule__Commands__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Commands__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3301:1: ( rule__QualifiedName__Group_1__1__Impl )\n // InternalCsv.g:3302:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Midi__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:974:1: ( rule__Midi__Group__0__Impl rule__Midi__Group__1 )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:975:2: rule__Midi__Group__0__Impl rule__Midi__Group__1\n {\n pushFollow(FOLLOW_rule__Midi__Group__0__Impl_in_rule__Midi__Group__02103);\n rule__Midi__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Midi__Group__1_in_rule__Midi__Group__02106);\n rule__Midi__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Commands__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:1026:1: ( rule__Commands__Group_0__2__Impl )\n // InternalWh.g:1027:2: rule__Commands__Group_0__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Commands__Group_0__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:579:1: ( ( ( rule__Definition__Group_1__0 ) ) )\n // InternalWh.g:580:1: ( ( rule__Definition__Group_1__0 ) )\n {\n // InternalWh.g:580:1: ( ( rule__Definition__Group_1__0 ) )\n // InternalWh.g:581:2: ( rule__Definition__Group_1__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup_1()); \n // InternalWh.g:582:2: ( rule__Definition__Group_1__0 )\n // InternalWh.g:582:3: rule__Definition__Group_1__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3247:1: ( rule__QualifiedName__Group__1__Impl )\n // InternalCsv.g:3248:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XOrExpression__Group_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5904:1: ( rule__XOrExpression__Group_1_0__0__Impl )\r\n // InternalDroneScript.g:5905:2: rule__XOrExpression__Group_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XOrExpression__Group_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1854:1: ( ( ( rule__JvmTypeReference__Group_0_1_0__0 ) ) )\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n {\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n // InternalCsv.g:1856:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n // InternalCsv.g:1857:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n // InternalCsv.g:1857:3: rule__JvmTypeReference__Group_0_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1897:1: ( rule__JvmTypeReference__Group_0_1_0__1__Impl )\n // InternalCsv.g:1898:2: rule__JvmTypeReference__Group_0_1_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Function__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:432:1: ( rule__Function__Group__0__Impl rule__Function__Group__1 )\n // InternalWh.g:433:2: rule__Function__Group__0__Impl rule__Function__Group__1\n {\n pushFollow(FOLLOW_6);\n rule__Function__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Function__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Declaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1271:1: ( rule__Declaration__Group__0__Impl rule__Declaration__Group__1 )\n // InternalBrowser.g:1272:2: rule__Declaration__Group__0__Impl rule__Declaration__Group__1\n {\n pushFollow(FOLLOW_5);\n rule__Declaration__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Declaration__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22111:1: ( ( '@' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22112:1: ( '@' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22112:1: ( '@' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22113:1: '@'\n {\n before(grammarAccess.getAstAnnotationAccess().getCommercialAtKeyword_0()); \n match(input,91,FOLLOW_91_in_rule__AstAnnotation__Group__0__Impl44295); \n after(grammarAccess.getAstAnnotationAccess().getCommercialAtKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XOrExpression__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3692:1: ( rule__XOrExpression__Group_1_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3693:2: rule__XOrExpression__Group_1_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XOrExpression__Group_1_0__0__Impl_in_rule__XOrExpression__Group_1_0__07731);\n rule__XOrExpression__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:486:1: ( ( 'Empresa' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:487:1: ( 'Empresa' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:487:1: ( 'Empresa' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:488:1: 'Empresa'\n {\n before(grammarAccess.getEmpresaAccess().getEmpresaKeyword_0()); \n match(input,15,FollowSets000.FOLLOW_15_in_rule__Empresa__Group__0__Impl943); \n after(grammarAccess.getEmpresaAccess().getEmpresaKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1816:1: ( rule__JvmTypeReference__Group_0__1__Impl )\n // InternalCsv.g:1817:2: rule__JvmTypeReference__Group_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:643:1: ( rule__Definition__Group__6__Impl )\n // InternalWh.g:644:2: rule__Definition__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1531:1: ( ( () ) )\n // InternalCsv.g:1532:1: ( () )\n {\n // InternalCsv.g:1532:1: ( () )\n // InternalCsv.g:1533:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n // InternalCsv.g:1534:2: ()\n // InternalCsv.g:1534:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbRowAccess().getNbRowAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ConstDecl__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:8495:1: ( ( () ) )\r\n // InternalGo.g:8496:1: ( () )\r\n {\r\n // InternalGo.g:8496:1: ( () )\r\n // InternalGo.g:8497:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConstDeclAccess().getConstDeclAction_0()); \r\n }\r\n // InternalGo.g:8498:2: ()\r\n // InternalGo.g:8498:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConstDeclAccess().getConstDeclAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Input__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:244:1: ( rule__Input__Group__4__Impl )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:245:2: rule__Input__Group__4__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__4__Impl_in_rule__Input__Group__4434);\r\n rule__Input__Group__4__Impl();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.7445975", "0.7249132", "0.716892", "0.6997851", "0.69057155", "0.6883747", "0.6875401", "0.68610865", "0.6824615", "0.6819401", "0.68069863", "0.67883956", "0.67741424", "0.67592", "0.67382413", "0.6710199", "0.6696191", "0.6675805", "0.6666436", "0.6655329", "0.66495764", "0.66465855", "0.66399527", "0.6635917", "0.66328436", "0.66292036", "0.66272783", "0.66138184", "0.66118073", "0.66046506", "0.659065", "0.65900594", "0.6557749", "0.6552978", "0.65382224", "0.65259415", "0.6523326", "0.6520026", "0.6519911", "0.6514929", "0.6513117", "0.64885896", "0.6472879", "0.6468683", "0.6465817", "0.64514774", "0.64289755", "0.6423052", "0.6420002", "0.641904", "0.64168954", "0.641612", "0.6409295", "0.6402369", "0.6398856", "0.6396872", "0.63912356", "0.6383941", "0.63824755", "0.6375795", "0.63599586", "0.63592964", "0.6358148", "0.6346881", "0.63461256", "0.6343637", "0.6341141", "0.6336632", "0.63356596", "0.63309234", "0.6330042", "0.632649", "0.6325072", "0.63178396", "0.6315918", "0.6309437", "0.6309152", "0.62996876", "0.6299003", "0.6293481", "0.62933475", "0.6291869", "0.62863356", "0.62756455", "0.62705404", "0.6268877", "0.6265088", "0.625877", "0.62567407", "0.6255953", "0.62464494", "0.62464", "0.62441874", "0.6243555", "0.6238981", "0.6237305", "0.6235947", "0.6235476", "0.62335104", "0.6231701" ]
0.7148378
3
$ANTLR end "rule__Model__Group__0__Impl" $ANTLR start "rule__Model__Group__1" InternalCsv.g:894:1: rule__Model__Group__1 : rule__Model__Group__1__Impl rule__Model__Group__2 ;
public final void rule__Model__Group__1() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 ) // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2 { pushFollow(FOLLOW_5); rule__Model__Group__1__Impl(); state._fsp--; if (state.failed) return ; pushFollow(FOLLOW_2); rule__Model__Group__2(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:471:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:472:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__1951);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__2_in_rule__Model__Group__1954);\n rule__Model__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:898:1: ( rule__Model__Group__1__Impl )\n // InternalMLRegression.g:899:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2574:1: ( rule__Model__Group__1__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2575:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__15074);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:440:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:441:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__0890);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__0893);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:500:1: ( rule__Model__Group__2__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:501:2: rule__Model__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__2__Impl_in_rule__Model__Group__21013);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1465:1: ( rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2 )\n // InternalCsv.g:1466:2: rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__PrintCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1141:1: ( rule__Language__Group__1__Impl rule__Language__Group__2 )\n // InternalCsv.g:1142:2: rule__Language__Group__1__Impl rule__Language__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Language__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3301:1: ( rule__QualifiedName__Group_1__1__Impl )\n // InternalCsv.g:3302:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3247:1: ( rule__QualifiedName__Group__1__Impl )\n // InternalCsv.g:3248:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2538:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2539:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04997);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__05000);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalMLRegression.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2089:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2090:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__14468);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__2_in_rule__Model__Group__14471);\n rule__Model__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3517:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\n // InternalCsv.g:3518:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3517:1: ( rule__FinModelFile__Group_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3518:2: rule__FinModelFile__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1__Impl_in_rule__FinModelFile__Group_0__17784);\r\n rule__FinModelFile__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Field__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1836:1: ( rule__Field__Group__1__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1837:2: rule__Field__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Field__Group__1__Impl_in_rule__Field__Group__13627);\n rule__Field__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3490:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\n // InternalCsv.g:3491:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3463:1: ( rule__XImportDeclaration__Group__2__Impl )\n // InternalCsv.g:3464:2: rule__XImportDeclaration__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6606:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\r\n // InternalDroneScript.g:6607:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6525:1: ( rule__XRelationalExpression__Group_1_0_0_0__1__Impl )\r\n // InternalDroneScript.g:6526:2: rule__XRelationalExpression__Group_1_0_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3423:1: ( rule__FinModelFile__Group__1__Impl rule__FinModelFile__Group__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3424:2: rule__FinModelFile__Group__1__Impl rule__FinModelFile__Group__2\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__1__Impl_in_rule__FinModelFile__Group__17597);\r\n rule__FinModelFile__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__2_in_rule__FinModelFile__Group__17600);\r\n rule__FinModelFile__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Definition__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:579:1: ( ( ( rule__Definition__Group_1__0 ) ) )\n // InternalWh.g:580:1: ( ( rule__Definition__Group_1__0 ) )\n {\n // InternalWh.g:580:1: ( ( rule__Definition__Group_1__0 ) )\n // InternalWh.g:581:2: ( rule__Definition__Group_1__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup_1()); \n // InternalWh.g:582:2: ( rule__Definition__Group_1__0 )\n // InternalWh.g:582:3: rule__Definition__Group_1__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_1__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3274:1: ( rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1 )\n // InternalCsv.g:3275:2: rule__QualifiedName__Group_1__0__Impl rule__QualifiedName__Group_1__1\n {\n pushFollow(FOLLOW_5);\n rule__QualifiedName__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6660:1: ( rule__XRelationalExpression__Group_1_1_0_0__1__Impl )\r\n // InternalDroneScript.g:6661:2: rule__XRelationalExpression__Group_1_1_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_1_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__QualifiedName__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3258:1: ( ( ( rule__QualifiedName__Group_1__0 )* ) )\n // InternalCsv.g:3259:1: ( ( rule__QualifiedName__Group_1__0 )* )\n {\n // InternalCsv.g:3259:1: ( ( rule__QualifiedName__Group_1__0 )* )\n // InternalCsv.g:3260:2: ( rule__QualifiedName__Group_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n // InternalCsv.g:3261:2: ( rule__QualifiedName__Group_1__0 )*\n loop26:\n do {\n int alt26=2;\n int LA26_0 = input.LA(1);\n\n if ( (LA26_0==33) ) {\n int LA26_2 = input.LA(2);\n\n if ( (LA26_2==RULE_ID) ) {\n alt26=1;\n }\n\n\n }\n\n\n switch (alt26) {\n \tcase 1 :\n \t // InternalCsv.g:3261:3: rule__QualifiedName__Group_1__0\n \t {\n \t pushFollow(FOLLOW_35);\n \t rule__QualifiedName__Group_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop26;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getQualifiedNameAccess().getGroup_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2060:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2061:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04407);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__04410);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4493:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4494:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0__09304);\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:508:1: ( rule__Definition__Group__1__Impl rule__Definition__Group__2 )\n // InternalWh.g:509:2: rule__Definition__Group__1__Impl rule__Definition__Group__2\n {\n pushFollow(FOLLOW_8);\n rule__Definition__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:859:1: ( rule__Output__Group_1__1__Impl )\n // InternalWh.g:860:2: rule__Output__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1153:1: ( ( '(' ) )\n // InternalCsv.g:1154:1: ( '(' )\n {\n // InternalCsv.g:1154:1: ( '(' )\n // InternalCsv.g:1155:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Type__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5135:1: ( rule__Type__Group_0__1__Impl )\r\n // InternalGo.g:5136:2: rule__Type__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Type__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1854:1: ( ( ( rule__JvmTypeReference__Group_0_1_0__0 ) ) )\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n {\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n // InternalCsv.g:1856:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n // InternalCsv.g:1857:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n // InternalCsv.g:1857:3: rule__JvmTypeReference__Group_0_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1816:1: ( rule__JvmTypeReference__Group_0__1__Impl )\n // InternalCsv.g:1817:2: rule__JvmTypeReference__Group_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:805:1: ( rule__Output__Group__1__Impl )\n // InternalWh.g:806:2: rule__Output__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6471:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // InternalDroneScript.g:6472:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:540:1: ( rule__Definition__Group__0__Impl rule__Definition__Group__1 )\n // InternalWh.g:541:2: rule__Definition__Group__0__Impl rule__Definition__Group__1\n {\n pushFollow(FOLLOW_9);\n rule__Definition__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1827:1: ( ( ( rule__JvmTypeReference__Group_0_1__0 )* ) )\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n {\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n // InternalCsv.g:1829:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n // InternalCsv.g:1830:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n loop14:\n do {\n int alt14=2;\n int LA14_0 = input.LA(1);\n\n if ( (LA14_0==27) ) {\n alt14=1;\n }\n\n\n switch (alt14) {\n \tcase 1 :\n \t // InternalCsv.g:1830:3: rule__JvmTypeReference__Group_0_1__0\n \t {\n \t pushFollow(FOLLOW_24);\n \t rule__JvmTypeReference__Group_0_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop14;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:918:1: ( rule__Output__Group_0__1__Impl rule__Output__Group_0__2 )\n // InternalWh.g:919:2: rule__Output__Group_0__1__Impl rule__Output__Group_0__2\n {\n pushFollow(FOLLOW_10);\n rule__Output__Group_0__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Output__Group_0__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:371:1: ( rule__Program__Group__1__Impl rule__Program__Group__2 )\n // InternalWh.g:372:2: rule__Program__Group__1__Impl rule__Program__Group__2\n {\n pushFollow(FOLLOW_4);\n rule__Program__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3409:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\n // InternalCsv.g:3410:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\n {\n pushFollow(FOLLOW_40);\n rule__XImportDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2167:1: ( rule__XFunctionTypeRef__Group_0_1__1__Impl )\n // InternalCsv.g:2168:2: rule__XFunctionTypeRef__Group_0_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:648:1: ( rule__Definition__Group_0__1__Impl )\n // InternalWh.g:649:2: rule__Definition__Group_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:153:1: ( rule__Input__Group__1__Impl rule__Input__Group__2 )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:154:2: rule__Input__Group__1__Impl rule__Input__Group__2\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__1__Impl_in_rule__Input__Group__1249);\r\n rule__Input__Group__1__Impl();\r\n\r\n state._fsp--;\r\n\r\n pushFollow(FOLLOW_rule__Input__Group__2_in_rule__Input__Group__1252);\r\n rule__Input__Group__2();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6444:1: ( rule__XRelationalExpression__Group_1_0__1__Impl )\r\n // InternalDroneScript.g:6445:2: rule__XRelationalExpression__Group_1_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Program__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:373:1: ( rule__Program__Group__0__Impl rule__Program__Group__1 )\n // InternalWh.g:374:2: rule__Program__Group__0__Impl rule__Program__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Program__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1843:1: ( rule__JvmTypeReference__Group_0_1__0__Impl )\n // InternalCsv.g:1844:2: rule__JvmTypeReference__Group_0_1__0__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1897:1: ( rule__JvmTypeReference__Group_0_1_0__1__Impl )\n // InternalCsv.g:1898:2: rule__JvmTypeReference__Group_0_1_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:400:1: ( rule__Program__Group__1__Impl rule__Program__Group__2 )\n // InternalWh.g:401:2: rule__Program__Group__1__Impl rule__Program__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Program__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:567:1: ( rule__Definition__Group__1__Impl rule__Definition__Group__2 )\n // InternalWh.g:568:2: rule__Definition__Group__1__Impl rule__Definition__Group__2\n {\n pushFollow(FOLLOW_9);\n rule__Definition__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:481:1: ( rule__Definition__Group__0__Impl rule__Definition__Group__1 )\n // InternalWh.g:482:2: rule__Definition__Group__0__Impl rule__Definition__Group__1\n {\n pushFollow(FOLLOW_7);\n rule__Definition__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2563:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2564:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__05516);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__05519);\n rule__Import__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4398:1: ( rule__XRelationalExpression__Group_1_0_0_0__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4399:2: rule__XRelationalExpression__Group_1_0_0_0__1__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0_0__1__Impl_in_rule__XRelationalExpression__Group_1_0_0_0__19120);\n rule__XRelationalExpression__Group_1_0_0_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3436:1: ( rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2 )\n // InternalCsv.g:3437:2: rule__XImportDeclaration__Group__1__Impl rule__XImportDeclaration__Group__2\n {\n pushFollow(FOLLOW_6);\n rule__XImportDeclaration__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1370:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1371:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0__Impl_in_rule__Language__Group__02668);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1_in_rule__Language__Group__02671);\n rule__Language__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4093:1: ( rule__Import__Group__1__Impl rule__Import__Group__2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4094:2: rule__Import__Group__1__Impl rule__Import__Group__2\n {\n pushFollow(FOLLOW_rule__Import__Group__1__Impl_in_rule__Import__Group__18795);\n rule__Import__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__2_in_rule__Import__Group__18798);\n rule__Import__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4062:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4063:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__08733);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__08736);\n rule__Import__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1627:1: ( rule__NbCol__Group__1__Impl rule__NbCol__Group__2 )\n // InternalCsv.g:1628:2: rule__NbCol__Group__1__Impl rule__NbCol__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbCol__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_2_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20762:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20763:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20763:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20764:1: ','\n {\n before(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_1_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstType__Group_0_1_2_1_1__0__Impl41639); \n after(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_1_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Field__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1805:1: ( rule__Field__Group__0__Impl rule__Field__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1806:2: rule__Field__Group__0__Impl rule__Field__Group__1\n {\n pushFollow(FOLLOW_rule__Field__Group__0__Impl_in_rule__Field__Group__03566);\n rule__Field__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Field__Group__1_in_rule__Field__Group__03569);\n rule__Field__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4337:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4338:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__09000);\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2594:1: ( rule__Import__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2595:2: rule__Import__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Import__Group__1__Impl_in_rule__Import__Group__15578);\n rule__Import__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7382:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7383:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0__015378);\r\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_1_0_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4554:1: ( rule__XRelationalExpression__Group_1_1_0_0__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4555:2: rule__XRelationalExpression__Group_1_1_0_0__1__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0_0__1__Impl_in_rule__XRelationalExpression__Group_1_1_0_0__19424);\n rule__XRelationalExpression__Group_1_1_0_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:464:1: ( rule__Activity__Group__0__Impl rule__Activity__Group__1 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:465:2: rule__Activity__Group__0__Impl rule__Activity__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__0__Impl_in_rule__Activity__Group__0914);\n rule__Activity__Group__0__Impl();\n _fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__1_in_rule__Activity__Group__0917);\n rule__Activity__Group__1();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group_2_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:357:1: ( ( ',' ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:358:1: ( ',' )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:358:1: ( ',' )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:359:1: ','\r\n {\r\n before(grammarAccess.getInputAccess().getCommaKeyword_2_1_0()); \r\n match(input,10,FOLLOW_10_in_rule__Input__Group_2_1__0__Impl656); \r\n after(grammarAccess.getInputAccess().getCommaKeyword_2_1_0()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4305:1: ( rule__XRelationalExpression__Group_1_0__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4306:2: rule__XRelationalExpression__Group_1_0__1__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0__1__Impl_in_rule__XRelationalExpression__Group_1_0__18939);\n rule__XRelationalExpression__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:702:1: ( rule__Definition__Group_1__1__Impl )\n // InternalWh.g:703:2: rule__Definition__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:552:1: ( ( ( rule__Definition__Group_0__0 ) ) )\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n {\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n // InternalWh.g:554:2: ( rule__Definition__Group_0__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup_0()); \n // InternalWh.g:555:2: ( rule__Definition__Group_0__0 )\n // InternalWh.g:555:3: rule__Definition__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7399137", "0.7061703", "0.6942415", "0.6937074", "0.6922042", "0.68744886", "0.6852355", "0.6812055", "0.6811109", "0.6805978", "0.6791379", "0.67884684", "0.6782708", "0.6729988", "0.6722007", "0.6645252", "0.6619028", "0.65808994", "0.6545815", "0.65385526", "0.6532189", "0.651934", "0.6516399", "0.6512589", "0.6510764", "0.6488777", "0.6483397", "0.64525235", "0.6405993", "0.64054996", "0.63914174", "0.63864243", "0.6378622", "0.63720495", "0.63467246", "0.6341291", "0.632814", "0.6323903", "0.6307735", "0.6301577", "0.6291764", "0.6291738", "0.62862945", "0.6285143", "0.6279114", "0.6277005", "0.6274539", "0.62724966", "0.6268413", "0.6265708", "0.62592596", "0.62579095", "0.62529826", "0.6249333", "0.6240037", "0.6223153", "0.6218327", "0.62165993", "0.6216308", "0.6216081", "0.621591", "0.62123716", "0.6212345", "0.62009054", "0.6200348", "0.61923206", "0.6189964", "0.61852634", "0.6182569", "0.6179786", "0.6177949", "0.6177451", "0.61729956", "0.617011", "0.6167797", "0.61674684", "0.6166514", "0.61641705", "0.6161499", "0.616148", "0.6160979", "0.61605686", "0.61564255", "0.61561704", "0.61561394", "0.6155719", "0.6148433", "0.6143174", "0.6138556", "0.61381906", "0.61315674", "0.61310893", "0.61271477", "0.61257035", "0.61238533", "0.6121011", "0.6119864", "0.61155707", "0.6113373", "0.6112014" ]
0.7556974
0
$ANTLR end "rule__Model__Group__1" $ANTLR start "rule__Model__Group__1__Impl" InternalCsv.g:906:1: rule__Model__Group__1__Impl : ( 'package' ) ;
public final void rule__Model__Group__1__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:910:1: ( ( 'package' ) ) // InternalCsv.g:911:1: ( 'package' ) { // InternalCsv.g:911:1: ( 'package' ) // InternalCsv.g:912:2: 'package' { if ( state.backtracking==0 ) { before(grammarAccess.getModelAccess().getPackageKeyword_1()); } match(input,13,FOLLOW_2); if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getModelAccess().getPackageKeyword_1()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__PackageClause__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4892:1: ( rule__PackageClause__Group__1__Impl )\r\n // InternalGo.g:4893:2: rule__PackageClause__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__PackageClause__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstPackage__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3500:1: ( ( 'package' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3501:1: ( 'package' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3501:1: ( 'package' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3502:1: 'package'\n {\n before(grammarAccess.getAstPackageAccess().getPackageKeyword_1()); \n match(input,48,FOLLOW_48_in_rule__AstPackage__Group__1__Impl7636); \n after(grammarAccess.getAstPackageAccess().getPackageKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3498:1: ( ( 'package' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3499:1: ( 'package' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3499:1: ( 'package' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3500:1: 'package'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getPackageKeyword_0_0()); \r\n }\r\n match(input,71,FOLLOW_71_in_rule__FinModelFile__Group_0__0__Impl7753); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getPackageKeyword_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3301:1: ( rule__QualifiedName__Group_1__1__Impl )\n // InternalCsv.g:3302:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3579:1: ( rule__AstPackage__Group__4__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3580:2: rule__AstPackage__Group__4__Impl\n {\n pushFollow(FOLLOW_rule__AstPackage__Group__4__Impl_in_rule__AstPackage__Group__47789);\n rule__AstPackage__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3247:1: ( rule__QualifiedName__Group__1__Impl )\n // InternalCsv.g:3248:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PackageClause__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4877:1: ( ( 'package' ) )\r\n // InternalGo.g:4878:1: ( 'package' )\r\n {\r\n // InternalGo.g:4878:1: ( 'package' )\r\n // InternalGo.g:4879:2: 'package'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getPackageClauseAccess().getPackageKeyword_0()); \r\n }\r\n match(input,49,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getPackageClauseAccess().getPackageKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2574:1: ( rule__Model__Group__1__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2575:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__15074);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2594:1: ( rule__Import__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2595:2: rule__Import__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Import__Group__1__Impl_in_rule__Import__Group__15578);\n rule__Import__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3517:1: ( rule__FinModelFile__Group_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3518:2: rule__FinModelFile__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1__Impl_in_rule__FinModelFile__Group_0__17784);\r\n rule__FinModelFile__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3580:1: ( rule__Import__Group__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3581:2: rule__Import__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__1__Impl_in_rule__Import__Group__17907);\r\n rule__Import__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3560:1: ( ( ';' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3561:1: ( ';' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3561:1: ( ';' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3562:1: ';'\n {\n before(grammarAccess.getAstPackageAccess().getSemicolonKeyword_3()); \n match(input,49,FOLLOW_49_in_rule__AstPackage__Group__3__Impl7758); \n after(grammarAccess.getAstPackageAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3457:1: ( rule__AstPackage__Group__0__Impl rule__AstPackage__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3458:2: rule__AstPackage__Group__0__Impl rule__AstPackage__Group__1\n {\n pushFollow(FOLLOW_rule__AstPackage__Group__0__Impl_in_rule__AstPackage__Group__07544);\n rule__AstPackage__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstPackage__Group__1_in_rule__AstPackage__Group__07547);\n rule__AstPackage__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:898:1: ( rule__Model__Group__1__Impl )\n // InternalMLRegression.g:899:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PackageClause__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4865:1: ( rule__PackageClause__Group__0__Impl rule__PackageClause__Group__1 )\r\n // InternalGo.g:4866:2: rule__PackageClause__Group__0__Impl rule__PackageClause__Group__1\r\n {\r\n pushFollow(FOLLOW_10);\r\n rule__PackageClause__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__PackageClause__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstPackage__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3469:1: ( ( () ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3470:1: ( () )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3470:1: ( () )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3471:1: ()\n {\n before(grammarAccess.getAstPackageAccess().getAstNamespaceAction_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3472:1: ()\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3474:1: \n {\n }\n\n after(grammarAccess.getAstPackageAccess().getAstNamespaceAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3463:1: ( rule__XImportDeclaration__Group__2__Impl )\n // InternalCsv.g:3464:2: rule__XImportDeclaration__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3488:1: ( rule__AstPackage__Group__1__Impl rule__AstPackage__Group__2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3489:2: rule__AstPackage__Group__1__Impl rule__AstPackage__Group__2\n {\n pushFollow(FOLLOW_rule__AstPackage__Group__1__Impl_in_rule__AstPackage__Group__17605);\n rule__AstPackage__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstPackage__Group__2_in_rule__AstPackage__Group__17608);\n rule__AstPackage__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PackageClause__Group__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4903:1: ( ( rulePackageName ) )\r\n // InternalGo.g:4904:1: ( rulePackageName )\r\n {\r\n // InternalGo.g:4904:1: ( rulePackageName )\r\n // InternalGo.g:4905:2: rulePackageName\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getPackageClauseAccess().getPackageNameParserRuleCall_1()); \r\n }\r\n pushFollow(FOLLOW_2);\r\n rulePackageName();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getPackageClauseAccess().getPackageNameParserRuleCall_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Field__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1836:1: ( rule__Field__Group__1__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1837:2: rule__Field__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Field__Group__1__Impl_in_rule__Field__Group__13627);\n rule__Field__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:500:1: ( rule__Model__Group__2__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:501:2: rule__Model__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__2__Impl_in_rule__Model__Group__21013);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:805:1: ( rule__Output__Group__1__Impl )\n // InternalWh.g:806:2: rule__Output__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:859:1: ( rule__Output__Group_1__1__Impl )\n // InternalWh.g:860:2: rule__Output__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAstPackage() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:101:2: ( ( ( rule__AstPackage__Group__0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:102:1: ( ( rule__AstPackage__Group__0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:102:1: ( ( rule__AstPackage__Group__0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:103:1: ( rule__AstPackage__Group__0 )\n {\n before(grammarAccess.getAstPackageAccess().getGroup()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:104:1: ( rule__AstPackage__Group__0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:104:2: rule__AstPackage__Group__0\n {\n pushFollow(FOLLOW_rule__AstPackage__Group__0_in_ruleAstPackage154);\n rule__AstPackage__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstPackageAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:471:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:472:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__1951);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__2_in_rule__Model__Group__1954);\n rule__Model__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:440:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:441:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__0890);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__0893);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Statement__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:7430:1: ( rule__Statement__Group_0__1__Impl )\r\n // InternalGo.g:7431:2: rule__Statement__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Statement__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2563:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2564:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__05516);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__05519);\n rule__Import__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3490:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\n // InternalCsv.g:3491:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportSpec__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15638:1: ( rule__ImportSpec__Group__1__Impl )\r\n // InternalGo.g:15639:2: rule__ImportSpec__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ImportSpec__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3409:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\n // InternalCsv.g:3410:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\n {\n pushFollow(FOLLOW_40);\n rule__XImportDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePackageClause() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:242:2: ( ( ( rule__PackageClause__Group__0 ) ) )\r\n // InternalGo.g:243:2: ( ( rule__PackageClause__Group__0 ) )\r\n {\r\n // InternalGo.g:243:2: ( ( rule__PackageClause__Group__0 ) )\r\n // InternalGo.g:244:3: ( rule__PackageClause__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getPackageClauseAccess().getGroup()); \r\n }\r\n // InternalGo.g:245:3: ( rule__PackageClause__Group__0 )\r\n // InternalGo.g:245:4: rule__PackageClause__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__PackageClause__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getPackageClauseAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1657:1: ( rule__Language__Group_4__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1658:2: rule__Language__Group_4__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1__Impl_in_rule__Language__Group_4__13231);\n rule__Language__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1816:1: ( rule__JvmTypeReference__Group_0__1__Impl )\n // InternalCsv.g:1817:2: rule__JvmTypeReference__Group_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group_7__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1678:1: ( rule__Catalogo__Group_7__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1679:2: rule__Catalogo__Group_7__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group_7__1__Impl_in_rule__Catalogo__Group_7__13283);\n rule__Catalogo__Group_7__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14463:1: ( rule__AstInputPattern__Group_0__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14464:2: rule__AstInputPattern__Group_0__1__Impl\n {\n pushFollow(FOLLOW_rule__AstInputPattern__Group_0__1__Impl_in_rule__AstInputPattern__Group_0__129239);\n rule__AstInputPattern__Group_0__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14841:1: ( rule__AstOutputPattern__Group_0__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14842:2: rule__AstOutputPattern__Group_0__1__Impl\n {\n pushFollow(FOLLOW_rule__AstOutputPattern__Group_0__1__Impl_in_rule__AstOutputPattern__Group_0__129984);\n rule__AstOutputPattern__Group_0__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4062:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4063:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__08733);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__08736);\n rule__Import__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:16900:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\r\n // InternalDroneScript.g:16901:2: rule__XImportDeclaration__Group_1_0__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XImportDeclaration__Group_1_0__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Catalogo__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1615:1: ( rule__Catalogo__Group_3__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1616:2: rule__Catalogo__Group_3__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group_3__1__Impl_in_rule__Catalogo__Group_3__13160);\n rule__Catalogo__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstGenerator__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19709:1: ( rule__AstGenerator__Group__3__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19710:2: rule__AstGenerator__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__AstGenerator__Group__3__Impl_in_rule__AstGenerator__Group__339561);\n rule__AstGenerator__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6525:1: ( rule__XRelationalExpression__Group_1_0_0_0__1__Impl )\r\n // InternalDroneScript.g:6526:2: rule__XRelationalExpression__Group_1_0_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstTag__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10703:1: ( rule__AstTag__Group__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10704:2: rule__AstTag__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__AstTag__Group__1__Impl_in_rule__AstTag__Group__121821);\n rule__AstTag__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4250:1: ( rule__QualifiedName__Group_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4251:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1__Impl_in_rule__QualifiedName__Group_1__19103);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3517:1: ( rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2 )\n // InternalCsv.g:3518:2: rule__XImportDeclaration__Group_1_0__1__Impl rule__XImportDeclaration__Group_1_0__2\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstTag__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10766:1: ( rule__AstTag__Group_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10767:2: rule__AstTag__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstTag__Group_1__1__Impl_in_rule__AstTag__Group_1__121945);\n rule__AstTag__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1897:1: ( rule__JvmTypeReference__Group_0_1_0__1__Impl )\n // InternalCsv.g:1898:2: rule__JvmTypeReference__Group_0_1_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4187:1: ( rule__QualifiedName__Group__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4188:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__1__Impl_in_rule__QualifiedName__Group__18979);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:648:1: ( rule__Definition__Group_0__1__Impl )\n // InternalWh.g:649:2: rule__Definition__Group_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__GoStmt__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:7565:1: ( rule__GoStmt__Group__1__Impl )\r\n // InternalGo.g:7566:2: rule__GoStmt__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__GoStmt__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4493:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4494:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0__09304);\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:751:1: ( rule__Input__Group_1__1__Impl )\n // InternalWh.g:752:2: rule__Input__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6660:1: ( rule__XRelationalExpression__Group_1_1_0_0__1__Impl )\r\n // InternalDroneScript.g:6661:2: rule__XRelationalExpression__Group_1_1_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_1_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Input__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:697:1: ( rule__Input__Group__1__Impl )\n // InternalWh.g:698:2: rule__Input__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:244:1: ( rule__Input__Group__4__Impl )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:245:2: rule__Input__Group__4__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__4__Impl_in_rule__Input__Group__4434);\r\n rule__Input__Group__4__Impl();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Definition__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:702:1: ( rule__Definition__Group_1__1__Impl )\n // InternalWh.g:703:2: rule__Definition__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4122:1: ( rule__Import__Group__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4123:2: rule__Import__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__Import__Group__2__Impl_in_rule__Import__Group__28855);\n rule__Import__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Expressions__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5660:1: ( rule__Expressions__Group_1__1__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5661:2: rule__Expressions__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__Expressions__Group_1__1__Impl_in_rule__Expressions__Group_1__111103);\n rule__Expressions__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4461:1: ( rule__XRelationalExpression__Group_1_1__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4462:2: rule__XRelationalExpression__Group_1_1__1__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1__1__Impl_in_rule__XRelationalExpression__Group_1_1__19243);\n rule__XRelationalExpression__Group_1_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:643:1: ( rule__Definition__Group__6__Impl )\n // InternalWh.g:644:2: rule__Definition__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1843:1: ( rule__JvmTypeReference__Group_0_1__0__Impl )\n // InternalCsv.g:1844:2: rule__JvmTypeReference__Group_0_1__0__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Commands__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:913:1: ( rule__Commands__Group__1__Impl )\n // InternalWh.g:914:2: rule__Commands__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Commands__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group_0_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2167:1: ( rule__XFunctionTypeRef__Group_0_1__1__Impl )\n // InternalCsv.g:2168:2: rule__XFunctionTypeRef__Group_0_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group_0_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7382:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7383:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0__015378);\r\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11022:1: ( rule__QualifiedName__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11023:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group__1__Impl_in_rule__QualifiedName__Group__122127);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4398:1: ( rule__XRelationalExpression__Group_1_0_0_0__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4399:2: rule__XRelationalExpression__Group_1_0_0_0__1__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0_0__1__Impl_in_rule__XRelationalExpression__Group_1_0_0_0__19120);\n rule__XRelationalExpression__Group_1_0_0_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1105:1: ( rule__Empresa__Group_6__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1106:2: rule__Empresa__Group_6__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__1__Impl_in_rule__Empresa__Group_6__12159);\n rule__Empresa__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15561:1: ( rule__QualifiedName__Group_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:15562:2: rule__QualifiedName__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1__Impl_in_rule__QualifiedName__Group_1__131458);\r\n rule__QualifiedName__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Signature__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:6161:1: ( rule__Signature__Group__1__Impl )\r\n // InternalGo.g:6162:2: rule__Signature__Group__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Signature__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__IfStmt__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:7997:1: ( rule__IfStmt__Group_1__1__Impl )\r\n // InternalGo.g:7998:2: rule__IfStmt__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IfStmt__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Commands__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:967:1: ( rule__Commands__Group_1__1__Impl )\n // InternalWh.g:968:2: rule__Commands__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Commands__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Schema__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:486:1: ( rule__Schema__Group__0__Impl rule__Schema__Group__1 )\n // InternalMyDsl.g:487:2: rule__Schema__Group__0__Impl rule__Schema__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Schema__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Schema__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4305:1: ( rule__XRelationalExpression__Group_1_0__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4306:2: rule__XRelationalExpression__Group_1_0__1__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0__1__Impl_in_rule__XRelationalExpression__Group_1_0__18939);\n rule__XRelationalExpression__Group_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameInStaticImport__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3625:1: ( rule__QualifiedNameInStaticImport__Group__1__Impl )\n // InternalCsv.g:3626:2: rule__QualifiedNameInStaticImport__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameInStaticImport__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1676:1: ( rule__Input__Group__4__Impl )\n // InternalBrowser.g:1677:2: rule__Input__Group__4__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Declaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1271:1: ( rule__Declaration__Group__0__Impl rule__Declaration__Group__1 )\n // InternalBrowser.g:1272:2: rule__Declaration__Group__0__Impl rule__Declaration__Group__1\n {\n pushFollow(FOLLOW_5);\n rule__Declaration__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Declaration__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14906:1: ( rule__AstOutputPattern__Group_3__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14907:2: rule__AstOutputPattern__Group_3__1__Impl\n {\n pushFollow(FOLLOW_rule__AstOutputPattern__Group_3__1__Impl_in_rule__AstOutputPattern__Group_3__130109);\n rule__AstOutputPattern__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11085:1: ( rule__QualifiedName__Group_1__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:11086:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__QualifiedName__Group_1__1__Impl_in_rule__QualifiedName__Group_1__122253);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4554:1: ( rule__XRelationalExpression__Group_1_1_0_0__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4555:2: rule__XRelationalExpression__Group_1_1_0_0__1__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0_0__1__Impl_in_rule__XRelationalExpression__Group_1_1_0_0__19424);\n rule__XRelationalExpression__Group_1_1_0_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6606:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\r\n // InternalDroneScript.g:6607:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3549:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3550:2: rule__Import__Group__0__Impl rule__Import__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__07845);\r\n rule__Import__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__07848);\r\n rule__Import__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstFunction__Group_4_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8806:1: ( rule__AstFunction__Group_4_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8807:2: rule__AstFunction__Group_4_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_4_1__1__Impl_in_rule__AstFunction__Group_4_1__118088);\n rule__AstFunction__Group_4_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4244:1: ( rule__XRelationalExpression__Group__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4245:2: rule__XRelationalExpression__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group__1__Impl_in_rule__XRelationalExpression__Group__18817);\n rule__XRelationalExpression__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3561:1: ( ( 'import' ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3562:1: ( 'import' )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3562:1: ( 'import' )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3563:1: 'import'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportAccess().getImportKeyword_0()); \r\n }\r\n match(input,72,FOLLOW_72_in_rule__Import__Group__0__Impl7876); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportAccess().getImportKeyword_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Declaration__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1325:1: ( rule__Declaration__Group__2__Impl )\n // InternalBrowser.g:1326:2: rule__Declaration__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Declaration__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7035895", "0.7011012", "0.6855559", "0.6712865", "0.66696566", "0.66320115", "0.6616774", "0.65715235", "0.65495634", "0.65458757", "0.65437526", "0.651962", "0.65014774", "0.648185", "0.64521444", "0.6424175", "0.6418844", "0.64000845", "0.6397718", "0.6370458", "0.63660496", "0.6365292", "0.6358743", "0.6349126", "0.6338972", "0.633853", "0.632497", "0.6318948", "0.63001764", "0.62609214", "0.6260553", "0.6252453", "0.6249564", "0.6249373", "0.62384176", "0.6223168", "0.62109464", "0.62091315", "0.6195095", "0.6194675", "0.6192106", "0.61920595", "0.6184272", "0.61722606", "0.6168823", "0.61624396", "0.6160033", "0.61549824", "0.6153887", "0.6148734", "0.614555", "0.61432344", "0.61319435", "0.6129501", "0.6128317", "0.6120797", "0.6120233", "0.61171806", "0.6112145", "0.61120325", "0.6109167", "0.6103399", "0.6102183", "0.6100613", "0.6092625", "0.6090596", "0.60844433", "0.6083152", "0.6082586", "0.60783476", "0.6073788", "0.6064713", "0.6061516", "0.60605705", "0.6059999", "0.60597026", "0.6059543", "0.6053543", "0.6050818", "0.6047796", "0.6047081", "0.6047067", "0.60430884", "0.6041813", "0.60412574", "0.6036366", "0.6035538", "0.60331327", "0.60259104", "0.6025686", "0.6025393", "0.6024761", "0.6024653", "0.6024028", "0.6023973", "0.6023796", "0.60230345", "0.60215145", "0.6019643", "0.6018961" ]
0.785695
0
$ANTLR end "rule__Model__Group__1__Impl" $ANTLR start "rule__Model__Group__2" InternalCsv.g:921:1: rule__Model__Group__2 : rule__Model__Group__2__Impl rule__Model__Group__3 ;
public final void rule__Model__Group__2() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 ) // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3 { pushFollow(FOLLOW_6); rule__Model__Group__2__Impl(); state._fsp--; if (state.failed) return ; pushFollow(FOLLOW_2); rule__Model__Group__3(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:500:1: ( rule__Model__Group__2__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:501:2: rule__Model__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__2__Impl_in_rule__Model__Group__21013);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1654:1: ( rule__NbCol__Group__2__Impl )\n // InternalCsv.g:1655:2: rule__NbCol__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:471:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:472:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__1951);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__2_in_rule__Model__Group__1954);\n rule__Model__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3463:1: ( rule__XImportDeclaration__Group__2__Impl )\n // InternalCsv.g:3464:2: rule__XImportDeclaration__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1113:1: ( rule__Attribute__Group__2__Impl )\n // InternalBSQL2Java.g:1114:2: rule__Attribute__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group_2_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22332:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22333:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22333:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22334:1: ','\n {\n before(grammarAccess.getAstAnnotationAccess().getCommaKeyword_2_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstAnnotation__Group_2_2__0__Impl44731); \n after(grammarAccess.getAstAnnotationAccess().getCommaKeyword_2_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3452:1: ( rule__FinModelFile__Group__2__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3453:2: rule__FinModelFile__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__2__Impl_in_rule__FinModelFile__Group__27658);\r\n rule__FinModelFile__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2118:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2119:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_rule__Model__Group__2__Impl_in_rule__Model__Group__24528);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__3_in_rule__Model__Group__24531);\n rule__Model__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Declaration__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1325:1: ( rule__Declaration__Group__2__Impl )\n // InternalBrowser.g:1326:2: rule__Declaration__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Declaration__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:524:1: ( rule__Activity__Group__2__Impl rule__Activity__Group__3 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:525:2: rule__Activity__Group__2__Impl rule__Activity__Group__3\n {\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__2__Impl_in_rule__Activity__Group__21036);\n rule__Activity__Group__2__Impl();\n _fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__3_in_rule__Activity__Group__21039);\n rule__Activity__Group__3();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbRow__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1573:1: ( rule__NbRow__Group__2__Impl )\n // InternalCsv.g:1574:2: rule__NbRow__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbRow__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:535:1: ( rule__Definition__Group__2__Impl rule__Definition__Group__3 )\n // InternalWh.g:536:2: rule__Definition__Group__2__Impl rule__Definition__Group__3\n {\n pushFollow(FOLLOW_9);\n rule__Definition__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:405:1: ( rule__Program__Group__2__Impl )\n // InternalWh.g:406:2: rule__Program__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Program__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1738:1: ( rule__Column__Group__2__Impl rule__Column__Group__3 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1739:2: rule__Column__Group__2__Impl rule__Column__Group__3\n {\n pushFollow(FOLLOW_rule__Column__Group__2__Impl_in_rule__Column__Group__23439);\n rule__Column__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Column__Group__3_in_rule__Column__Group__23442);\n rule__Column__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1141:1: ( rule__Language__Group__1__Impl rule__Language__Group__2 )\n // InternalCsv.g:1142:2: rule__Language__Group__1__Impl rule__Language__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Language__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:196:1: ( ( ( rule__Input__Group_2__0 )? ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:197:1: ( ( rule__Input__Group_2__0 )? )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:197:1: ( ( rule__Input__Group_2__0 )? )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:198:1: ( rule__Input__Group_2__0 )?\r\n {\r\n before(grammarAccess.getInputAccess().getGroup_2()); \r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:199:1: ( rule__Input__Group_2__0 )?\r\n int alt1=2;\r\n int LA1_0 = input.LA(1);\r\n\r\n if ( (LA1_0==RULE_ID) ) {\r\n alt1=1;\r\n }\r\n switch (alt1) {\r\n case 1 :\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:199:2: rule__Input__Group_2__0\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group_2__0_in_rule__Input__Group__2__Impl341);\r\n rule__Input__Group_2__0();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n after(grammarAccess.getInputAccess().getGroup_2()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAnnotation__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22159:1: ( rule__AstAnnotation__Group__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22160:2: rule__AstAnnotation__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__AstAnnotation__Group__2__Impl_in_rule__AstAnnotation__Group__244386);\n rule__AstAnnotation__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1142:1: ( rule__Address_Impl__Group__2__Impl rule__Address_Impl__Group__3 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1143:2: rule__Address_Impl__Group__2__Impl rule__Address_Impl__Group__3\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__2__Impl_in_rule__Address_Impl__Group__22225);\n rule__Address_Impl__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__3_in_rule__Address_Impl__Group__22228);\n rule__Address_Impl__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1432:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1433:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__2__Impl_in_rule__Language__Group__22791);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__3_in_rule__Language__Group__22794);\n rule__Language__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:605:1: ( ( ( rule__Definition__Group_2__0 ) ) )\n // InternalWh.g:606:1: ( ( rule__Definition__Group_2__0 ) )\n {\n // InternalWh.g:606:1: ( ( rule__Definition__Group_2__0 ) )\n // InternalWh.g:607:2: ( rule__Definition__Group_2__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup_2()); \n // InternalWh.g:608:2: ( rule__Definition__Group_2__0 )\n // InternalWh.g:608:3: rule__Definition__Group_2__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_2__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:184:1: ( rule__Input__Group__2__Impl rule__Input__Group__3 )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:185:2: rule__Input__Group__2__Impl rule__Input__Group__3\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__2__Impl_in_rule__Input__Group__2311);\r\n rule__Input__Group__2__Impl();\r\n\r\n state._fsp--;\r\n\r\n pushFollow(FOLLOW_rule__Input__Group__3_in_rule__Input__Group__2314);\r\n rule__Input__Group__3();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Program__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:427:1: ( rule__Program__Group__2__Impl rule__Program__Group__3 )\n // InternalWh.g:428:2: rule__Program__Group__2__Impl rule__Program__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Program__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ConstDecl__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:8537:1: ( rule__ConstDecl__Group__2__Impl )\r\n // InternalGo.g:8538:2: rule__ConstDecl__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ConstDecl__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1465:1: ( rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2 )\n // InternalCsv.g:1466:2: rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__PrintCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:594:1: ( rule__Definition__Group__2__Impl )\n // InternalWh.g:595:2: rule__Definition__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1310:1: ( rule__Enum__Group__2__Impl rule__Enum__Group__3 )\n // InternalMyDsl.g:1311:2: rule__Enum__Group__2__Impl rule__Enum__Group__3\n {\n pushFollow(FOLLOW_17);\n rule__Enum__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:937:1: ( ( ( rule__Model__NameAssignment_2 ) ) )\n // InternalCsv.g:938:1: ( ( rule__Model__NameAssignment_2 ) )\n {\n // InternalCsv.g:938:1: ( ( rule__Model__NameAssignment_2 ) )\n // InternalCsv.g:939:2: ( rule__Model__NameAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getNameAssignment_2()); \n }\n // InternalCsv.g:940:2: ( rule__Model__NameAssignment_2 )\n // InternalCsv.g:940:3: rule__Model__NameAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Model__NameAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getNameAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__MethodDecl__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4622:1: ( rule__MethodDecl__Group__2__Impl rule__MethodDecl__Group__3 )\r\n // InternalGo.g:4623:2: rule__MethodDecl__Group__2__Impl rule__MethodDecl__Group__3\r\n {\r\n pushFollow(FOLLOW_10);\r\n rule__MethodDecl__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__MethodDecl__Group__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstGenerator__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19678:1: ( rule__AstGenerator__Group__2__Impl rule__AstGenerator__Group__3 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19679:2: rule__AstGenerator__Group__2__Impl rule__AstGenerator__Group__3\n {\n pushFollow(FOLLOW_rule__AstGenerator__Group__2__Impl_in_rule__AstGenerator__Group__239499);\n rule__AstGenerator__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstGenerator__Group__3_in_rule__AstGenerator__Group__239502);\n rule__AstGenerator__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__CommClause__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:11399:1: ( rule__CommClause__Group__2__Impl )\r\n // InternalGo.g:11400:2: rule__CommClause__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__CommClause__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Empresa__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:548:1: ( ( ( rule__Empresa__Group_2__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:549:1: ( ( rule__Empresa__Group_2__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:549:1: ( ( rule__Empresa__Group_2__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:550:1: ( rule__Empresa__Group_2__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_2()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:551:1: ( rule__Empresa__Group_2__0 )?\n int alt2=2;\n int LA2_0 = input.LA(1);\n\n if ( (LA2_0==17) ) {\n alt2=1;\n }\n switch (alt2) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:551:2: rule__Empresa__Group_2__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_2__0_in_rule__Empresa__Group__2__Impl1066);\n rule__Empresa__Group_2__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SQLCall__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2652:1: ( rule__SQLCall__Group__2__Impl )\n // InternalBSQL2Java.g:2653:2: rule__SQLCall__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SQLCall__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Link__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:810:1: ( rule__Link__Group__2__Impl rule__Link__Group__3 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:811:2: rule__Link__Group__2__Impl rule__Link__Group__3\n {\n pushFollow(FollowSets000.FOLLOW_rule__Link__Group__2__Impl_in_rule__Link__Group__21596);\n rule__Link__Group__2__Impl();\n _fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Link__Group__3_in_rule__Link__Group__21599);\n rule__Link__Group__3();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Expression__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12371:1: ( rule__Expression__Group__2__Impl )\r\n // InternalGo.g:12372:2: rule__Expression__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Expression__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RangeClause__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:11993:1: ( rule__RangeClause__Group__2__Impl )\r\n // InternalGo.g:11994:2: rule__RangeClause__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__RangeClause__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Import__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4122:1: ( rule__Import__Group__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4123:2: rule__Import__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__Import__Group__2__Impl_in_rule__Import__Group__28855);\n rule__Import__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:945:1: ( rule__Output__Group_0__2__Impl )\n // InternalWh.g:946:2: rule__Output__Group_0__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group_0__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Term__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9045:1: ( ( ',' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9046:1: ( ',' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9046:1: ( ',' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9047:1: ','\n {\n before(grammarAccess.getTermAccess().getCommaKeyword_2()); \n match(input,35,FOLLOW_35_in_rule__Term__Group__2__Impl17729); \n after(grammarAccess.getTermAccess().getCommaKeyword_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2089:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2090:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__14468);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__2_in_rule__Model__Group__14471);\n rule__Model__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Schema__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:540:1: ( rule__Schema__Group__2__Impl rule__Schema__Group__3 )\n // InternalMyDsl.g:541:2: rule__Schema__Group__2__Impl rule__Schema__Group__3\n {\n pushFollow(FOLLOW_5);\n rule__Schema__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Schema__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Move__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:4581:1: ( rule__Move__Group__2__Impl )\r\n // InternalDroneScript.g:4582:2: rule__Move__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Move__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPort__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8297:1: ( rule__AstPort__Group__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8298:2: rule__AstPort__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__AstPort__Group__2__Impl_in_rule__AstPort__Group__217085);\n rule__AstPort__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1622:1: ( rule__Input__Group__2__Impl rule__Input__Group__3 )\n // InternalBrowser.g:1623:2: rule__Input__Group__2__Impl rule__Input__Group__3\n {\n pushFollow(FOLLOW_9);\n rule__Input__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Input__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_2__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:783:1: ( rule__Definition__Group_2__2__Impl )\n // InternalWh.g:784:2: rule__Definition__Group_2__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_2__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedNameWithWildcard__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3382:1: ( rule__QualifiedNameWithWildcard__Group__2__Impl )\n // InternalCsv.g:3383:2: rule__QualifiedNameWithWildcard__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedNameWithWildcard__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3423:1: ( rule__FinModelFile__Group__1__Impl rule__FinModelFile__Group__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3424:2: rule__FinModelFile__Group__1__Impl rule__FinModelFile__Group__2\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__1__Impl_in_rule__FinModelFile__Group__17597);\r\n rule__FinModelFile__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__2_in_rule__FinModelFile__Group__17600);\r\n rule__FinModelFile__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Catalogo__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1274:1: ( ( ( rule__Catalogo__Group_2__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1275:1: ( ( rule__Catalogo__Group_2__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1275:1: ( ( rule__Catalogo__Group_2__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1276:1: ( rule__Catalogo__Group_2__0 )?\n {\n before(grammarAccess.getCatalogoAccess().getGroup_2()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1277:1: ( rule__Catalogo__Group_2__0 )?\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==25) ) {\n alt8=1;\n }\n switch (alt8) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1277:2: rule__Catalogo__Group_2__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group_2__0_in_rule__Catalogo__Group__2__Impl2497);\n rule__Catalogo__Group_2__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getCatalogoAccess().getGroup_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4133:1: ( ( ';' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4134:1: ( ';' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4134:1: ( ';' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4135:1: ';'\n {\n before(grammarAccess.getImportAccess().getSemicolonKeyword_2()); \n match(input,49,FOLLOW_49_in_rule__Import__Group__2__Impl8883); \n after(grammarAccess.getImportAccess().getSemicolonKeyword_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group_2_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22351:1: ( rule__AstAnnotation__Group_2_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22352:2: rule__AstAnnotation__Group_2_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAnnotation__Group_2_2__1__Impl_in_rule__AstAnnotation__Group_2_2__144762);\n rule__AstAnnotation__Group_2_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ExpressionList__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12236:1: ( rule__ExpressionList__Group__2__Impl )\r\n // InternalGo.g:12237:2: rule__ExpressionList__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ExpressionList__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Type__Group_2__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5216:1: ( rule__Type__Group_2__2__Impl )\r\n // InternalGo.g:5217:2: rule__Type__Group_2__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Type__Group_2__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Input__Group_2_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:357:1: ( ( ',' ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:358:1: ( ',' )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:358:1: ( ',' )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:359:1: ','\r\n {\r\n before(grammarAccess.getInputAccess().getCommaKeyword_2_1_0()); \r\n match(input,10,FOLLOW_10_in_rule__Input__Group_2_1__0__Impl656); \r\n after(grammarAccess.getInputAccess().getCommaKeyword_2_1_0()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Midi__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1034:1: ( rule__Midi__Group__2__Impl rule__Midi__Group__3 )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1035:2: rule__Midi__Group__2__Impl rule__Midi__Group__3\n {\n pushFollow(FOLLOW_rule__Midi__Group__2__Impl_in_rule__Midi__Group__22225);\n rule__Midi__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Midi__Group__3_in_rule__Midi__Group__22228);\n rule__Midi__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3020:1: ( rule__Action__Group__2__Impl rule__Action__Group__3 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3021:2: rule__Action__Group__2__Impl rule__Action__Group__3\n {\n pushFollow(FOLLOW_rule__Action__Group__2__Impl_in_rule__Action__Group__25950);\n rule__Action__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Action__Group__3_in_rule__Action__Group__25953);\n rule__Action__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22170:1: ( ( ( rule__AstAnnotation__Group_2__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22171:1: ( ( rule__AstAnnotation__Group_2__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22171:1: ( ( rule__AstAnnotation__Group_2__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22172:1: ( rule__AstAnnotation__Group_2__0 )?\n {\n before(grammarAccess.getAstAnnotationAccess().getGroup_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22173:1: ( rule__AstAnnotation__Group_2__0 )?\n int alt175=2;\n int LA175_0 = input.LA(1);\n\n if ( (LA175_0==58) ) {\n int LA175_1 = input.LA(2);\n\n if ( (LA175_1==RULE_ID) ) {\n int LA175_3 = input.LA(3);\n\n if ( (LA175_3==19) ) {\n alt175=1;\n }\n }\n }\n switch (alt175) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22173:2: rule__AstAnnotation__Group_2__0\n {\n pushFollow(FOLLOW_rule__AstAnnotation__Group_2__0_in_rule__AstAnnotation__Group__2__Impl44413);\n rule__AstAnnotation__Group_2__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstAnnotationAccess().getGroup_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group_2__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22265:1: ( ( ( rule__AstAnnotation__Group_2_2__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22266:1: ( ( rule__AstAnnotation__Group_2_2__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22266:1: ( ( rule__AstAnnotation__Group_2_2__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22267:1: ( rule__AstAnnotation__Group_2_2__0 )*\n {\n before(grammarAccess.getAstAnnotationAccess().getGroup_2_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22268:1: ( rule__AstAnnotation__Group_2_2__0 )*\n loop176:\n do {\n int alt176=2;\n int LA176_0 = input.LA(1);\n\n if ( (LA176_0==62) ) {\n alt176=1;\n }\n\n\n switch (alt176) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22268:2: rule__AstAnnotation__Group_2_2__0\n \t {\n \t pushFollow(FOLLOW_rule__AstAnnotation__Group_2_2__0_in_rule__AstAnnotation__Group_2__2__Impl44602);\n \t rule__AstAnnotation__Group_2_2__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop176;\n }\n } while (true);\n\n after(grammarAccess.getAstAnnotationAccess().getGroup_2_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group_2__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22282:1: ( rule__AstAnnotation__Group_2__3__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22283:2: rule__AstAnnotation__Group_2__3__Impl\n {\n pushFollow(FOLLOW_rule__AstAnnotation__Group_2__3__Impl_in_rule__AstAnnotation__Group_2__344633);\n rule__AstAnnotation__Group_2__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1627:1: ( rule__NbCol__Group__1__Impl rule__NbCol__Group__2 )\n // InternalCsv.g:1628:2: rule__NbCol__Group__1__Impl rule__NbCol__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__NbCol__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Database__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1480:1: ( rule__Database__Group__2__Impl rule__Database__Group__3 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1481:2: rule__Database__Group__2__Impl rule__Database__Group__3\n {\n pushFollow(FOLLOW_rule__Database__Group__2__Impl_in_rule__Database__Group__22939);\n rule__Database__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Database__Group__3_in_rule__Database__Group__22942);\n rule__Database__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1847:1: ( ( ( rule__Categoria__Group_2__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1848:1: ( ( rule__Categoria__Group_2__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1848:1: ( ( rule__Categoria__Group_2__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1849:1: ( rule__Categoria__Group_2__0 )?\n {\n before(grammarAccess.getCategoriaAccess().getGroup_2()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1850:1: ( rule__Categoria__Group_2__0 )?\n int alt12=2;\n int LA12_0 = input.LA(1);\n\n if ( (LA12_0==30) ) {\n alt12=1;\n }\n switch (alt12) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1850:2: rule__Categoria__Group_2__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group_2__0_in_rule__Categoria__Group__2__Impl3623);\n rule__Categoria__Group_2__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getCategoriaAccess().getGroup_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group_2__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22253:1: ( rule__AstAnnotation__Group_2__2__Impl rule__AstAnnotation__Group_2__3 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22254:2: rule__AstAnnotation__Group_2__2__Impl rule__AstAnnotation__Group_2__3\n {\n pushFollow(FOLLOW_rule__AstAnnotation__Group_2__2__Impl_in_rule__AstAnnotation__Group_2__244572);\n rule__AstAnnotation__Group_2__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAnnotation__Group_2__3_in_rule__AstAnnotation__Group_2__244575);\n rule__AstAnnotation__Group_2__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19410:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19411:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19411:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19412:1: ','\n {\n before(grammarAccess.getAstExpressionListAccess().getCommaKeyword_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstExpressionList__Group_2__0__Impl38976); \n after(grammarAccess.getAstExpressionListAccess().getCommaKeyword_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FieldDecl__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5756:1: ( rule__FieldDecl__Group__2__Impl )\r\n // InternalGo.g:5757:2: rule__FieldDecl__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__FieldDecl__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Link__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:822:1: ( ( '->' ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:823:1: ( '->' )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:823:1: ( '->' )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:824:1: '->'\n {\n before(grammarAccess.getLinkAccess().getHyphenMinusGreaterThanSignKeyword_2()); \n match(input,18,FollowSets000.FOLLOW_18_in_rule__Link__Group__2__Impl1627); \n after(grammarAccess.getLinkAccess().getHyphenMinusGreaterThanSignKeyword_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:898:1: ( rule__Model__Group__1__Impl )\n // InternalMLRegression.g:899:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__CommCase__Group_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:11480:1: ( rule__CommCase__Group_0__2__Impl )\r\n // InternalGo.g:11481:2: rule__CommCase__Group_0__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__CommCase__Group_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Go__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:2270:1: ( rule__Go__Group__2__Impl rule__Go__Group__3 )\n // InternalBrowser.g:2271:2: rule__Go__Group__2__Impl rule__Go__Group__3\n {\n pushFollow(FOLLOW_12);\n rule__Go__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Go__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19429:1: ( rule__AstExpressionList__Group_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19430:2: rule__AstExpressionList__Group_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionList__Group_2__1__Impl_in_rule__AstExpressionList__Group_2__139007);\n rule__AstExpressionList__Group_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XFunctionTypeRef__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2032:1: ( rule__XFunctionTypeRef__Group__2__Impl )\n // InternalCsv.g:2033:2: rule__XFunctionTypeRef__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XFunctionTypeRef__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Tab__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1609:1: ( rule__Tab__Group__2__Impl rule__Tab__Group__3 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1610:2: rule__Tab__Group__2__Impl rule__Tab__Group__3\n {\n pushFollow(FOLLOW_rule__Tab__Group__2__Impl_in_rule__Tab__Group__23189);\n rule__Tab__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Tab__Group__3_in_rule__Tab__Group__23192);\n rule__Tab__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_2__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:972:1: ( rule__Attribute__Group_2__4__Impl )\n // InternalMyDsl.g:973:2: rule__Attribute__Group_2__4__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_2__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Application__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:423:1: ( rule__Application__Group__2__Impl )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:424:2: rule__Application__Group__2__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Application__Group__2__Impl_in_rule__Application__Group__2834);\n rule__Application__Group__2__Impl();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ConstDecl__Group_2_1__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:8618:1: ( rule__ConstDecl__Group_2_1__2__Impl )\r\n // InternalGo.g:8619:2: rule__ConstDecl__Group_2_1__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ConstDecl__Group_2_1__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Constraint__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7056:1: ( rule__Constraint__Group__2__Impl rule__Constraint__Group__3 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7057:2: rule__Constraint__Group__2__Impl rule__Constraint__Group__3\n {\n pushFollow(FOLLOW_rule__Constraint__Group__2__Impl_in_rule__Constraint__Group__214225);\n rule__Constraint__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__3_in_rule__Constraint__Group__214228);\n rule__Constraint__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Commands__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:1026:1: ( rule__Commands__Group_0__2__Impl )\n // InternalWh.g:1027:2: rule__Commands__Group_0__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Commands__Group_0__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12400:1: ( ( ( rule__AstAction__Group_2__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12401:1: ( ( rule__AstAction__Group_2__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12401:1: ( ( rule__AstAction__Group_2__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12402:1: ( rule__AstAction__Group_2__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12403:1: ( rule__AstAction__Group_2__0 )?\n int alt100=2;\n int LA100_0 = input.LA(1);\n\n if ( (LA100_0==RULE_ID) ) {\n alt100=1;\n }\n switch (alt100) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12403:2: rule__AstAction__Group_2__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_2__0_in_rule__AstAction__Group__2__Impl25167);\n rule__AstAction__Group_2__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group_2__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:324:1: ( ( ( rule__Input__Group_2_1__0 )* ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:325:1: ( ( rule__Input__Group_2_1__0 )* )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:325:1: ( ( rule__Input__Group_2_1__0 )* )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:326:1: ( rule__Input__Group_2_1__0 )*\r\n {\r\n before(grammarAccess.getInputAccess().getGroup_2_1()); \r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:327:1: ( rule__Input__Group_2_1__0 )*\r\n loop2:\r\n do {\r\n int alt2=2;\r\n int LA2_0 = input.LA(1);\r\n\r\n if ( (LA2_0==10) ) {\r\n alt2=1;\r\n }\r\n\r\n\r\n switch (alt2) {\r\n \tcase 1 :\r\n \t // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:327:2: rule__Input__Group_2_1__0\r\n \t {\r\n \t pushFollow(FOLLOW_rule__Input__Group_2_1__0_in_rule__Input__Group_2__1__Impl590);\r\n \t rule__Input__Group_2_1__0();\r\n\r\n \t state._fsp--;\r\n\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop2;\r\n }\r\n } while (true);\r\n\r\n after(grammarAccess.getInputAccess().getGroup_2_1()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Empresa__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:536:1: ( rule__Empresa__Group__2__Impl rule__Empresa__Group__3 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:537:2: rule__Empresa__Group__2__Impl rule__Empresa__Group__3\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__2__Impl_in_rule__Empresa__Group__21036);\n rule__Empresa__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__3_in_rule__Empresa__Group__21039);\n rule__Empresa__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstForeachGenerator__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16072:1: ( rule__AstForeachGenerator__Group__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16073:2: rule__AstForeachGenerator__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__AstForeachGenerator__Group__2__Impl_in_rule__AstForeachGenerator__Group__232408);\n rule__AstForeachGenerator__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7249726", "0.71507937", "0.7034687", "0.70320445", "0.7011102", "0.6990924", "0.67391723", "0.6687772", "0.66762257", "0.6636565", "0.6598271", "0.6589322", "0.6571457", "0.6549501", "0.653549", "0.6511129", "0.6475362", "0.64573216", "0.64526117", "0.64488727", "0.64062214", "0.64041394", "0.63989156", "0.63931376", "0.6391676", "0.6343115", "0.6341525", "0.6335323", "0.63067514", "0.63034713", "0.62918776", "0.6287559", "0.6285774", "0.62851816", "0.62838423", "0.6278786", "0.62762964", "0.6266095", "0.6262441", "0.6261078", "0.6259897", "0.6258723", "0.6254269", "0.6254007", "0.62508786", "0.624758", "0.6242974", "0.62424934", "0.623742", "0.62359434", "0.62291586", "0.62151295", "0.6212348", "0.61976284", "0.6191517", "0.6189861", "0.61881506", "0.6184371", "0.61824274", "0.6179129", "0.61670053", "0.6159738", "0.61492455", "0.6147979", "0.61469316", "0.614428", "0.61429495", "0.61406773", "0.6134335", "0.6132472", "0.6130107", "0.61276585", "0.6122983", "0.6121985", "0.6112999", "0.6107102", "0.6100573", "0.6100547", "0.6096534", "0.60921574", "0.60910213", "0.6083066", "0.6082492", "0.60818726", "0.60817945", "0.6078401", "0.60768867", "0.6068673", "0.6064093", "0.6058873", "0.60559416", "0.60534436", "0.6048796", "0.60452795", "0.60422635", "0.6042179", "0.60377115", "0.60339355", "0.6033868", "0.6030905" ]
0.7698359
0
$ANTLR end "rule__Model__Group__2" $ANTLR start "rule__Model__Group__2__Impl" InternalCsv.g:933:1: rule__Model__Group__2__Impl : ( ( rule__Model__NameAssignment_2 ) ) ;
public final void rule__Model__Group__2__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:937:1: ( ( ( rule__Model__NameAssignment_2 ) ) ) // InternalCsv.g:938:1: ( ( rule__Model__NameAssignment_2 ) ) { // InternalCsv.g:938:1: ( ( rule__Model__NameAssignment_2 ) ) // InternalCsv.g:939:2: ( rule__Model__NameAssignment_2 ) { if ( state.backtracking==0 ) { before(grammarAccess.getModelAccess().getNameAssignment_2()); } // InternalCsv.g:940:2: ( rule__Model__NameAssignment_2 ) // InternalCsv.g:940:3: rule__Model__NameAssignment_2 { pushFollow(FOLLOW_2); rule__Model__NameAssignment_2(); state._fsp--; if (state.failed) return ; } if ( state.backtracking==0 ) { after(grammarAccess.getModelAccess().getNameAssignment_2()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__OpenCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1288:1: ( ( ( rule__OpenCSV__NameAssignment_2 ) ) )\n // InternalCsv.g:1289:1: ( ( rule__OpenCSV__NameAssignment_2 ) )\n {\n // InternalCsv.g:1289:1: ( ( rule__OpenCSV__NameAssignment_2 ) )\n // InternalCsv.g:1290:2: ( rule__OpenCSV__NameAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getNameAssignment_2()); \n }\n // InternalCsv.g:1291:2: ( rule__OpenCSV__NameAssignment_2 )\n // InternalCsv.g:1291:3: rule__OpenCSV__NameAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__NameAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getNameAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Schema__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:552:1: ( ( ( rule__Schema__NameAssignment_2 ) ) )\n // InternalMyDsl.g:553:1: ( ( rule__Schema__NameAssignment_2 ) )\n {\n // InternalMyDsl.g:553:1: ( ( rule__Schema__NameAssignment_2 ) )\n // InternalMyDsl.g:554:2: ( rule__Schema__NameAssignment_2 )\n {\n before(grammarAccess.getSchemaAccess().getNameAssignment_2()); \n // InternalMyDsl.g:555:2: ( rule__Schema__NameAssignment_2 )\n // InternalMyDsl.g:555:3: rule__Schema__NameAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Schema__NameAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getSchemaAccess().getNameAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstUnit__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3691:1: ( ( ( rule__AstUnit__NameAssignment_2 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3692:1: ( ( rule__AstUnit__NameAssignment_2 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3692:1: ( ( rule__AstUnit__NameAssignment_2 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3693:1: ( rule__AstUnit__NameAssignment_2 )\n {\n before(grammarAccess.getAstUnitAccess().getNameAssignment_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3694:1: ( rule__AstUnit__NameAssignment_2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3694:2: rule__AstUnit__NameAssignment_2\n {\n pushFollow(FOLLOW_rule__AstUnit__NameAssignment_2_in_rule__AstUnit__Group__2__Impl8010);\n rule__AstUnit__NameAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstUnitAccess().getNameAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__TIAssignment__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2814:1: ( rule__TIAssignment__Group__2__Impl )\n // InternalBSQL2Java.g:2815:2: rule__TIAssignment__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__TIAssignment__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Assignment__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9914:1: ( rule__Assignment__Group__2__Impl rule__Assignment__Group__3 )\r\n // InternalGo.g:9915:2: rule__Assignment__Group__2__Impl rule__Assignment__Group__3\r\n {\r\n pushFollow(FOLLOW_20);\r\n rule__Assignment__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__Assignment__Group__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:500:1: ( rule__Model__Group__2__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:501:2: rule__Model__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__2__Impl_in_rule__Model__Group__21013);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1126:1: ( ( ( rule__Language__NameAssignment_0 ) ) )\n // InternalCsv.g:1127:1: ( ( rule__Language__NameAssignment_0 ) )\n {\n // InternalCsv.g:1127:1: ( ( rule__Language__NameAssignment_0 ) )\n // InternalCsv.g:1128:2: ( rule__Language__NameAssignment_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getNameAssignment_0()); \n }\n // InternalCsv.g:1129:2: ( rule__Language__NameAssignment_0 )\n // InternalCsv.g:1129:3: rule__Language__NameAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__Language__NameAssignment_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getNameAssignment_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:876:1: ( ( ( rule__Attribute__NameAssignment_2_0 ) ) )\n // InternalMyDsl.g:877:1: ( ( rule__Attribute__NameAssignment_2_0 ) )\n {\n // InternalMyDsl.g:877:1: ( ( rule__Attribute__NameAssignment_2_0 ) )\n // InternalMyDsl.g:878:2: ( rule__Attribute__NameAssignment_2_0 )\n {\n before(grammarAccess.getAttributeAccess().getNameAssignment_2_0()); \n // InternalMyDsl.g:879:2: ( rule__Attribute__NameAssignment_2_0 )\n // InternalMyDsl.g:879:3: rule__Attribute__NameAssignment_2_0\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__NameAssignment_2_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAttributeAccess().getNameAssignment_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3531:1: ( ( ( rule__AstPackage__NameAssignment_2 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3532:1: ( ( rule__AstPackage__NameAssignment_2 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3532:1: ( ( rule__AstPackage__NameAssignment_2 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3533:1: ( rule__AstPackage__NameAssignment_2 )\n {\n before(grammarAccess.getAstPackageAccess().getNameAssignment_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3534:1: ( rule__AstPackage__NameAssignment_2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3534:2: rule__AstPackage__NameAssignment_2\n {\n pushFollow(FOLLOW_rule__AstPackage__NameAssignment_2_in_rule__AstPackage__Group__2__Impl7697);\n rule__AstPackage__NameAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstPackageAccess().getNameAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_2__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:794:1: ( ( ( rule__Definition__OutputAssignment_2_2 ) ) )\n // InternalWh.g:795:1: ( ( rule__Definition__OutputAssignment_2_2 ) )\n {\n // InternalWh.g:795:1: ( ( rule__Definition__OutputAssignment_2_2 ) )\n // InternalWh.g:796:2: ( rule__Definition__OutputAssignment_2_2 )\n {\n before(grammarAccess.getDefinitionAccess().getOutputAssignment_2_2()); \n // InternalWh.g:797:2: ( rule__Definition__OutputAssignment_2_2 )\n // InternalWh.g:797:3: rule__Definition__OutputAssignment_2_2\n {\n pushFollow(FOLLOW_2);\n rule__Definition__OutputAssignment_2_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getOutputAssignment_2_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:875:1: ( ( ( rule__Input__InputAssignment_0_2 ) ) )\n // InternalWh.g:876:1: ( ( rule__Input__InputAssignment_0_2 ) )\n {\n // InternalWh.g:876:1: ( ( rule__Input__InputAssignment_0_2 ) )\n // InternalWh.g:877:2: ( rule__Input__InputAssignment_0_2 )\n {\n before(grammarAccess.getInputAccess().getInputAssignment_0_2()); \n // InternalWh.g:878:2: ( rule__Input__InputAssignment_0_2 )\n // InternalWh.g:878:3: rule__Input__InputAssignment_0_2\n {\n pushFollow(FOLLOW_2);\n rule__Input__InputAssignment_0_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getInputAssignment_0_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4419:1: ( ( ( rule__AstNetwork__NameAssignment_2 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4420:1: ( ( rule__AstNetwork__NameAssignment_2 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4420:1: ( ( rule__AstNetwork__NameAssignment_2 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4421:1: ( rule__AstNetwork__NameAssignment_2 )\n {\n before(grammarAccess.getAstNetworkAccess().getNameAssignment_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4422:1: ( rule__AstNetwork__NameAssignment_2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4422:2: rule__AstNetwork__NameAssignment_2\n {\n pushFollow(FOLLOW_rule__AstNetwork__NameAssignment_2_in_rule__AstNetwork__Group__2__Impl9441);\n rule__AstNetwork__NameAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstNetworkAccess().getNameAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNamespace__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3882:1: ( ( ( rule__AstNamespace__NameAssignment_2 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3883:1: ( ( rule__AstNamespace__NameAssignment_2 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3883:1: ( ( rule__AstNamespace__NameAssignment_2 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3884:1: ( rule__AstNamespace__NameAssignment_2 )\n {\n before(grammarAccess.getAstNamespaceAccess().getNameAssignment_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3885:1: ( rule__AstNamespace__NameAssignment_2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3885:2: rule__AstNamespace__NameAssignment_2\n {\n pushFollow(FOLLOW_rule__AstNamespace__NameAssignment_2_in_rule__AstNamespace__Group__2__Impl8387);\n rule__AstNamespace__NameAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstNamespaceAccess().getNameAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPort__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8308:1: ( ( ( rule__AstPort__NameAssignment_2 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8309:1: ( ( rule__AstPort__NameAssignment_2 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8309:1: ( ( rule__AstPort__NameAssignment_2 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8310:1: ( rule__AstPort__NameAssignment_2 )\n {\n before(grammarAccess.getAstPortAccess().getNameAssignment_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8311:1: ( rule__AstPort__NameAssignment_2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8311:2: rule__AstPort__NameAssignment_2\n {\n pushFollow(FOLLOW_rule__AstPort__NameAssignment_2_in_rule__AstPort__Group__2__Impl17112);\n rule__AstPort__NameAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstPortAccess().getNameAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Declaration__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1325:1: ( rule__Declaration__Group__2__Impl )\n // InternalBrowser.g:1326:2: rule__Declaration__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Declaration__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3290:1: ( rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3291:2: rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_0__2__Impl_in_rule__XAssignment__Group_0__26942);\n rule__XAssignment__Group_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XAssignment__Group_0__3_in_rule__XAssignment__Group_0__26945);\n rule__XAssignment__Group_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6179:1: ( rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6180:2: rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__2__Impl_in_rule__XAssignment__Group_0__213016);\r\n rule__XAssignment__Group_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__3_in_rule__XAssignment__Group_0__213019);\r\n rule__XAssignment__Group_0__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Input__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1607:1: ( ( ( rule__Input__NameAssignment_1 ) ) )\n // InternalBrowser.g:1608:1: ( ( rule__Input__NameAssignment_1 ) )\n {\n // InternalBrowser.g:1608:1: ( ( rule__Input__NameAssignment_1 ) )\n // InternalBrowser.g:1609:2: ( rule__Input__NameAssignment_1 )\n {\n before(grammarAccess.getInputAccess().getNameAssignment_1()); \n // InternalBrowser.g:1610:2: ( rule__Input__NameAssignment_1 )\n // InternalBrowser.g:1610:3: rule__Input__NameAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Input__NameAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:909:1: ( ( ( rule__Model__MlAssignment_1 ) ) )\n // InternalMLRegression.g:910:1: ( ( rule__Model__MlAssignment_1 ) )\n {\n // InternalMLRegression.g:910:1: ( ( rule__Model__MlAssignment_1 ) )\n // InternalMLRegression.g:911:2: ( rule__Model__MlAssignment_1 )\n {\n before(grammarAccess.getModelAccess().getMlAssignment_1()); \n // InternalMLRegression.g:912:2: ( rule__Model__MlAssignment_1 )\n // InternalMLRegression.g:912:3: rule__Model__MlAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Model__MlAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getMlAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__MLRegression__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1099:1: ( ( ( rule__MLRegression__EvaluationAssignment_2 ) ) )\n // InternalMLRegression.g:1100:1: ( ( rule__MLRegression__EvaluationAssignment_2 ) )\n {\n // InternalMLRegression.g:1100:1: ( ( rule__MLRegression__EvaluationAssignment_2 ) )\n // InternalMLRegression.g:1101:2: ( rule__MLRegression__EvaluationAssignment_2 )\n {\n before(grammarAccess.getMLRegressionAccess().getEvaluationAssignment_2()); \n // InternalMLRegression.g:1102:2: ( rule__MLRegression__EvaluationAssignment_2 )\n // InternalMLRegression.g:1102:3: rule__MLRegression__EvaluationAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__MLRegression__EvaluationAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getMLRegressionAccess().getEvaluationAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1747:1: ( ( ( rule__SaveCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1749:2: ( rule__SaveCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1750:2: ( rule__SaveCSV__OpenAssignment_2 )\n // InternalCsv.g:1750:3: rule__SaveCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Link__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:793:1: ( ( ( rule__Link__NameAssignment_1 ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:794:1: ( ( rule__Link__NameAssignment_1 ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:794:1: ( ( rule__Link__NameAssignment_1 ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:795:1: ( rule__Link__NameAssignment_1 )\n {\n before(grammarAccess.getLinkAccess().getNameAssignment_1()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:796:1: ( rule__Link__NameAssignment_1 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:796:2: rule__Link__NameAssignment_1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Link__NameAssignment_1_in_rule__Link__Group__1__Impl1566);\n rule__Link__NameAssignment_1();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getLinkAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Image__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:2200:1: ( ( ( rule__Image__ClassAssignment_2 ) ) )\n // InternalBrowser.g:2201:1: ( ( rule__Image__ClassAssignment_2 ) )\n {\n // InternalBrowser.g:2201:1: ( ( rule__Image__ClassAssignment_2 ) )\n // InternalBrowser.g:2202:2: ( rule__Image__ClassAssignment_2 )\n {\n before(grammarAccess.getImageAccess().getClassAssignment_2()); \n // InternalBrowser.g:2203:2: ( rule__Image__ClassAssignment_2 )\n // InternalBrowser.g:2203:3: rule__Image__ClassAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Image__ClassAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getImageAccess().getClassAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7556:1: ( ( ( rule__AstActor__NameAssignment_2 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7557:1: ( ( rule__AstActor__NameAssignment_2 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7557:1: ( ( rule__AstActor__NameAssignment_2 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7558:1: ( rule__AstActor__NameAssignment_2 )\n {\n before(grammarAccess.getAstActorAccess().getNameAssignment_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7559:1: ( rule__AstActor__NameAssignment_2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7559:2: rule__AstActor__NameAssignment_2\n {\n pushFollow(FOLLOW_rule__AstActor__NameAssignment_2_in_rule__AstActor__Group__2__Impl15624);\n rule__AstActor__NameAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActorAccess().getNameAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5391:1: ( rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3 )\r\n // InternalDroneScript.g:5392:2: rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3\r\n {\r\n pushFollow(FOLLOW_20);\r\n rule__XAssignment__Group_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_0__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Assignment__Group__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9887:1: ( rule__Assignment__Group__1__Impl rule__Assignment__Group__2 )\r\n // InternalGo.g:9888:2: rule__Assignment__Group__1__Impl rule__Assignment__Group__2\r\n {\r\n pushFollow(FOLLOW_63);\r\n rule__Assignment__Group__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__Assignment__Group__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Activity__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:507:1: ( ( ( rule__Activity__NameAssignment_1 ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:508:1: ( ( rule__Activity__NameAssignment_1 ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:508:1: ( ( rule__Activity__NameAssignment_1 ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:509:1: ( rule__Activity__NameAssignment_1 )\n {\n before(grammarAccess.getActivityAccess().getNameAssignment_1()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:510:1: ( rule__Activity__NameAssignment_1 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:510:2: rule__Activity__NameAssignment_1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Activity__NameAssignment_1_in_rule__Activity__Group__1__Impl1006);\n rule__Activity__NameAssignment_1();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getActivityAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:605:1: ( ( ( rule__Definition__Group_2__0 ) ) )\n // InternalWh.g:606:1: ( ( rule__Definition__Group_2__0 ) )\n {\n // InternalWh.g:606:1: ( ( rule__Definition__Group_2__0 ) )\n // InternalWh.g:607:2: ( rule__Definition__Group_2__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup_2()); \n // InternalWh.g:608:2: ( rule__Definition__Group_2__0 )\n // InternalWh.g:608:3: rule__Definition__Group_2__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_2__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_2__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:864:1: ( ( ( rule__Empresa__NombreAssignment_2_1 ) ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:865:1: ( ( rule__Empresa__NombreAssignment_2_1 ) )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:865:1: ( ( rule__Empresa__NombreAssignment_2_1 ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:866:1: ( rule__Empresa__NombreAssignment_2_1 )\n {\n before(grammarAccess.getEmpresaAccess().getNombreAssignment_2_1()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:867:1: ( rule__Empresa__NombreAssignment_2_1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:867:2: rule__Empresa__NombreAssignment_2_1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__NombreAssignment_2_1_in_rule__Empresa__Group_2__1__Impl1694);\n rule__Empresa__NombreAssignment_2_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getEmpresaAccess().getNombreAssignment_2_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Text__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:666:1: ( ( ( rule__Text__NameAssignment_1 ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:667:1: ( ( rule__Text__NameAssignment_1 ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:667:1: ( ( rule__Text__NameAssignment_1 ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:668:1: ( rule__Text__NameAssignment_1 )\n {\n before(grammarAccess.getTextAccess().getNameAssignment_1()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:669:1: ( rule__Text__NameAssignment_1 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:669:2: rule__Text__NameAssignment_1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Text__NameAssignment_1_in_rule__Text__Group__1__Impl1317);\n rule__Text__NameAssignment_1();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getTextAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:594:1: ( rule__Definition__Group__2__Impl )\n // InternalWh.g:595:2: rule__Definition__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1113:1: ( rule__Attribute__Group__2__Impl )\n // InternalBSQL2Java.g:1114:2: rule__Attribute__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8403:1: ( ( ( rule__AstFunction__NameAssignment_2 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8404:1: ( ( rule__AstFunction__NameAssignment_2 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8404:1: ( ( rule__AstFunction__NameAssignment_2 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8405:1: ( rule__AstFunction__NameAssignment_2 )\n {\n before(grammarAccess.getAstFunctionAccess().getNameAssignment_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8406:1: ( rule__AstFunction__NameAssignment_2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8406:2: rule__AstFunction__NameAssignment_2\n {\n pushFollow(FOLLOW_rule__AstFunction__NameAssignment_2_in_rule__AstFunction__Group__2__Impl17301);\n rule__AstFunction__NameAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstFunctionAccess().getNameAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ExpressionList__Group_2__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12301:1: ( ( ( rule__ExpressionList__Expression2Assignment_2_1 ) ) )\r\n // InternalGo.g:12302:1: ( ( rule__ExpressionList__Expression2Assignment_2_1 ) )\r\n {\r\n // InternalGo.g:12302:1: ( ( rule__ExpressionList__Expression2Assignment_2_1 ) )\r\n // InternalGo.g:12303:2: ( rule__ExpressionList__Expression2Assignment_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionListAccess().getExpression2Assignment_2_1()); \r\n }\r\n // InternalGo.g:12304:2: ( rule__ExpressionList__Expression2Assignment_2_1 )\r\n // InternalGo.g:12304:3: rule__ExpressionList__Expression2Assignment_2_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ExpressionList__Expression2Assignment_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionListAccess().getExpression2Assignment_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__FinModelFile__Group_0__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3528:1: ( ( ( rule__FinModelFile__NameAssignment_0_1 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3529:1: ( ( rule__FinModelFile__NameAssignment_0_1 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3529:1: ( ( rule__FinModelFile__NameAssignment_0_1 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3530:1: ( rule__FinModelFile__NameAssignment_0_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getNameAssignment_0_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3531:1: ( rule__FinModelFile__NameAssignment_0_1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3531:2: rule__FinModelFile__NameAssignment_0_1\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__NameAssignment_0_1_in_rule__FinModelFile__Group_0__1__Impl7811);\r\n rule__FinModelFile__NameAssignment_0_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getNameAssignment_0_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Go__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:2282:1: ( ( ( rule__Go__UrlAssignment_2 ) ) )\n // InternalBrowser.g:2283:1: ( ( rule__Go__UrlAssignment_2 ) )\n {\n // InternalBrowser.g:2283:1: ( ( rule__Go__UrlAssignment_2 ) )\n // InternalBrowser.g:2284:2: ( rule__Go__UrlAssignment_2 )\n {\n before(grammarAccess.getGoAccess().getUrlAssignment_2()); \n // InternalBrowser.g:2285:2: ( rule__Go__UrlAssignment_2 )\n // InternalBrowser.g:2285:3: rule__Go__UrlAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Go__UrlAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getGoAccess().getUrlAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Assignment__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9926:1: ( ( ( rule__Assignment__AsopAssignment_2 ) ) )\r\n // InternalGo.g:9927:1: ( ( rule__Assignment__AsopAssignment_2 ) )\r\n {\r\n // InternalGo.g:9927:1: ( ( rule__Assignment__AsopAssignment_2 ) )\r\n // InternalGo.g:9928:2: ( rule__Assignment__AsopAssignment_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getAssignmentAccess().getAsopAssignment_2()); \r\n }\r\n // InternalGo.g:9929:2: ( rule__Assignment__AsopAssignment_2 )\r\n // InternalGo.g:9929:3: rule__Assignment__AsopAssignment_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Assignment__AsopAssignment_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getAssignmentAccess().getAsopAssignment_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Output__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:956:1: ( ( ( rule__Output__OutputAssignment_0_2 ) ) )\n // InternalWh.g:957:1: ( ( rule__Output__OutputAssignment_0_2 ) )\n {\n // InternalWh.g:957:1: ( ( rule__Output__OutputAssignment_0_2 ) )\n // InternalWh.g:958:2: ( rule__Output__OutputAssignment_0_2 )\n {\n before(grammarAccess.getOutputAccess().getOutputAssignment_0_2()); \n // InternalWh.g:959:2: ( rule__Output__OutputAssignment_0_2 )\n // InternalWh.g:959:3: rule__Output__OutputAssignment_0_2\n {\n pushFollow(FOLLOW_2);\n rule__Output__OutputAssignment_0_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getOutputAccess().getOutputAssignment_0_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Link__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1499:1: ( ( ( rule__Link__NameAssignment_1 ) ) )\n // InternalBrowser.g:1500:1: ( ( rule__Link__NameAssignment_1 ) )\n {\n // InternalBrowser.g:1500:1: ( ( rule__Link__NameAssignment_1 ) )\n // InternalBrowser.g:1501:2: ( rule__Link__NameAssignment_1 )\n {\n before(grammarAccess.getLinkAccess().getNameAssignment_1()); \n // InternalBrowser.g:1502:2: ( rule__Link__NameAssignment_1 )\n // InternalBrowser.g:1502:3: rule__Link__NameAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Link__NameAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLinkAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5553:1: ( rule__XAssignment__Group_1_1_0__0__Impl )\r\n // InternalDroneScript.g:5554:2: rule__XAssignment__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Program__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:412:1: ( ( ( rule__Program__NameAssignment_1 ) ) )\n // InternalWh.g:413:1: ( ( rule__Program__NameAssignment_1 ) )\n {\n // InternalWh.g:413:1: ( ( rule__Program__NameAssignment_1 ) )\n // InternalWh.g:414:2: ( rule__Program__NameAssignment_1 )\n {\n before(grammarAccess.getProgramAccess().getNameAssignment_1()); \n // InternalWh.g:415:2: ( rule__Program__NameAssignment_1 )\n // InternalWh.g:415:3: rule__Program__NameAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Program__NameAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getProgramAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6150:1: ( rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6151:2: rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__1__Impl_in_rule__XAssignment__Group_0__112956);\r\n rule__XAssignment__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__2_in_rule__XAssignment__Group_0__112959);\r\n rule__XAssignment__Group_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Definition__Group_2__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:783:1: ( rule__Definition__Group_2__2__Impl )\n // InternalWh.g:784:2: rule__Definition__Group_2__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_2__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1634:1: ( ( ( rule__Input__ValueAssignment_2 ) ) )\n // InternalBrowser.g:1635:1: ( ( rule__Input__ValueAssignment_2 ) )\n {\n // InternalBrowser.g:1635:1: ( ( rule__Input__ValueAssignment_2 ) )\n // InternalBrowser.g:1636:2: ( rule__Input__ValueAssignment_2 )\n {\n before(grammarAccess.getInputAccess().getValueAssignment_2()); \n // InternalBrowser.g:1637:2: ( rule__Input__ValueAssignment_2 )\n // InternalBrowser.g:1637:3: rule__Input__ValueAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Input__ValueAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getValueAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1180:1: ( ( ( rule__Language__TargetAssignment_2 ) ) )\n // InternalCsv.g:1181:1: ( ( rule__Language__TargetAssignment_2 ) )\n {\n // InternalCsv.g:1181:1: ( ( rule__Language__TargetAssignment_2 ) )\n // InternalCsv.g:1182:2: ( rule__Language__TargetAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getTargetAssignment_2()); \n }\n // InternalCsv.g:1183:2: ( rule__Language__TargetAssignment_2 )\n // InternalCsv.g:1183:3: rule__Language__TargetAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Language__TargetAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getTargetAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3261:1: ( rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3262:2: rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_0__1__Impl_in_rule__XAssignment__Group_0__16882);\n rule__XAssignment__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XAssignment__Group_0__2_in_rule__XAssignment__Group_0__16885);\n rule__XAssignment__Group_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Midi__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1017:1: ( ( ( rule__Midi__NameAssignment_1 ) ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1018:1: ( ( rule__Midi__NameAssignment_1 ) )\n {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1018:1: ( ( rule__Midi__NameAssignment_1 ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1019:1: ( rule__Midi__NameAssignment_1 )\n {\n before(grammarAccess.getMidiAccess().getNameAssignment_1()); \n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1020:1: ( rule__Midi__NameAssignment_1 )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1020:2: rule__Midi__NameAssignment_1\n {\n pushFollow(FOLLOW_rule__Midi__NameAssignment_1_in_rule__Midi__Group__1__Impl2195);\n rule__Midi__NameAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getMidiAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__NameAssignment_2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3652:1: ( ( RULE_ID ) )\n // InternalCsv.g:3653:2: ( RULE_ID )\n {\n // InternalCsv.g:3653:2: ( RULE_ID )\n // InternalCsv.g:3654:3: RULE_ID\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getNameIDTerminalRuleCall_2_0()); \n }\n match(input,RULE_ID,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getNameIDTerminalRuleCall_2_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_2__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:930:1: ( ( ( rule__Attribute__TypeNameAssignment_2_2 ) ) )\n // InternalMyDsl.g:931:1: ( ( rule__Attribute__TypeNameAssignment_2_2 ) )\n {\n // InternalMyDsl.g:931:1: ( ( rule__Attribute__TypeNameAssignment_2_2 ) )\n // InternalMyDsl.g:932:2: ( rule__Attribute__TypeNameAssignment_2_2 )\n {\n before(grammarAccess.getAttributeAccess().getTypeNameAssignment_2_2()); \n // InternalMyDsl.g:933:2: ( rule__Attribute__TypeNameAssignment_2_2 )\n // InternalMyDsl.g:933:3: rule__Attribute__TypeNameAssignment_2_2\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__TypeNameAssignment_2_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAttributeAccess().getTypeNameAssignment_2_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Move__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:4592:1: ( ( ( rule__Move__DestinationAssignment_2 ) ) )\r\n // InternalDroneScript.g:4593:1: ( ( rule__Move__DestinationAssignment_2 ) )\r\n {\r\n // InternalDroneScript.g:4593:1: ( ( rule__Move__DestinationAssignment_2 ) )\r\n // InternalDroneScript.g:4594:2: ( rule__Move__DestinationAssignment_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getMoveAccess().getDestinationAssignment_2()); \r\n }\r\n // InternalDroneScript.g:4595:2: ( rule__Move__DestinationAssignment_2 )\r\n // InternalDroneScript.g:4595:3: rule__Move__DestinationAssignment_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Move__DestinationAssignment_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getMoveAccess().getDestinationAssignment_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1503:1: ( ( ( rule__PrintCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1504:1: ( ( rule__PrintCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1505:2: ( rule__PrintCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1506:2: ( rule__PrintCSV__OpenAssignment_2 )\n // InternalCsv.g:1506:3: rule__PrintCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Expression__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12371:1: ( rule__Expression__Group__2__Impl )\r\n // InternalGo.g:12372:2: rule__Expression__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Expression__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6427:1: ( rule__XAssignment__Group_1_1_0_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6428:2: rule__XAssignment__Group_1_1_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__1__Impl_in_rule__XAssignment__Group_1_1_0_0__113502);\r\n rule__XAssignment__Group_1_1_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Assignment__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9860:1: ( rule__Assignment__Group__0__Impl rule__Assignment__Group__1 )\r\n // InternalGo.g:9861:2: rule__Assignment__Group__0__Impl rule__Assignment__Group__1\r\n {\r\n pushFollow(FOLLOW_20);\r\n rule__Assignment__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__Assignment__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5526:1: ( rule__XAssignment__Group_1_1__1__Impl )\r\n // InternalDroneScript.g:5527:2: rule__XAssignment__Group_1_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Attribute__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:714:1: ( ( ( rule__Attribute__TypeNameAssignment_0_2 ) ) )\n // InternalMyDsl.g:715:1: ( ( rule__Attribute__TypeNameAssignment_0_2 ) )\n {\n // InternalMyDsl.g:715:1: ( ( rule__Attribute__TypeNameAssignment_0_2 ) )\n // InternalMyDsl.g:716:2: ( rule__Attribute__TypeNameAssignment_0_2 )\n {\n before(grammarAccess.getAttributeAccess().getTypeNameAssignment_0_2()); \n // InternalMyDsl.g:717:2: ( rule__Attribute__TypeNameAssignment_0_2 )\n // InternalMyDsl.g:717:3: rule__Attribute__TypeNameAssignment_0_2\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__TypeNameAssignment_0_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAttributeAccess().getTypeNameAssignment_0_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6366:1: ( rule__XAssignment__Group_1_1_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6367:2: rule__XAssignment__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0__0__Impl_in_rule__XAssignment__Group_1_1_0__013382);\r\n rule__XAssignment__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Algo__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:2017:1: ( ( ( rule__Algo__AlgoAssignment_2 ) ) )\n // InternalMLRegression.g:2018:1: ( ( rule__Algo__AlgoAssignment_2 ) )\n {\n // InternalMLRegression.g:2018:1: ( ( rule__Algo__AlgoAssignment_2 ) )\n // InternalMLRegression.g:2019:2: ( rule__Algo__AlgoAssignment_2 )\n {\n before(grammarAccess.getAlgoAccess().getAlgoAssignment_2()); \n // InternalMLRegression.g:2020:2: ( rule__Algo__AlgoAssignment_2 )\n // InternalMLRegression.g:2020:3: rule__Algo__AlgoAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Algo__AlgoAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAlgoAccess().getAlgoAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:520:1: ( ( ( rule__Definition__InputAssignment_1 ) ) )\n // InternalWh.g:521:1: ( ( rule__Definition__InputAssignment_1 ) )\n {\n // InternalWh.g:521:1: ( ( rule__Definition__InputAssignment_1 ) )\n // InternalWh.g:522:2: ( rule__Definition__InputAssignment_1 )\n {\n before(grammarAccess.getDefinitionAccess().getInputAssignment_1()); \n // InternalWh.g:523:2: ( rule__Definition__InputAssignment_1 )\n // InternalWh.g:523:3: rule__Definition__InputAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Definition__InputAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getInputAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAssignParameter__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5802:1: ( rule__AstAssignParameter__Group__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5803:2: rule__AstAssignParameter__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__AstAssignParameter__Group__2__Impl_in_rule__AstAssignParameter__Group__212166);\n rule__AstAssignParameter__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Expression2__Group_1__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12517:1: ( ( ( rule__Expression2__Expression2Assignment_1_2 ) ) )\r\n // InternalGo.g:12518:1: ( ( rule__Expression2__Expression2Assignment_1_2 ) )\r\n {\r\n // InternalGo.g:12518:1: ( ( rule__Expression2__Expression2Assignment_1_2 ) )\r\n // InternalGo.g:12519:2: ( rule__Expression2__Expression2Assignment_1_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpression2Access().getExpression2Assignment_1_2()); \r\n }\r\n // InternalGo.g:12520:2: ( rule__Expression2__Expression2Assignment_1_2 )\r\n // InternalGo.g:12520:3: rule__Expression2__Expression2Assignment_1_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Expression2__Expression2Assignment_1_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpression2Access().getExpression2Assignment_1_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:471:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:472:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__1951);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__2_in_rule__Model__Group__1954);\n rule__Model__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Text__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1850:1: ( ( ( rule__Text__NameAssignment_1 ) ) )\n // InternalBrowser.g:1851:1: ( ( rule__Text__NameAssignment_1 ) )\n {\n // InternalBrowser.g:1851:1: ( ( rule__Text__NameAssignment_1 ) )\n // InternalBrowser.g:1852:2: ( rule__Text__NameAssignment_1 )\n {\n before(grammarAccess.getTextAccess().getNameAssignment_1()); \n // InternalBrowser.g:1853:2: ( rule__Text__NameAssignment_1 )\n // InternalBrowser.g:1853:3: rule__Text__NameAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Text__NameAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTextAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6334:1: ( rule__XAssignment__Group_1_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6335:2: rule__XAssignment__Group_1_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__1__Impl_in_rule__XAssignment__Group_1_1__113321);\r\n rule__XAssignment__Group_1_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__IdentifierList__Group_2__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:5956:1: ( ( ( rule__IdentifierList__Id2Assignment_2_1 ) ) )\r\n // InternalGo.g:5957:1: ( ( rule__IdentifierList__Id2Assignment_2_1 ) )\r\n {\r\n // InternalGo.g:5957:1: ( ( rule__IdentifierList__Id2Assignment_2_1 ) )\r\n // InternalGo.g:5958:2: ( rule__IdentifierList__Id2Assignment_2_1 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIdentifierListAccess().getId2Assignment_2_1()); \r\n }\r\n // InternalGo.g:5959:2: ( rule__IdentifierList__Id2Assignment_2_1 )\r\n // InternalGo.g:5959:3: rule__IdentifierList__Id2Assignment_2_1\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IdentifierList__Id2Assignment_2_1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIdentifierListAccess().getId2Assignment_2_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1_0_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3538:1: ( rule__XAssignment__Group_1_1_0_0__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3539:2: rule__XAssignment__Group_1_1_0_0__1__Impl\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__1__Impl_in_rule__XAssignment__Group_1_1_0_0__17428);\n rule__XAssignment__Group_1_1_0_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5472:1: ( rule__XAssignment__Group_1__1__Impl )\r\n // InternalDroneScript.g:5473:2: rule__XAssignment__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3477:1: ( rule__XAssignment__Group_1_1_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3478:2: rule__XAssignment__Group_1_1_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0__0__Impl_in_rule__XAssignment__Group_1_1_0__07308);\n rule__XAssignment__Group_1_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5607:1: ( rule__XAssignment__Group_1_1_0_0__1__Impl )\r\n // InternalDroneScript.g:5608:2: rule__XAssignment__Group_1_1_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Program__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:405:1: ( rule__Program__Group__2__Impl )\n // InternalWh.g:406:2: rule__Program__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Program__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Link__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1526:1: ( ( ( rule__Link__UrlAssignment_2 ) ) )\n // InternalBrowser.g:1527:1: ( ( rule__Link__UrlAssignment_2 ) )\n {\n // InternalBrowser.g:1527:1: ( ( rule__Link__UrlAssignment_2 ) )\n // InternalBrowser.g:1528:2: ( rule__Link__UrlAssignment_2 )\n {\n before(grammarAccess.getLinkAccess().getUrlAssignment_2()); \n // InternalBrowser.g:1529:2: ( rule__Link__UrlAssignment_2 )\n // InternalBrowser.g:1529:3: rule__Link__UrlAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Link__UrlAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLinkAccess().getUrlAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:535:1: ( rule__Definition__Group__2__Impl rule__Definition__Group__3 )\n // InternalWh.g:536:2: rule__Definition__Group__2__Impl rule__Definition__Group__3\n {\n pushFollow(FOLLOW_9);\n rule__Definition__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1654:1: ( rule__NbCol__Group__2__Impl )\n // InternalCsv.g:1655:2: rule__NbCol__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9545:1: ( ( ( rule__AstProcedure__NameAssignment_2 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9546:1: ( ( rule__AstProcedure__NameAssignment_2 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9546:1: ( ( rule__AstProcedure__NameAssignment_2 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9547:1: ( rule__AstProcedure__NameAssignment_2 )\n {\n before(grammarAccess.getAstProcedureAccess().getNameAssignment_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9548:1: ( rule__AstProcedure__NameAssignment_2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9548:2: rule__AstProcedure__NameAssignment_2\n {\n pushFollow(FOLLOW_rule__AstProcedure__NameAssignment_2_in_rule__AstProcedure__Group__2__Impl19550);\n rule__AstProcedure__NameAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstProcedureAccess().getNameAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3247:1: ( rule__QualifiedName__Group__1__Impl )\n // InternalCsv.g:3248:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6273:1: ( rule__XAssignment__Group_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6274:2: rule__XAssignment__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1__1__Impl_in_rule__XAssignment__Group_1__113199);\r\n rule__XAssignment__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:898:1: ( rule__Model__Group__1__Impl )\n // InternalMLRegression.g:899:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2089:1: ( ( ( rule__Track__NameAssignment_1 ) ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2090:1: ( ( rule__Track__NameAssignment_1 ) )\n {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2090:1: ( ( rule__Track__NameAssignment_1 ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2091:1: ( rule__Track__NameAssignment_1 )\n {\n before(grammarAccess.getTrackAccess().getNameAssignment_1()); \n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2092:1: ( rule__Track__NameAssignment_1 )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2092:2: rule__Track__NameAssignment_1\n {\n pushFollow(FOLLOW_rule__Track__NameAssignment_1_in_rule__Track__Group__1__Impl4297);\n rule__Track__NameAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTrackAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3445:1: ( rule__XAssignment__Group_1_1__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3446:2: rule__XAssignment__Group_1_1__1__Impl\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__1__Impl_in_rule__XAssignment__Group_1_1__17247);\n rule__XAssignment__Group_1_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3301:1: ( rule__QualifiedName__Group_1__1__Impl )\n // InternalCsv.g:3302:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1071:1: ( ( ( rule__Attribute__Att_nameAssignment_0 ) ) )\n // InternalBSQL2Java.g:1072:1: ( ( rule__Attribute__Att_nameAssignment_0 ) )\n {\n // InternalBSQL2Java.g:1072:1: ( ( rule__Attribute__Att_nameAssignment_0 ) )\n // InternalBSQL2Java.g:1073:2: ( rule__Attribute__Att_nameAssignment_0 )\n {\n before(grammarAccess.getAttributeAccess().getAtt_nameAssignment_0()); \n // InternalBSQL2Java.g:1074:2: ( rule__Attribute__Att_nameAssignment_0 )\n // InternalBSQL2Java.g:1074:3: rule__Attribute__Att_nameAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Att_nameAssignment_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAttributeAccess().getAtt_nameAssignment_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__TIAssignment__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2772:1: ( ( ( rule__TIAssignment__Instance_nameAssignment_0 ) ) )\n // InternalBSQL2Java.g:2773:1: ( ( rule__TIAssignment__Instance_nameAssignment_0 ) )\n {\n // InternalBSQL2Java.g:2773:1: ( ( rule__TIAssignment__Instance_nameAssignment_0 ) )\n // InternalBSQL2Java.g:2774:2: ( rule__TIAssignment__Instance_nameAssignment_0 )\n {\n before(grammarAccess.getTIAssignmentAccess().getInstance_nameAssignment_0()); \n // InternalBSQL2Java.g:2775:2: ( rule__TIAssignment__Instance_nameAssignment_0 )\n // InternalBSQL2Java.g:2775:3: rule__TIAssignment__Instance_nameAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__TIAssignment__Instance_nameAssignment_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getTIAssignmentAccess().getInstance_nameAssignment_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3384:1: ( rule__XAssignment__Group_1__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3385:2: rule__XAssignment__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1__1__Impl_in_rule__XAssignment__Group_1__17125);\n rule__XAssignment__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:196:1: ( ( ( rule__Input__Group_2__0 )? ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:197:1: ( ( rule__Input__Group_2__0 )? )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:197:1: ( ( rule__Input__Group_2__0 )? )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:198:1: ( rule__Input__Group_2__0 )?\r\n {\r\n before(grammarAccess.getInputAccess().getGroup_2()); \r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:199:1: ( rule__Input__Group_2__0 )?\r\n int alt1=2;\r\n int LA1_0 = input.LA(1);\r\n\r\n if ( (LA1_0==RULE_ID) ) {\r\n alt1=1;\r\n }\r\n switch (alt1) {\r\n case 1 :\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:199:2: rule__Input__Group_2__0\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group_2__0_in_rule__Input__Group__2__Impl341);\r\n rule__Input__Group_2__0();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n after(grammarAccess.getInputAccess().getGroup_2()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Move__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:4581:1: ( rule__Move__Group__2__Impl )\r\n // InternalDroneScript.g:4582:2: rule__Move__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Move__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__TIAssignment__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2787:1: ( rule__TIAssignment__Group__1__Impl rule__TIAssignment__Group__2 )\n // InternalBSQL2Java.g:2788:2: rule__TIAssignment__Group__1__Impl rule__TIAssignment__Group__2\n {\n pushFollow(FOLLOW_3);\n rule__TIAssignment__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__TIAssignment__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5364:1: ( rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2 )\r\n // InternalDroneScript.g:5365:2: rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2\r\n {\r\n pushFollow(FOLLOW_30);\r\n rule__XAssignment__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XImportDeclaration__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3463:1: ( rule__XImportDeclaration__Group__2__Impl )\n // InternalCsv.g:3464:2: rule__XImportDeclaration__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ExpressionList__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12236:1: ( rule__ExpressionList__Group__2__Impl )\r\n // InternalGo.g:12237:2: rule__ExpressionList__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ExpressionList__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Expression__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12382:1: ( ( ( rule__Expression__ExpAssignment_2 ) ) )\r\n // InternalGo.g:12383:1: ( ( rule__Expression__ExpAssignment_2 ) )\r\n {\r\n // InternalGo.g:12383:1: ( ( rule__Expression__ExpAssignment_2 ) )\r\n // InternalGo.g:12384:2: ( rule__Expression__ExpAssignment_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExpressionAccess().getExpAssignment_2()); \r\n }\r\n // InternalGo.g:12385:2: ( rule__Expression__ExpAssignment_2 )\r\n // InternalGo.g:12385:3: rule__Expression__ExpAssignment_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Expression__ExpAssignment_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExpressionAccess().getExpAssignment_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Attribute__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:768:1: ( ( ( rule__Attribute__NameAssignment_1_0 ) ) )\n // InternalMyDsl.g:769:1: ( ( rule__Attribute__NameAssignment_1_0 ) )\n {\n // InternalMyDsl.g:769:1: ( ( rule__Attribute__NameAssignment_1_0 ) )\n // InternalMyDsl.g:770:2: ( rule__Attribute__NameAssignment_1_0 )\n {\n before(grammarAccess.getAttributeAccess().getNameAssignment_1_0()); \n // InternalMyDsl.g:771:2: ( rule__Attribute__NameAssignment_1_0 )\n // InternalMyDsl.g:771:3: rule__Attribute__NameAssignment_1_0\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__NameAssignment_1_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAttributeAccess().getNameAssignment_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3452:1: ( rule__FinModelFile__Group__2__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3453:2: rule__FinModelFile__Group__2__Impl\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__2__Impl_in_rule__FinModelFile__Group__27658);\r\n rule__FinModelFile__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Output__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:945:1: ( rule__Output__Group_0__2__Impl )\n // InternalWh.g:946:2: rule__Output__Group_0__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group_0__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Application__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:406:1: ( ( ( rule__Application__NameAssignment_1 ) ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:407:1: ( ( rule__Application__NameAssignment_1 ) )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:407:1: ( ( rule__Application__NameAssignment_1 ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:408:1: ( rule__Application__NameAssignment_1 )\n {\n before(grammarAccess.getApplicationAccess().getNameAssignment_1()); \n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:409:1: ( rule__Application__NameAssignment_1 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:409:2: rule__Application__NameAssignment_1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Application__NameAssignment_1_in_rule__Application__Group__1__Impl804);\n rule__Application__NameAssignment_1();\n _fsp--;\n\n\n }\n\n after(grammarAccess.getApplicationAccess().getNameAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstStatementAssign__Group_1__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15250:1: ( rule__AstStatementAssign__Group_1__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15251:2: rule__AstStatementAssign__Group_1__2__Impl\n {\n pushFollow(FOLLOW_rule__AstStatementAssign__Group_1__2__Impl_in_rule__AstStatementAssign__Group_1__230790);\n rule__AstStatementAssign__Group_1__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ImportDecl__Group_2_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:15569:1: ( ( ( rule__ImportDecl__Imports2Assignment_2_1_1 )* ) )\r\n // InternalGo.g:15570:1: ( ( rule__ImportDecl__Imports2Assignment_2_1_1 )* )\r\n {\r\n // InternalGo.g:15570:1: ( ( rule__ImportDecl__Imports2Assignment_2_1_1 )* )\r\n // InternalGo.g:15571:2: ( rule__ImportDecl__Imports2Assignment_2_1_1 )*\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getImportDeclAccess().getImports2Assignment_2_1_1()); \r\n }\r\n // InternalGo.g:15572:2: ( rule__ImportDecl__Imports2Assignment_2_1_1 )*\r\n loop120:\r\n do {\r\n int alt120=2;\r\n int LA120_0 = input.LA(1);\r\n\r\n if ( ((LA120_0>=RULE_STRING && LA120_0<=RULE_ID)||(LA120_0>=46 && LA120_0<=47)) ) {\r\n alt120=1;\r\n }\r\n\r\n\r\n switch (alt120) {\r\n \tcase 1 :\r\n \t // InternalGo.g:15572:3: rule__ImportDecl__Imports2Assignment_2_1_1\r\n \t {\r\n \t pushFollow(FOLLOW_88);\r\n \t rule__ImportDecl__Imports2Assignment_2_1_1();\r\n\r\n \t state._fsp--;\r\n \t if (state.failed) return ;\r\n\r\n \t }\r\n \t break;\r\n\r\n \tdefault :\r\n \t break loop120;\r\n }\r\n } while (true);\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getImportDeclAccess().getImports2Assignment_2_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__NbCol__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1665:1: ( ( ( rule__NbCol__OpenAssignment_2 ) ) )\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1666:1: ( ( rule__NbCol__OpenAssignment_2 ) )\n // InternalCsv.g:1667:2: ( rule__NbCol__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1668:2: ( rule__NbCol__OpenAssignment_2 )\n // InternalCsv.g:1668:3: rule__NbCol__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__NbCol__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getNbColAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7795095", "0.7122756", "0.7021346", "0.6996065", "0.69656146", "0.6964076", "0.6941061", "0.6898908", "0.68982214", "0.68600625", "0.6853349", "0.6833731", "0.6831899", "0.68130916", "0.68115956", "0.68097526", "0.68086815", "0.68053144", "0.67972326", "0.6761439", "0.6755358", "0.6750635", "0.67012787", "0.66742325", "0.6665032", "0.6654828", "0.6653052", "0.6636973", "0.66317415", "0.6625803", "0.6615123", "0.6601316", "0.65977806", "0.65966815", "0.65855384", "0.6569426", "0.65569144", "0.6553217", "0.6551554", "0.65478724", "0.65463144", "0.65221673", "0.6515971", "0.65126723", "0.6502793", "0.64972025", "0.64906245", "0.6487834", "0.64856446", "0.6479946", "0.64772624", "0.6476391", "0.64735353", "0.64669746", "0.64644134", "0.6463072", "0.64537364", "0.64513713", "0.64465344", "0.6445953", "0.6444266", "0.64435625", "0.64381063", "0.6437453", "0.64285195", "0.64260405", "0.64189506", "0.64137197", "0.6409071", "0.6406565", "0.64031655", "0.6402788", "0.6402122", "0.639918", "0.63966906", "0.6391901", "0.6387062", "0.6384281", "0.63839096", "0.63752085", "0.63739026", "0.6367627", "0.63603777", "0.63596916", "0.6348169", "0.6340591", "0.6338579", "0.63341624", "0.6323014", "0.63219863", "0.6315628", "0.631513", "0.6309403", "0.63034064", "0.6302042", "0.6295894", "0.62923443", "0.6289818", "0.62893647", "0.62785506" ]
0.8403014
0
$ANTLR end "rule__Model__Group__2__Impl" $ANTLR start "rule__Model__Group__3" InternalCsv.g:948:1: rule__Model__Group__3 : rule__Model__Group__3__Impl rule__Model__Group__4 ;
public final void rule__Model__Group__3() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 ) // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4 { pushFollow(FOLLOW_7); rule__Model__Group__3__Impl(); state._fsp--; if (state.failed) return ; pushFollow(FOLLOW_2); rule__Model__Group__4(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1206:1: ( ( ')' ) )\n // InternalCsv.g:1207:1: ( ')' )\n {\n // InternalCsv.g:1207:1: ( ')' )\n // InternalCsv.g:1208:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1475:1: ( ( ( rule__Language__Group_3__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1477:1: ( rule__Language__Group_3__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_3()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:1: ( rule__Language__Group_3__0 )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==25) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:2: rule__Language__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0_in_rule__Language__Group__3__Impl2883);\n rule__Language__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1767:1: ( rule__Column__Group__3__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1768:2: rule__Column__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Column__Group__3__Impl_in_rule__Column__Group__33499);\n rule__Column__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:555:1: ( rule__Activity__Group__3__Impl rule__Activity__Group__4 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:556:2: rule__Activity__Group__3__Impl rule__Activity__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__3__Impl_in_rule__Activity__Group__31098);\n rule__Activity__Group__3__Impl();\n _fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__4_in_rule__Activity__Group__31101);\n rule__Activity__Group__4();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14509:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14511:1: ','\n {\n before(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstInputPattern__Group_3__0__Impl29333); \n after(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1463:1: ( rule__Language__Group__3__Impl rule__Language__Group__4 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1464:2: rule__Language__Group__3__Impl rule__Language__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__3__Impl_in_rule__Language__Group__32853);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4_in_rule__Language__Group__32856);\n rule__Language__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14887:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14889:1: ','\n {\n before(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstOutputPattern__Group_3__0__Impl30078); \n after(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2154:1: ( rule__Model__Group__3__Impl )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2155:2: rule__Model__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__3__Impl_in_rule__Model__Group__34605);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1337:1: ( rule__Enum__Group__3__Impl rule__Enum__Group__4 )\n // InternalMyDsl.g:1338:2: rule__Enum__Group__3__Impl rule__Enum__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__Enum__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:213:1: ( rule__Input__Group__3__Impl rule__Input__Group__4 )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:214:2: rule__Input__Group__3__Impl rule__Input__Group__4\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__3__Impl_in_rule__Input__Group__3372);\r\n rule__Input__Group__3__Impl();\r\n\r\n state._fsp--;\r\n\r\n pushFollow(FOLLOW_rule__Input__Group__4_in_rule__Input__Group__3375);\r\n rule__Input__Group__4();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Tab__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1638:1: ( rule__Tab__Group__3__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1639:2: rule__Tab__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Tab__Group__3__Impl_in_rule__Tab__Group__33249);\n rule__Tab__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstGenerator__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19709:1: ( rule__AstGenerator__Group__3__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19710:2: rule__AstGenerator__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__AstGenerator__Group__3__Impl_in_rule__AstGenerator__Group__339561);\n rule__AstGenerator__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:562:1: ( rule__Definition__Group__3__Impl rule__Definition__Group__4 )\n // InternalWh.g:563:2: rule__Definition__Group__3__Impl rule__Definition__Group__4\n {\n pushFollow(FOLLOW_8);\n rule__Definition__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:729:1: ( rule__Attribute__Group_0__3__Impl )\n // InternalMyDsl.g:730:2: rule__Attribute__Group_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_0__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1773:1: ( ( ( rule__SaveCSV__FileAssignment_3 )? ) )\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n {\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n // InternalCsv.g:1775:2: ( rule__SaveCSV__FileAssignment_3 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1776:2: ( rule__SaveCSV__FileAssignment_3 )?\n int alt13=2;\n int LA13_0 = input.LA(1);\n\n if ( (LA13_0==RULE_STRING) ) {\n alt13=1;\n }\n switch (alt13) {\n case 1 :\n // InternalCsv.g:1776:3: rule__SaveCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3049:1: ( rule__Action__Group__3__Impl rule__Action__Group__4 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3050:2: rule__Action__Group__3__Impl rule__Action__Group__4\n {\n pushFollow(FOLLOW_rule__Action__Group__3__Impl_in_rule__Action__Group__36010);\n rule__Action__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Action__Group__4_in_rule__Action__Group__36013);\n rule__Action__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Link__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:841:1: ( rule__Link__Group__3__Impl )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:842:2: rule__Link__Group__3__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Link__Group__3__Impl_in_rule__Link__Group__31658);\n rule__Link__Group__3__Impl();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_3__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1053:1: ( rule__Attribute__Group_3__2__Impl )\n // InternalMyDsl.g:1054:2: rule__Attribute__Group_3__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_3__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_1__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:837:1: ( rule__Attribute__Group_1__3__Impl )\n // InternalMyDsl.g:838:2: rule__Attribute__Group_1__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_1__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:454:1: ( rule__Program__Group__3__Impl )\n // InternalWh.g:455:2: rule__Program__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Program__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:577:1: ( ( ( rule__Empresa__Group_3__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:578:1: ( ( rule__Empresa__Group_3__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:578:1: ( ( rule__Empresa__Group_3__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:579:1: ( rule__Empresa__Group_3__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_3()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:580:1: ( rule__Empresa__Group_3__0 )?\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==18) ) {\n alt3=1;\n }\n switch (alt3) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:580:2: rule__Empresa__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_3__0_in_rule__Empresa__Group__3__Impl1127);\n rule__Empresa__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Dataset__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1276:1: ( rule__Dataset__Group__3__Impl )\n // InternalMLRegression.g:1277:2: rule__Dataset__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Dataset__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Position__Group__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5160:1: ( ( ',' ) )\r\n // InternalDroneScript.g:5161:1: ( ',' )\r\n {\r\n // InternalDroneScript.g:5161:1: ( ',' )\r\n // InternalDroneScript.g:5162:2: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getPositionAccess().getCommaKeyword_3()); \r\n }\r\n match(input,53,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getPositionAccess().getCommaKeyword_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Database__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1509:1: ( rule__Database__Group__3__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1510:2: rule__Database__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Database__Group__3__Impl_in_rule__Database__Group__32999);\n rule__Database__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1173:1: ( rule__Address_Impl__Group__3__Impl rule__Address_Impl__Group__4 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1174:2: rule__Address_Impl__Group__3__Impl rule__Address_Impl__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__3__Impl_in_rule__Address_Impl__Group__32287);\n rule__Address_Impl__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__4_in_rule__Address_Impl__Group__32290);\n rule__Address_Impl__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Predicate__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3368:1: ( rule__Predicate__Group__3__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3369:2: rule__Predicate__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Predicate__Group__3__Impl_in_rule__Predicate__Group__36631);\n rule__Predicate__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Schema__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:567:1: ( rule__Schema__Group__3__Impl rule__Schema__Group__4 )\n // InternalMyDsl.g:568:2: rule__Schema__Group__3__Impl rule__Schema__Group__4\n {\n pushFollow(FOLLOW_6);\n rule__Schema__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Schema__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1649:1: ( rule__Input__Group__3__Impl rule__Input__Group__4 )\n // InternalBrowser.g:1650:2: rule__Input__Group__3__Impl rule__Input__Group__4\n {\n pushFollow(FOLLOW_9);\n rule__Input__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Input__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Script__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3879:1: ( rule__Script__Group__3__Impl )\r\n // InternalDroneScript.g:3880:2: rule__Script__Group__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Script__Group__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Empresa__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:565:1: ( rule__Empresa__Group__3__Impl rule__Empresa__Group__4 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:566:2: rule__Empresa__Group__3__Impl rule__Empresa__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__3__Impl_in_rule__Empresa__Group__31097);\n rule__Empresa__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__4_in_rule__Empresa__Group__31100);\n rule__Empresa__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1563:1: ( rule__Language__Group_3__0__Impl rule__Language__Group_3__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1564:2: rule__Language__Group_3__0__Impl rule__Language__Group_3__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0__Impl_in_rule__Language__Group_3__03046);\n rule__Language__Group_3__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1_in_rule__Language__Group_3__03049);\n rule__Language__Group_3__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1876:1: ( ( ( rule__Categoria__Group_3__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1877:1: ( ( rule__Categoria__Group_3__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1877:1: ( ( rule__Categoria__Group_3__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1878:1: ( rule__Categoria__Group_3__0 )?\n {\n before(grammarAccess.getCategoriaAccess().getGroup_3()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1879:1: ( rule__Categoria__Group_3__0 )?\n int alt13=2;\n int LA13_0 = input.LA(1);\n\n if ( (LA13_0==17) ) {\n alt13=1;\n }\n switch (alt13) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1879:2: rule__Categoria__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group_3__0_in_rule__Categoria__Group__3__Impl3684);\n rule__Categoria__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getCategoriaAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_3_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19567:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19568:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19568:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19569:1: ','\n {\n before(grammarAccess.getAstExpressionListAccess().getCommaKeyword_3_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstExpressionList__Group_3_2__0__Impl39285); \n after(grammarAccess.getAstExpressionListAccess().getCommaKeyword_3_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_3__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19521:1: ( rule__AstExpressionList__Group_3__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19522:2: rule__AstExpressionList__Group_3__2__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionList__Group_3__2__Impl_in_rule__AstExpressionList__Group_3__239190);\n rule__AstExpressionList__Group_3__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1303:1: ( ( ( rule__Catalogo__Group_3__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1304:1: ( ( rule__Catalogo__Group_3__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1304:1: ( ( rule__Catalogo__Group_3__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1305:1: ( rule__Catalogo__Group_3__0 )?\n {\n before(grammarAccess.getCatalogoAccess().getGroup_3()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1306:1: ( rule__Catalogo__Group_3__0 )?\n int alt9=2;\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==17) ) {\n alt9=1;\n }\n switch (alt9) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1306:2: rule__Catalogo__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group_3__0_in_rule__Catalogo__Group__3__Impl2558);\n rule__Catalogo__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getCatalogoAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__MethodDecl__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4649:1: ( rule__MethodDecl__Group__3__Impl rule__MethodDecl__Group__4 )\r\n // InternalGo.g:4650:2: rule__MethodDecl__Group__3__Impl rule__MethodDecl__Group__4\r\n {\r\n pushFollow(FOLLOW_9);\r\n rule__MethodDecl__Group__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__MethodDecl__Group__4();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_3__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19532:1: ( ( ( rule__AstExpressionList__Group_3_2__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19533:1: ( ( rule__AstExpressionList__Group_3_2__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19533:1: ( ( rule__AstExpressionList__Group_3_2__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19534:1: ( rule__AstExpressionList__Group_3_2__0 )*\n {\n before(grammarAccess.getAstExpressionListAccess().getGroup_3_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19535:1: ( rule__AstExpressionList__Group_3_2__0 )*\n loop157:\n do {\n int alt157=2;\n int LA157_0 = input.LA(1);\n\n if ( (LA157_0==62) ) {\n alt157=1;\n }\n\n\n switch (alt157) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19535:2: rule__AstExpressionList__Group_3_2__0\n \t {\n \t pushFollow(FOLLOW_rule__AstExpressionList__Group_3_2__0_in_rule__AstExpressionList__Group_3__2__Impl39217);\n \t rule__AstExpressionList__Group_3_2__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop157;\n }\n } while (true);\n\n after(grammarAccess.getAstExpressionListAccess().getGroup_3_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19341:1: ( ( ( rule__AstExpressionList__Group_3__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19342:1: ( ( rule__AstExpressionList__Group_3__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19342:1: ( ( rule__AstExpressionList__Group_3__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19343:1: ( rule__AstExpressionList__Group_3__0 )?\n {\n before(grammarAccess.getAstExpressionListAccess().getGroup_3()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19344:1: ( rule__AstExpressionList__Group_3__0 )?\n int alt156=2;\n int LA156_0 = input.LA(1);\n\n if ( (LA156_0==51) ) {\n alt156=1;\n }\n switch (alt156) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19344:2: rule__AstExpressionList__Group_3__0\n {\n pushFollow(FOLLOW_rule__AstExpressionList__Group_3__0_in_rule__AstExpressionList__Group__3__Impl38845);\n rule__AstExpressionList__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstExpressionListAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group_2__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22282:1: ( rule__AstAnnotation__Group_2__3__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22283:2: rule__AstAnnotation__Group_2__3__Impl\n {\n pushFollow(FOLLOW_rule__AstAnnotation__Group_2__3__Impl_in_rule__AstAnnotation__Group_2__344633);\n rule__AstAnnotation__Group_2__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Midi__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1065:1: ( rule__Midi__Group__3__Impl rule__Midi__Group__4 )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1066:2: rule__Midi__Group__3__Impl rule__Midi__Group__4\n {\n pushFollow(FOLLOW_rule__Midi__Group__3__Impl_in_rule__Midi__Group__32287);\n rule__Midi__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Midi__Group__4_in_rule__Midi__Group__32290);\n rule__Midi__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1291:1: ( rule__Catalogo__Group__3__Impl rule__Catalogo__Group__4 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1292:2: rule__Catalogo__Group__3__Impl rule__Catalogo__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__3__Impl_in_rule__Catalogo__Group__32528);\n rule__Catalogo__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__4_in_rule__Catalogo__Group__32531);\n rule__Catalogo__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_3_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19586:1: ( rule__AstExpressionList__Group_3_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19587:2: rule__AstExpressionList__Group_3_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionList__Group_3_2__1__Impl_in_rule__AstExpressionList__Group_3_2__139316);\n rule__AstExpressionList__Group_3_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AliasDecl__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9185:1: ( rule__AliasDecl__Group__3__Impl )\r\n // InternalGo.g:9186:2: rule__AliasDecl__Group__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__AliasDecl__Group__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstUnit__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3708:1: ( rule__AstUnit__Group__3__Impl rule__AstUnit__Group__4 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3709:2: rule__AstUnit__Group__3__Impl rule__AstUnit__Group__4\n {\n pushFollow(FOLLOW_rule__AstUnit__Group__3__Impl_in_rule__AstUnit__Group__38040);\n rule__AstUnit__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstUnit__Group__4_in_rule__AstUnit__Group__38043);\n rule__AstUnit__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14724:1: ( ( ( rule__AstOutputPattern__Group_3__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14725:1: ( ( rule__AstOutputPattern__Group_3__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14725:1: ( ( rule__AstOutputPattern__Group_3__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14726:1: ( rule__AstOutputPattern__Group_3__0 )*\n {\n before(grammarAccess.getAstOutputPatternAccess().getGroup_3()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14727:1: ( rule__AstOutputPattern__Group_3__0 )*\n loop125:\n do {\n int alt125=2;\n int LA125_0 = input.LA(1);\n\n if ( (LA125_0==62) ) {\n alt125=1;\n }\n\n\n switch (alt125) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14727:2: rule__AstOutputPattern__Group_3__0\n \t {\n \t pushFollow(FOLLOW_rule__AstOutputPattern__Group_3__0_in_rule__AstOutputPattern__Group__3__Impl29761);\n \t rule__AstOutputPattern__Group_3__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop125;\n }\n } while (true);\n\n after(grammarAccess.getAstOutputPatternAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Term__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9064:1: ( rule__Term__Group__3__Impl rule__Term__Group__4 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9065:2: rule__Term__Group__3__Impl rule__Term__Group__4\n {\n pushFollow(FOLLOW_rule__Term__Group__3__Impl_in_rule__Term__Group__317760);\n rule__Term__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Term__Group__4_in_rule__Term__Group__317763);\n rule__Term__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2886:1: ( rule__Atributo__Group__3__Impl rule__Atributo__Group__4 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2887:2: rule__Atributo__Group__3__Impl rule__Atributo__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__3__Impl_in_rule__Atributo__Group__35656);\n rule__Atributo__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__4_in_rule__Atributo__Group__35659);\n rule__Atributo__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:897:1: ( rule__BTable__Group__3__Impl rule__BTable__Group__4 )\n // InternalBSQL2Java.g:898:2: rule__BTable__Group__3__Impl rule__BTable__Group__4\n {\n pushFollow(FOLLOW_3);\n rule__BTable__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1864:1: ( rule__Categoria__Group__3__Impl rule__Categoria__Group__4 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1865:2: rule__Categoria__Group__3__Impl rule__Categoria__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__3__Impl_in_rule__Categoria__Group__33654);\n rule__Categoria__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__4_in_rule__Categoria__Group__33657);\n rule__Categoria__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3560:1: ( ( ';' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3561:1: ( ';' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3561:1: ( ';' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3562:1: ';'\n {\n before(grammarAccess.getAstPackageAccess().getSemicolonKeyword_3()); \n match(input,49,FOLLOW_49_in_rule__AstPackage__Group__3__Impl7758); \n after(grammarAccess.getAstPackageAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Go__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:2297:1: ( rule__Go__Group__3__Impl )\n // InternalBrowser.g:2298:2: rule__Go__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Go__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Function__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:513:1: ( rule__Function__Group__3__Impl )\n // InternalWh.g:514:2: rule__Function__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Function__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstConstructor__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7320:1: ( rule__AstConstructor__Group__3__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7321:2: rule__AstConstructor__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__AstConstructor__Group__3__Impl_in_rule__AstConstructor__Group__315159);\n rule__AstConstructor__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Calculate__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:2140:1: ( rule__Calculate__Group__3__Impl )\n // InternalMLRegression.g:2141:2: rule__Calculate__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Calculate__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2137:1: ( rule__Track__Group__3__Impl rule__Track__Group__4 )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2138:2: rule__Track__Group__3__Impl rule__Track__Group__4\n {\n pushFollow(FOLLOW_rule__Track__Group__3__Impl_in_rule__Track__Group__34389);\n rule__Track__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Track__Group__4_in_rule__Track__Group__34392);\n rule__Track__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1026:1: ( rule__Attribute__Group_3__1__Impl rule__Attribute__Group_3__2 )\n // InternalMyDsl.g:1027:2: rule__Attribute__Group_3__1__Impl rule__Attribute__Group_3__2\n {\n pushFollow(FOLLOW_4);\n rule__Attribute__Group_3__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_3__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12417:1: ( rule__AstAction__Group__3__Impl rule__AstAction__Group__4 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12418:2: rule__AstAction__Group__3__Impl rule__AstAction__Group__4\n {\n pushFollow(FOLLOW_rule__AstAction__Group__3__Impl_in_rule__AstAction__Group__325198);\n rule__AstAction__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group__4_in_rule__AstAction__Group__325201);\n rule__AstAction__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Link__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1541:1: ( rule__Link__Group__3__Impl )\n // InternalBrowser.g:1542:2: rule__Link__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Link__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14906:1: ( rule__AstOutputPattern__Group_3__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14907:2: rule__AstOutputPattern__Group_3__1__Impl\n {\n pushFollow(FOLLOW_rule__AstOutputPattern__Group_3__1__Impl_in_rule__AstOutputPattern__Group_3__130109);\n rule__AstOutputPattern__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_3__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:999:1: ( rule__Attribute__Group_3__0__Impl rule__Attribute__Group_3__1 )\n // InternalMyDsl.g:1000:2: rule__Attribute__Group_3__0__Impl rule__Attribute__Group_3__1\n {\n pushFollow(FOLLOW_8);\n rule__Attribute__Group_3__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_3__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Position__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5148:1: ( rule__Position__Group__3__Impl rule__Position__Group__4 )\r\n // InternalDroneScript.g:5149:2: rule__Position__Group__3__Impl rule__Position__Group__4\r\n {\r\n pushFollow(FOLLOW_22);\r\n rule__Position__Group__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__Position__Group__4();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Language__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1594:1: ( rule__Language__Group_3__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1595:2: rule__Language__Group_3__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1__Impl_in_rule__Language__Group_3__13108);\n rule__Language__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7087:1: ( rule__Constraint__Group__3__Impl rule__Constraint__Group__4 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7088:2: rule__Constraint__Group__3__Impl rule__Constraint__Group__4\n {\n pushFollow(FOLLOW_rule__Constraint__Group__3__Impl_in_rule__Constraint__Group__314287);\n rule__Constraint__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__4_in_rule__Constraint__Group__314290);\n rule__Constraint__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ExprCaseClause__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:10400:1: ( rule__ExprCaseClause__Group__3__Impl )\r\n // InternalGo.g:10401:2: rule__ExprCaseClause__Group__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ExprCaseClause__Group__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstExpressionList__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19329:1: ( rule__AstExpressionList__Group__3__Impl rule__AstExpressionList__Group__4 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19330:2: rule__AstExpressionList__Group__3__Impl rule__AstExpressionList__Group__4\n {\n pushFollow(FOLLOW_rule__AstExpressionList__Group__3__Impl_in_rule__AstExpressionList__Group__338815);\n rule__AstExpressionList__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstExpressionList__Group__4_in_rule__AstExpressionList__Group__338818);\n rule__AstExpressionList__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_2_3_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20886:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20887:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20887:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20888:1: ','\n {\n before(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_3_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstType__Group_0_1_2_3_1__0__Impl41884); \n after(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_3_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__CrossValidation__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1924:1: ( rule__CrossValidation__Group__3__Impl )\n // InternalMLRegression.g:1925:2: rule__CrossValidation__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__CrossValidation__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Updates__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5927:1: ( ( ',' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5928:1: ( ',' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5928:1: ( ',' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5929:1: ','\n {\n before(grammarAccess.getUpdatesAccess().getCommaKeyword_3_0()); \n match(input,35,FOLLOW_35_in_rule__Updates__Group_3__0__Impl11630); \n after(grammarAccess.getUpdatesAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14346:1: ( ( ( rule__AstInputPattern__Group_3__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14347:1: ( ( rule__AstInputPattern__Group_3__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14347:1: ( ( rule__AstInputPattern__Group_3__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14348:1: ( rule__AstInputPattern__Group_3__0 )*\n {\n before(grammarAccess.getAstInputPatternAccess().getGroup_3()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14349:1: ( rule__AstInputPattern__Group_3__0 )*\n loop122:\n do {\n int alt122=2;\n int LA122_0 = input.LA(1);\n\n if ( (LA122_0==62) ) {\n alt122=1;\n }\n\n\n switch (alt122) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14349:2: rule__AstInputPattern__Group_3__0\n \t {\n \t pushFollow(FOLLOW_rule__AstInputPattern__Group_3__0_in_rule__AstInputPattern__Group__3__Impl29016);\n \t rule__AstInputPattern__Group_3__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop122;\n }\n } while (true);\n\n after(grammarAccess.getAstInputPatternAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.73687977", "0.73257005", "0.7322339", "0.70425975", "0.6981263", "0.6691899", "0.6658725", "0.65737134", "0.65517277", "0.64409584", "0.6424011", "0.6386642", "0.6371587", "0.6311243", "0.6298191", "0.6296914", "0.6263146", "0.6260832", "0.62447613", "0.62440085", "0.62311727", "0.6216831", "0.62060773", "0.62053174", "0.62010574", "0.6197355", "0.618737", "0.6186419", "0.61787736", "0.6176235", "0.6174381", "0.61717474", "0.6165911", "0.61583674", "0.6155308", "0.61473095", "0.6143314", "0.61412174", "0.61384743", "0.6103447", "0.6101312", "0.60997033", "0.60996574", "0.60885733", "0.6084141", "0.6081633", "0.6080668", "0.6046455", "0.6034521", "0.60344386", "0.60286534", "0.60184133", "0.60183465", "0.60116524", "0.6005368", "0.60021013", "0.6001489", "0.5986509", "0.5985315", "0.59830856", "0.5973819", "0.59736985", "0.59591496", "0.59559804", "0.59513474", "0.5929315", "0.5920646", "0.59177536", "0.5917546", "0.5917512", "0.5914751", "0.59145904", "0.5913576", "0.591182", "0.59095556", "0.59083754", "0.59059435", "0.5905335", "0.5905179", "0.5898856", "0.58984905", "0.58966416", "0.5889863", "0.5884693", "0.58777016", "0.587622", "0.58737063", "0.58705443", "0.58658266", "0.5860709", "0.5842568", "0.58402437", "0.5837297", "0.58286476", "0.582272", "0.58174175", "0.58142394", "0.5804936", "0.58022404", "0.5800471" ]
0.76790226
0
$ANTLR end "rule__Model__Group__3" $ANTLR start "rule__Model__Group__3__Impl" InternalCsv.g:960:1: rule__Model__Group__3__Impl : ( ';' ) ;
public final void rule__Model__Group__3__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:964:1: ( ( ';' ) ) // InternalCsv.g:965:1: ( ';' ) { // InternalCsv.g:965:1: ( ';' ) // InternalCsv.g:966:2: ';' { if ( state.backtracking==0 ) { before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); } match(input,14,FOLLOW_2); if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3560:1: ( ( ';' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3561:1: ( ';' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3561:1: ( ';' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3562:1: ';'\n {\n before(grammarAccess.getAstPackageAccess().getSemicolonKeyword_3()); \n match(input,49,FOLLOW_49_in_rule__AstPackage__Group__3__Impl7758); \n after(grammarAccess.getAstPackageAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Process__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:8159:1: ( ( ';' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:8160:1: ( ';' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:8160:1: ( ';' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:8161:1: ';'\n {\n before(grammarAccess.getProcessAccess().getSemicolonKeyword_3()); \n match(input,44,FOLLOW_44_in_rule__Process__Group__3__Impl16003); \n after(grammarAccess.getProcessAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14887:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14889:1: ','\n {\n before(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstOutputPattern__Group_3__0__Impl30078); \n after(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1206:1: ( ( ')' ) )\n // InternalCsv.g:1207:1: ( ')' )\n {\n // InternalCsv.g:1207:1: ( ')' )\n // InternalCsv.g:1208:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14509:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14511:1: ','\n {\n before(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstInputPattern__Group_3__0__Impl29333); \n after(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1767:1: ( rule__Column__Group__3__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1768:2: rule__Column__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Column__Group__3__Impl_in_rule__Column__Group__33499);\n rule__Column__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Calculate__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:2151:1: ( ( ';' ) )\n // InternalMLRegression.g:2152:1: ( ';' )\n {\n // InternalMLRegression.g:2152:1: ( ';' )\n // InternalMLRegression.g:2153:2: ';'\n {\n before(grammarAccess.getCalculateAccess().getSemicolonKeyword_3()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getCalculateAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Algo__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:2043:1: ( ( ';' ) )\n // InternalMLRegression.g:2044:1: ( ';' )\n {\n // InternalMLRegression.g:2044:1: ( ';' )\n // InternalMLRegression.g:2045:2: ';'\n {\n before(grammarAccess.getAlgoAccess().getSemicolonKeyword_3()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getAlgoAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Dataset__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1287:1: ( ( ';' ) )\n // InternalMLRegression.g:1288:1: ( ';' )\n {\n // InternalMLRegression.g:1288:1: ( ';' )\n // InternalMLRegression.g:1289:2: ';'\n {\n before(grammarAccess.getDatasetAccess().getSemicolonKeyword_3()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getDatasetAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstGenerator__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19709:1: ( rule__AstGenerator__Group__3__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19710:2: rule__AstGenerator__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__AstGenerator__Group__3__Impl_in_rule__AstGenerator__Group__339561);\n rule__AstGenerator__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_3_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19567:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19568:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19568:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19569:1: ','\n {\n before(grammarAccess.getAstExpressionListAccess().getCommaKeyword_3_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstExpressionList__Group_3_2__0__Impl39285); \n after(grammarAccess.getAstExpressionListAccess().getCommaKeyword_3_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:454:1: ( rule__Program__Group__3__Impl )\n // InternalWh.g:455:2: rule__Program__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Program__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3474:1: ( ( ( ';' )? ) )\n // InternalCsv.g:3475:1: ( ( ';' )? )\n {\n // InternalCsv.g:3475:1: ( ( ';' )? )\n // InternalCsv.g:3476:2: ( ';' )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n // InternalCsv.g:3477:2: ( ';' )?\n int alt27=2;\n int LA27_0 = input.LA(1);\n\n if ( (LA27_0==14) ) {\n alt27=1;\n }\n switch (alt27) {\n case 1 :\n // InternalCsv.g:3477:3: ';'\n {\n match(input,14,FOLLOW_2); if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXImportDeclarationAccess().getSemicolonKeyword_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_10_3__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5371:1: ( ( ';' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5372:1: ( ';' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5372:1: ( ';' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5373:1: ';'\n {\n before(grammarAccess.getAstNetworkAccess().getSemicolonKeyword_10_3_1()); \n match(input,49,FOLLOW_49_in_rule__AstNetwork__Group_10_3__1__Impl11324); \n after(grammarAccess.getAstNetworkAccess().getSemicolonKeyword_10_3_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Tab__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1638:1: ( rule__Tab__Group__3__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1639:2: rule__Tab__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Tab__Group__3__Impl_in_rule__Tab__Group__33249);\n rule__Tab__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__InterfaceType__Group_3__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:6793:1: ( ( ( ';' )? ) )\r\n // InternalGo.g:6794:1: ( ( ';' )? )\r\n {\r\n // InternalGo.g:6794:1: ( ( ';' )? )\r\n // InternalGo.g:6795:2: ( ';' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getInterfaceTypeAccess().getSemicolonKeyword_3_1()); \r\n }\r\n // InternalGo.g:6796:2: ( ';' )?\r\n int alt69=2;\r\n int LA69_0 = input.LA(1);\r\n\r\n if ( (LA69_0==42) ) {\r\n alt69=1;\r\n }\r\n switch (alt69) {\r\n case 1 :\r\n // InternalGo.g:6796:3: ';'\r\n {\r\n match(input,42,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getInterfaceTypeAccess().getSemicolonKeyword_3_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4133:1: ( ( ';' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4134:1: ( ';' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4134:1: ( ';' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4135:1: ';'\n {\n before(grammarAccess.getImportAccess().getSemicolonKeyword_2()); \n match(input,49,FOLLOW_49_in_rule__Import__Group__2__Impl8883); \n after(grammarAccess.getImportAccess().getSemicolonKeyword_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Database__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1509:1: ( rule__Database__Group__3__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1510:2: rule__Database__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Database__Group__3__Impl_in_rule__Database__Group__32999);\n rule__Database__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:577:1: ( ( ( rule__Empresa__Group_3__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:578:1: ( ( rule__Empresa__Group_3__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:578:1: ( ( rule__Empresa__Group_3__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:579:1: ( rule__Empresa__Group_3__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_3()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:580:1: ( rule__Empresa__Group_3__0 )?\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==18) ) {\n alt3=1;\n }\n switch (alt3) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:580:2: rule__Empresa__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_3__0_in_rule__Empresa__Group__3__Impl1127);\n rule__Empresa__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Position__Group__3__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5160:1: ( ( ',' ) )\r\n // InternalDroneScript.g:5161:1: ( ',' )\r\n {\r\n // InternalDroneScript.g:5161:1: ( ',' )\r\n // InternalDroneScript.g:5162:2: ','\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getPositionAccess().getCommaKeyword_3()); \r\n }\r\n match(input,53,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getPositionAccess().getCommaKeyword_3()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Affectation__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1444:1: ( ( ';' ) )\n // InternalBrowser.g:1445:1: ( ';' )\n {\n // InternalBrowser.g:1445:1: ( ';' )\n // InternalBrowser.g:1446:2: ';'\n {\n before(grammarAccess.getAffectationAccess().getSemicolonKeyword_3()); \n match(input,22,FOLLOW_2); \n after(grammarAccess.getAffectationAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_2_3_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20886:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20887:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20887:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20888:1: ','\n {\n before(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_3_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstType__Group_0_1_2_3_1__0__Impl41884); \n after(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_3_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2154:1: ( rule__Model__Group__3__Impl )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2155:2: rule__Model__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__3__Impl_in_rule__Model__Group__34605);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Updates__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5927:1: ( ( ',' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5928:1: ( ',' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5928:1: ( ',' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5929:1: ','\n {\n before(grammarAccess.getUpdatesAccess().getCommaKeyword_3_0()); \n match(input,35,FOLLOW_35_in_rule__Updates__Group_3__0__Impl11630); \n after(grammarAccess.getUpdatesAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:562:1: ( rule__Definition__Group__3__Impl rule__Definition__Group__4 )\n // InternalWh.g:563:2: rule__Definition__Group__3__Impl rule__Definition__Group__4\n {\n pushFollow(FOLLOW_8);\n rule__Definition__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Predicate__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3368:1: ( rule__Predicate__Group__3__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3369:2: rule__Predicate__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Predicate__Group__3__Impl_in_rule__Predicate__Group__36631);\n rule__Predicate__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Dataset__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1276:1: ( rule__Dataset__Group__3__Impl )\n // InternalMLRegression.g:1277:2: rule__Dataset__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Dataset__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_3_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19586:1: ( rule__AstExpressionList__Group_3_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19587:2: rule__AstExpressionList__Group_3_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionList__Group_3_2__1__Impl_in_rule__AstExpressionList__Group_3_2__139316);\n rule__AstExpressionList__Group_3_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_1__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:837:1: ( rule__Attribute__Group_1__3__Impl )\n // InternalMyDsl.g:838:2: rule__Attribute__Group_1__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_1__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:729:1: ( rule__Attribute__Group_0__3__Impl )\n // InternalMyDsl.g:730:2: rule__Attribute__Group_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_0__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1017:1: ( ( ';' ) )\n // InternalMLRegression.g:1018:1: ( ';' )\n {\n // InternalMLRegression.g:1018:1: ( ';' )\n // InternalMLRegression.g:1019:2: ';'\n {\n before(grammarAccess.getLanguageTargetAccess().getSemicolonKeyword_3()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getLanguageTargetAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1475:1: ( ( ( rule__Language__Group_3__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1477:1: ( rule__Language__Group_3__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_3()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:1: ( rule__Language__Group_3__0 )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==25) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:2: rule__Language__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0_in_rule__Language__Group__3__Impl2883);\n rule__Language__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:595:1: ( ( '}' ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:597:1: '}'\n {\n before(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Activity__Group__4__Impl1187); \n after(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_3__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19521:1: ( rule__AstExpressionList__Group_3__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19522:2: rule__AstExpressionList__Group_3__2__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionList__Group_3__2__Impl_in_rule__AstExpressionList__Group_3__239190);\n rule__AstExpressionList__Group_3__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Function__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:513:1: ( rule__Function__Group__3__Impl )\n // InternalWh.g:514:2: rule__Function__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Function__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Partition__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1827:1: ( ( ';' ) )\n // InternalMLRegression.g:1828:1: ( ';' )\n {\n // InternalMLRegression.g:1828:1: ( ';' )\n // InternalMLRegression.g:1829:2: ';'\n {\n before(grammarAccess.getPartitionAccess().getSemicolonKeyword_3()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getPartitionAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Go__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:2297:1: ( rule__Go__Group__3__Impl )\n // InternalBrowser.g:2298:2: rule__Go__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Go__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1773:1: ( ( ( rule__SaveCSV__FileAssignment_3 )? ) )\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n {\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n // InternalCsv.g:1775:2: ( rule__SaveCSV__FileAssignment_3 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1776:2: ( rule__SaveCSV__FileAssignment_3 )?\n int alt13=2;\n int LA13_0 = input.LA(1);\n\n if ( (LA13_0==RULE_STRING) ) {\n alt13=1;\n }\n switch (alt13) {\n case 1 :\n // InternalCsv.g:1776:3: rule__SaveCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:930:1: ( ( ',' ) )\n // InternalWh.g:931:1: ( ',' )\n {\n // InternalWh.g:931:1: ( ',' )\n // InternalWh.g:932:2: ','\n {\n before(grammarAccess.getOutputAccess().getCommaKeyword_0_1()); \n match(input,21,FOLLOW_2); \n after(grammarAccess.getOutputAccess().getCommaKeyword_0_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Link__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:841:1: ( rule__Link__Group__3__Impl )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:842:2: rule__Link__Group__3__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Link__Group__3__Impl_in_rule__Link__Group__31658);\n rule__Link__Group__3__Impl();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14906:1: ( rule__AstOutputPattern__Group_3__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14907:2: rule__AstOutputPattern__Group_3__1__Impl\n {\n pushFollow(FOLLOW_rule__AstOutputPattern__Group_3__1__Impl_in_rule__AstOutputPattern__Group_3__130109);\n rule__AstOutputPattern__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Attribute__Group_3__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1053:1: ( rule__Attribute__Group_3__2__Impl )\n // InternalMyDsl.g:1054:2: rule__Attribute__Group_3__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Attribute__Group_3__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Calculate__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:2140:1: ( rule__Calculate__Group__3__Impl )\n // InternalMLRegression.g:2141:2: rule__Calculate__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Calculate__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12812:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12814:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_4_1__0__Impl25984); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3247:1: ( rule__QualifiedName__Group__1__Impl )\n // InternalCsv.g:3248:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3463:1: ( rule__XImportDeclaration__Group__2__Impl )\n // InternalCsv.g:3464:2: rule__XImportDeclaration__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3301:1: ( rule__QualifiedName__Group_1__1__Impl )\n // InternalCsv.g:3302:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__CrossValidation__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1935:1: ( ( ';' ) )\n // InternalMLRegression.g:1936:1: ( ';' )\n {\n // InternalMLRegression.g:1936:1: ( ';' )\n // InternalMLRegression.g:1937:2: ';'\n {\n before(grammarAccess.getCrossValidationAccess().getSemicolonKeyword_3()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getCrossValidationAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7940:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7941:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7941:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7942:1: ','\n {\n before(grammarAccess.getAstActorAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstActor__Group_4_1__0__Impl16382); \n after(grammarAccess.getAstActorAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAnnotation__Group_2_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22332:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22333:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22333:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22334:1: ','\n {\n before(grammarAccess.getAstAnnotationAccess().getCommaKeyword_2_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstAnnotation__Group_2_2__0__Impl44731); \n after(grammarAccess.getAstAnnotationAccess().getCommaKeyword_2_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19473:1: ( ( ':' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19474:1: ( ':' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19474:1: ( ':' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19475:1: ':'\n {\n before(grammarAccess.getAstExpressionListAccess().getColonKeyword_3_0()); \n match(input,51,FOLLOW_51_in_rule__AstExpressionList__Group_3__0__Impl39099); \n after(grammarAccess.getAstExpressionListAccess().getColonKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:844:1: ( ( ',' ) )\n // InternalWh.g:845:1: ( ',' )\n {\n // InternalWh.g:845:1: ( ',' )\n // InternalWh.g:846:2: ','\n {\n before(grammarAccess.getOutputAccess().getCommaKeyword_1_0()); \n match(input,18,FOLLOW_2); \n after(grammarAccess.getOutputAccess().getCommaKeyword_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Schema__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:567:1: ( rule__Schema__Group__3__Impl rule__Schema__Group__4 )\n // InternalMyDsl.g:568:2: rule__Schema__Group__3__Impl rule__Schema__Group__4\n {\n pushFollow(FOLLOW_6);\n rule__Schema__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Schema__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1594:1: ( rule__Language__Group_3__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1595:2: rule__Language__Group_3__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1__Impl_in_rule__Language__Group_3__13108);\n rule__Language__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Midi__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1065:1: ( rule__Midi__Group__3__Impl rule__Midi__Group__4 )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1066:2: rule__Midi__Group__3__Impl rule__Midi__Group__4\n {\n pushFollow(FOLLOW_rule__Midi__Group__3__Impl_in_rule__Midi__Group__32287);\n rule__Midi__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Midi__Group__4_in_rule__Midi__Group__32290);\n rule__Midi__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1173:1: ( rule__Address_Impl__Group__3__Impl rule__Address_Impl__Group__4 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1174:2: rule__Address_Impl__Group__3__Impl rule__Address_Impl__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__3__Impl_in_rule__Address_Impl__Group__32287);\n rule__Address_Impl__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__4_in_rule__Address_Impl__Group__32290);\n rule__Address_Impl__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstStatementForeach__Group_3_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15961:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15962:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15962:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15963:1: ','\n {\n before(grammarAccess.getAstStatementForeachAccess().getCommaKeyword_3_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstStatementForeach__Group_3_2__0__Impl32194); \n after(grammarAccess.getAstStatementForeachAccess().getCommaKeyword_3_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1463:1: ( rule__Language__Group__3__Impl rule__Language__Group__4 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1464:2: rule__Language__Group__3__Impl rule__Language__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__3__Impl_in_rule__Language__Group__32853);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4_in_rule__Language__Group__32856);\n rule__Language__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12936:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12938:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_6_1__0__Impl26229); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1876:1: ( ( ( rule__Categoria__Group_3__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1877:1: ( ( rule__Categoria__Group_3__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1877:1: ( ( rule__Categoria__Group_3__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1878:1: ( rule__Categoria__Group_3__0 )?\n {\n before(grammarAccess.getCategoriaAccess().getGroup_3()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1879:1: ( rule__Categoria__Group_3__0 )?\n int alt13=2;\n int LA13_0 = input.LA(1);\n\n if ( (LA13_0==17) ) {\n alt13=1;\n }\n switch (alt13) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1879:2: rule__Categoria__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group_3__0_in_rule__Categoria__Group__3__Impl3684);\n rule__Categoria__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getCategoriaAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:213:1: ( rule__Input__Group__3__Impl rule__Input__Group__4 )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:214:2: rule__Input__Group__3__Impl rule__Input__Group__4\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__3__Impl_in_rule__Input__Group__3372);\r\n rule__Input__Group__3__Impl();\r\n\r\n state._fsp--;\r\n\r\n pushFollow(FOLLOW_rule__Input__Group__4_in_rule__Input__Group__3375);\r\n rule__Input__Group__4();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstUnit__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3720:1: ( ( ':' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3721:1: ( ':' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3721:1: ( ':' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3722:1: ':'\n {\n before(grammarAccess.getAstUnitAccess().getColonKeyword_3()); \n match(input,51,FOLLOW_51_in_rule__AstUnit__Group__3__Impl8071); \n after(grammarAccess.getAstUnitAccess().getColonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1615:1: ( rule__Catalogo__Group_3__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1616:2: rule__Catalogo__Group_3__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group_3__1__Impl_in_rule__Catalogo__Group_3__13160);\n rule__Catalogo__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Script__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:3879:1: ( rule__Script__Group__3__Impl )\r\n // InternalDroneScript.g:3880:2: rule__Script__Group__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Script__Group__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAnnotation__Group_2__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22282:1: ( rule__AstAnnotation__Group_2__3__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:22283:2: rule__AstAnnotation__Group_2__3__Impl\n {\n pushFollow(FOLLOW_rule__AstAnnotation__Group_2__3__Impl_in_rule__AstAnnotation__Group_2__344633);\n rule__AstAnnotation__Group_2__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1303:1: ( ( ( rule__Catalogo__Group_3__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1304:1: ( ( rule__Catalogo__Group_3__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1304:1: ( ( rule__Catalogo__Group_3__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1305:1: ( rule__Catalogo__Group_3__0 )?\n {\n before(grammarAccess.getCatalogoAccess().getGroup_3()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1306:1: ( rule__Catalogo__Group_3__0 )?\n int alt9=2;\n int LA9_0 = input.LA(1);\n\n if ( (LA9_0==17) ) {\n alt9=1;\n }\n switch (alt9) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1306:2: rule__Catalogo__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group_3__0_in_rule__Catalogo__Group__3__Impl2558);\n rule__Catalogo__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getCatalogoAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Algo__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:2032:1: ( rule__Algo__Group__3__Impl )\n // InternalMLRegression.g:2033:2: rule__Algo__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Algo__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_6_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10022:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10023:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10023:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10024:1: ','\n {\n before(grammarAccess.getAstProcedureAccess().getCommaKeyword_6_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstProcedure__Group_6_2__0__Impl20490); \n after(grammarAccess.getAstProcedureAccess().getCommaKeyword_6_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7416082", "0.7136996", "0.7003236", "0.69814676", "0.6635773", "0.6611296", "0.6609657", "0.6566865", "0.6551225", "0.6504772", "0.65029544", "0.6492942", "0.6476294", "0.6467302", "0.6464038", "0.64517", "0.6435409", "0.6425946", "0.6399228", "0.63843817", "0.63570344", "0.63096565", "0.62881565", "0.6280222", "0.6275294", "0.6270936", "0.6225338", "0.61969215", "0.61826724", "0.6182491", "0.6177505", "0.6166976", "0.6155036", "0.61496234", "0.61417365", "0.61416745", "0.6129462", "0.6125808", "0.6107222", "0.6095125", "0.60947865", "0.6088637", "0.6087597", "0.6076135", "0.6064632", "0.6063508", "0.6052054", "0.6048846", "0.60401374", "0.6030306", "0.6029108", "0.6024089", "0.6021633", "0.60188955", "0.60164", "0.6004698", "0.6001985", "0.60008746", "0.5988297", "0.59842336", "0.5982259", "0.5981277", "0.59807837", "0.5980497", "0.5975079", "0.59741104", "0.5971709", "0.59498626", "0.5943356", "0.59430385", "0.59420204", "0.59354883", "0.5934458", "0.59315044", "0.59312207", "0.59296334", "0.592137", "0.5919473", "0.5913571", "0.591123", "0.5902263", "0.58970505", "0.58930165", "0.58892655", "0.58868563", "0.5885726", "0.5881642", "0.58745474", "0.5872358", "0.58699065", "0.58694285", "0.5864485", "0.58632463", "0.5858882", "0.5857557", "0.58570075", "0.5856379", "0.58531064", "0.58503264", "0.5850223" ]
0.77841806
0
$ANTLR end "rule__Model__Group__3__Impl" $ANTLR start "rule__Model__Group__4" InternalCsv.g:975:1: rule__Model__Group__4 : rule__Model__Group__4__Impl rule__Model__Group__5 ;
public final void rule__Model__Group__4() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 ) // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5 { pushFollow(FOLLOW_8); rule__Model__Group__4__Impl(); state._fsp--; if (state.failed) return ; pushFollow(FOLLOW_2); rule__Model__Group__5(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1504:1: ( ( ( rule__Language__Group_4__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1506:1: ( rule__Language__Group_4__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_4()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:1: ( rule__Language__Group_4__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==15) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:2: rule__Language__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0_in_rule__Language__Group__4__Impl2944);\n rule__Language__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:595:1: ( ( '}' ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:597:1: '}'\n {\n before(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Activity__Group__4__Impl1187); \n after(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:584:1: ( rule__Activity__Group__4__Impl )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:585:2: rule__Activity__Group__4__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__4__Impl_in_rule__Activity__Group__41159);\n rule__Activity__Group__4__Impl();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:589:1: ( rule__Definition__Group__4__Impl rule__Definition__Group__5 )\n // InternalWh.g:590:2: rule__Definition__Group__4__Impl rule__Definition__Group__5\n {\n pushFollow(FOLLOW_10);\n rule__Definition__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12460:1: ( ( ( rule__AstAction__Group_4__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12461:1: ( ( rule__AstAction__Group_4__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12461:1: ( ( rule__AstAction__Group_4__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12462:1: ( rule__AstAction__Group_4__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12463:1: ( rule__AstAction__Group_4__0 )?\n int alt101=2;\n int LA101_0 = input.LA(1);\n\n if ( (LA101_0==RULE_ID||LA101_0==81) ) {\n alt101=1;\n }\n switch (alt101) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12463:2: rule__AstAction__Group_4__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_4__0_in_rule__AstAction__Group__4__Impl25290);\n rule__AstAction__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2583:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) ) )\n // InternalCsv.g:2584:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) )\n {\n // InternalCsv.g:2584:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 ) )\n // InternalCsv.g:2585:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0_0()); \n }\n // InternalCsv.g:2586:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0 )\n // InternalCsv.g:2586:3: rule__JvmParameterizedTypeReference__Group_1_4_0_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3078:1: ( rule__Action__Group__4__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3079:2: rule__Action__Group__4__Impl\n {\n pushFollow(FOLLOW_rule__Action__Group__4__Impl_in_rule__Action__Group__46071);\n rule__Action__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2503:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) ) )\n // InternalCsv.g:2504:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) )\n {\n // InternalCsv.g:2504:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 ) )\n // InternalCsv.g:2505:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0()); \n }\n // InternalCsv.g:2506:2: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0 )\n // InternalCsv.g:2506:3: rule__JvmParameterizedTypeReference__Group_1_4_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1492:1: ( rule__Language__Group__4__Impl rule__Language__Group__5 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1493:2: rule__Language__Group__4__Impl rule__Language__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4__Impl_in_rule__Language__Group__42914);\n rule__Language__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__5_in_rule__Language__Group__42917);\n rule__Language__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:606:1: ( ( ( rule__Empresa__Group_4__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:607:1: ( ( rule__Empresa__Group_4__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:607:1: ( ( rule__Empresa__Group_4__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:608:1: ( rule__Empresa__Group_4__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_4()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:609:1: ( rule__Empresa__Group_4__0 )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==19) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:609:2: rule__Empresa__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_4__0_in_rule__Empresa__Group__4__Impl1188);\n rule__Empresa__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1202:1: ( rule__Address_Impl__Group__4__Impl rule__Address_Impl__Group__5 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1203:2: rule__Address_Impl__Group__4__Impl rule__Address_Impl__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__4__Impl_in_rule__Address_Impl__Group__42347);\n rule__Address_Impl__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__5_in_rule__Address_Impl__Group__42350);\n rule__Address_Impl__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2556:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? ) )\n // InternalCsv.g:2557:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? )\n {\n // InternalCsv.g:2557:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )? )\n // InternalCsv.g:2558:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2()); \n }\n // InternalCsv.g:2559:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0 )?\n int alt21=2;\n int LA21_0 = input.LA(1);\n\n if ( (LA21_0==31) ) {\n alt21=1;\n }\n switch (alt21) {\n case 1 :\n // InternalCsv.g:2559:3: rule__JvmParameterizedTypeReference__Group_1_4_2__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Schema__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:594:1: ( rule__Schema__Group__4__Impl rule__Schema__Group__5 )\n // InternalMyDsl.g:595:2: rule__Schema__Group__4__Impl rule__Schema__Group__5\n {\n pushFollow(FOLLOW_6);\n rule__Schema__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Schema__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3089:1: ( ( '.' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3090:1: ( '.' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3090:1: ( '.' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3091:1: '.'\n {\n before(grammarAccess.getActionAccess().getFullStopKeyword_4()); \n match(input,23,FOLLOW_23_in_rule__Action__Group__4__Impl6099); \n after(grammarAccess.getActionAccess().getFullStopKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2421:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* ) )\n // InternalCsv.g:2422:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* )\n {\n // InternalCsv.g:2422:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4__0 )* )\n // InternalCsv.g:2423:2: ( rule__JvmParameterizedTypeReference__Group_1_4__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4()); \n }\n // InternalCsv.g:2424:2: ( rule__JvmParameterizedTypeReference__Group_1_4__0 )*\n loop20:\n do {\n int alt20=2;\n int LA20_0 = input.LA(1);\n\n if ( (LA20_0==33) ) {\n alt20=1;\n }\n\n\n switch (alt20) {\n \tcase 1 :\n \t // InternalCsv.g:2424:3: rule__JvmParameterizedTypeReference__Group_1_4__0\n \t {\n \t pushFollow(FOLLOW_35);\n \t rule__JvmParameterizedTypeReference__Group_1_4__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop20;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8787:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8788:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8788:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8789:1: ','\n {\n before(grammarAccess.getAstFunctionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstFunction__Group_4_1__0__Impl18057); \n after(grammarAccess.getAstFunctionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4905:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4906:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4906:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4907:1: ','\n {\n before(grammarAccess.getAstNetworkAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstNetwork__Group_4_1__0__Impl10404); \n after(grammarAccess.getAstNetworkAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19358:1: ( rule__AstExpressionList__Group__4__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19359:2: rule__AstExpressionList__Group__4__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionList__Group__4__Impl_in_rule__AstExpressionList__Group__438876);\n rule__AstExpressionList__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:991:1: ( ( 'languages' ) )\n // InternalCsv.g:992:1: ( 'languages' )\n {\n // InternalCsv.g:992:1: ( 'languages' )\n // InternalCsv.g:993:2: 'languages'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n match(input,15,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12812:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12814:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_4_1__0__Impl25984); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1364:1: ( rule__Enum__Group__4__Impl rule__Enum__Group__5 )\n // InternalMyDsl.g:1365:2: rule__Enum__Group__4__Impl rule__Enum__Group__5\n {\n pushFollow(FOLLOW_4);\n rule__Enum__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1626:1: ( rule__Language__Group_4__0__Impl rule__Language__Group_4__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1627:2: rule__Language__Group_4__0__Impl rule__Language__Group_4__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0__Impl_in_rule__Language__Group_4__03169);\n rule__Language__Group_4__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1_in_rule__Language__Group_4__03172);\n rule__Language__Group_4__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8463:1: ( ( ( rule__AstFunction__Group_4__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8464:1: ( ( rule__AstFunction__Group_4__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8464:1: ( ( rule__AstFunction__Group_4__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8465:1: ( rule__AstFunction__Group_4__0 )?\n {\n before(grammarAccess.getAstFunctionAccess().getGroup_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8466:1: ( rule__AstFunction__Group_4__0 )?\n int alt71=2;\n int LA71_0 = input.LA(1);\n\n if ( (LA71_0==RULE_ID||(LA71_0>=38 && LA71_0<=45)||LA71_0==58||LA71_0==81||LA71_0==91) ) {\n alt71=1;\n }\n switch (alt71) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8466:2: rule__AstFunction__Group_4__0\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_4__0_in_rule__AstFunction__Group__4__Impl17423);\n rule__AstFunction__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstFunctionAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:244:1: ( rule__Input__Group__4__Impl )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:245:2: rule__Input__Group__4__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__4__Impl_in_rule__Input__Group__4434);\r\n rule__Input__Group__4__Impl();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Empresa__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:594:1: ( rule__Empresa__Group__4__Impl rule__Empresa__Group__5 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:595:2: rule__Empresa__Group__4__Impl rule__Empresa__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__4__Impl_in_rule__Empresa__Group__41158);\n rule__Empresa__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__5_in_rule__Empresa__Group__41161);\n rule__Empresa__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7940:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7941:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7941:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7942:1: ','\n {\n before(grammarAccess.getAstActorAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstActor__Group_4_1__0__Impl16382); \n after(grammarAccess.getAstActorAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2719:1: ( ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* ) )\n // InternalCsv.g:2720:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* )\n {\n // InternalCsv.g:2720:1: ( ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )* )\n // InternalCsv.g:2721:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2_2()); \n }\n // InternalCsv.g:2722:2: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0 )*\n loop22:\n do {\n int alt22=2;\n int LA22_0 = input.LA(1);\n\n if ( (LA22_0==30) ) {\n alt22=1;\n }\n\n\n switch (alt22) {\n \tcase 1 :\n \t // InternalCsv.g:2722:3: rule__JvmParameterizedTypeReference__Group_1_4_2_2__0\n \t {\n \t pushFollow(FOLLOW_30);\n \t rule__JvmParameterizedTypeReference__Group_1_4_2_2__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop22;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmParameterizedTypeReferenceAccess().getGroup_1_4_2_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2734:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl )\n // InternalCsv.g:2735:2: rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Position__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5175:1: ( rule__Position__Group__4__Impl )\r\n // InternalDroneScript.g:5176:2: rule__Position__Group__4__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Position__Group__4__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_4__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12779:1: ( ( ( rule__AstAction__Group_4_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12780:1: ( ( rule__AstAction__Group_4_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12780:1: ( ( rule__AstAction__Group_4_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12781:1: ( rule__AstAction__Group_4_1__0 )*\n {\n before(grammarAccess.getAstActionAccess().getGroup_4_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12782:1: ( rule__AstAction__Group_4_1__0 )*\n loop106:\n do {\n int alt106=2;\n int LA106_0 = input.LA(1);\n\n if ( (LA106_0==62) ) {\n alt106=1;\n }\n\n\n switch (alt106) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12782:2: rule__AstAction__Group_4_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstAction__Group_4_1__0_in_rule__AstAction__Group_4__1__Impl25918);\n \t rule__AstAction__Group_4_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop106;\n }\n } while (true);\n\n after(grammarAccess.getAstActionAccess().getGroup_4_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1676:1: ( rule__Input__Group__4__Impl )\n // InternalBrowser.g:1677:2: rule__Input__Group__4__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1342:1: ( ( ( rule__OpenCSV__CharsetAssignment_4 ) ) )\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n {\n // InternalCsv.g:1343:1: ( ( rule__OpenCSV__CharsetAssignment_4 ) )\n // InternalCsv.g:1344:2: ( rule__OpenCSV__CharsetAssignment_4 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n // InternalCsv.g:1345:2: ( rule__OpenCSV__CharsetAssignment_4 )\n // InternalCsv.g:1345:3: rule__OpenCSV__CharsetAssignment_4\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__CharsetAssignment_4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getCharsetAssignment_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7616:1: ( ( ( rule__AstActor__Group_4__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7617:1: ( ( rule__AstActor__Group_4__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7617:1: ( ( rule__AstActor__Group_4__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7618:1: ( rule__AstActor__Group_4__0 )?\n {\n before(grammarAccess.getAstActorAccess().getGroup_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7619:1: ( rule__AstActor__Group_4__0 )?\n int alt62=2;\n int LA62_0 = input.LA(1);\n\n if ( (LA62_0==RULE_ID||(LA62_0>=38 && LA62_0<=45)||LA62_0==58||LA62_0==81||LA62_0==91) ) {\n alt62=1;\n }\n switch (alt62) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7619:2: rule__AstActor__Group_4__0\n {\n pushFollow(FOLLOW_rule__AstActor__Group_4__0_in_rule__AstActor__Group__4__Impl15746);\n rule__AstActor__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActorAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2599:1: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_0_0__1 )\n // InternalCsv.g:2600:2: rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_0_0__1\n {\n pushFollow(FOLLOW_34);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FunctionDecl__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4838:1: ( rule__FunctionDecl__Group__4__Impl )\r\n // InternalGo.g:4839:2: rule__FunctionDecl__Group__4__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__FunctionDecl__Group__4__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_4_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12831:1: ( rule__AstAction__Group_4_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12832:2: rule__AstAction__Group_4_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_4_1__1__Impl_in_rule__AstAction__Group_4_1__126015);\n rule__AstAction__Group_4_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2572:1: ( rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl )\n // InternalCsv.g:2573:2: rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12768:1: ( rule__AstAction__Group_4__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12769:2: rule__AstAction__Group_4__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_4__1__Impl_in_rule__AstAction__Group_4__125891);\n rule__AstAction__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Term__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9093:1: ( rule__Term__Group__4__Impl rule__Term__Group__5 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9094:2: rule__Term__Group__4__Impl rule__Term__Group__5\n {\n pushFollow(FOLLOW_rule__Term__Group__4__Impl_in_rule__Term__Group__417820);\n rule__Term__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Term__Group__5_in_rule__Term__Group__417823);\n rule__Term__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:255:1: ( ( '.' ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:256:1: ( '.' )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:256:1: ( '.' )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:257:1: '.'\r\n {\r\n before(grammarAccess.getInputAccess().getFullStopKeyword_4()); \r\n match(input,9,FOLLOW_9_in_rule__Input__Group__4__Impl462); \r\n after(grammarAccess.getInputAccess().getFullStopKeyword_4()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2653:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__1 )\n // InternalCsv.g:2654:2: rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1_4_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Affect__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:1113:1: ( ( ( rule__Affect__Group_4__0 )* ) )\n // InternalWh.g:1114:1: ( ( rule__Affect__Group_4__0 )* )\n {\n // InternalWh.g:1114:1: ( ( rule__Affect__Group_4__0 )* )\n // InternalWh.g:1115:2: ( rule__Affect__Group_4__0 )*\n {\n before(grammarAccess.getAffectAccess().getGroup_4()); \n // InternalWh.g:1116:2: ( rule__Affect__Group_4__0 )*\n loop8:\n do {\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==18) ) {\n alt8=1;\n }\n\n\n switch (alt8) {\n \tcase 1 :\n \t // InternalWh.g:1116:3: rule__Affect__Group_4__0\n \t {\n \t pushFollow(FOLLOW_12);\n \t rule__Affect__Group_4__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop8;\n }\n } while (true);\n\n after(grammarAccess.getAffectAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1465:1: ( rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2 )\n // InternalCsv.g:1466:2: rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__PrintCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1893:1: ( rule__Categoria__Group__4__Impl rule__Categoria__Group__5 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1894:2: rule__Categoria__Group__4__Impl rule__Categoria__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__4__Impl_in_rule__Categoria__Group__43715);\n rule__Categoria__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__5_in_rule__Categoria__Group__43718);\n rule__Categoria__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7116:1: ( rule__Constraint__Group__4__Impl rule__Constraint__Group__5 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7117:2: rule__Constraint__Group__4__Impl rule__Constraint__Group__5\n {\n pushFollow(FOLLOW_rule__Constraint__Group__4__Impl_in_rule__Constraint__Group__414347);\n rule__Constraint__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__5_in_rule__Constraint__Group__414350);\n rule__Constraint__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_4_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8806:1: ( rule__AstFunction__Group_4_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8807:2: rule__AstFunction__Group_4_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_4_1__1__Impl_in_rule__AstFunction__Group_4_1__118088);\n rule__AstFunction__Group_4_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_4__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8754:1: ( ( ( rule__AstFunction__Group_4_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8755:1: ( ( rule__AstFunction__Group_4_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8755:1: ( ( rule__AstFunction__Group_4_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8756:1: ( rule__AstFunction__Group_4_1__0 )*\n {\n before(grammarAccess.getAstFunctionAccess().getGroup_4_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8757:1: ( rule__AstFunction__Group_4_1__0 )*\n loop73:\n do {\n int alt73=2;\n int LA73_0 = input.LA(1);\n\n if ( (LA73_0==62) ) {\n alt73=1;\n }\n\n\n switch (alt73) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8757:2: rule__AstFunction__Group_4_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstFunction__Group_4_1__0_in_rule__AstFunction__Group_4__1__Impl17991);\n \t rule__AstFunction__Group_4_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop73;\n }\n } while (true);\n\n after(grammarAccess.getAstFunctionAccess().getGroup_4_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Affect__Group_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:1195:1: ( ( ',' ) )\n // InternalWh.g:1196:1: ( ',' )\n {\n // InternalWh.g:1196:1: ( ',' )\n // InternalWh.g:1197:2: ','\n {\n before(grammarAccess.getAffectAccess().getCommaKeyword_4_0()); \n match(input,18,FOLLOW_2); \n after(grammarAccess.getAffectAccess().getCommaKeyword_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2491:1: ( rule__JvmParameterizedTypeReference__Group_1_4__0__Impl rule__JvmParameterizedTypeReference__Group_1_4__1 )\n // InternalCsv.g:2492:2: rule__JvmParameterizedTypeReference__Group_1_4__0__Impl rule__JvmParameterizedTypeReference__Group_1_4__1\n {\n pushFollow(FOLLOW_5);\n rule__JvmParameterizedTypeReference__Group_1_4__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2626:1: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__1__Impl )\n // InternalCsv.g:2627:2: rule__JvmParameterizedTypeReference__Group_1_4_0_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1657:1: ( rule__Language__Group_4__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1658:2: rule__Language__Group_4__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1__Impl_in_rule__Language__Group_4__13231);\n rule__Language__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Mass__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalPantryTextual.g:601:1: ( rule__Mass__Group__4__Impl )\n // InternalPantryTextual.g:602:2: rule__Mass__Group__4__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Mass__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8743:1: ( rule__AstFunction__Group_4__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8744:2: rule__AstFunction__Group_4__1__Impl\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_4__1__Impl_in_rule__AstFunction__Group_4__117964);\n rule__AstFunction__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_2_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2761:1: ( rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2_2__1 )\n // InternalCsv.g:2762:2: rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl rule__JvmParameterizedTypeReference__Group_1_4_2_2__1\n {\n pushFollow(FOLLOW_32);\n rule__JvmParameterizedTypeReference__Group_1_4_2_2__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_2_2__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__IfStmt__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:7954:1: ( ( ( rule__IfStmt__Group_4__0 )? ) )\r\n // InternalGo.g:7955:1: ( ( rule__IfStmt__Group_4__0 )? )\r\n {\r\n // InternalGo.g:7955:1: ( ( rule__IfStmt__Group_4__0 )? )\r\n // InternalGo.g:7956:2: ( rule__IfStmt__Group_4__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getIfStmtAccess().getGroup_4()); \r\n }\r\n // InternalGo.g:7957:2: ( rule__IfStmt__Group_4__0 )?\r\n int alt77=2;\r\n int LA77_0 = input.LA(1);\r\n\r\n if ( (LA77_0==70) ) {\r\n alt77=1;\r\n }\r\n switch (alt77) {\r\n case 1 :\r\n // InternalGo.g:7957:3: rule__IfStmt__Group_4__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__IfStmt__Group_4__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getIfStmtAccess().getGroup_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Midi__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1094:1: ( rule__Midi__Group__4__Impl )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1095:2: rule__Midi__Group__4__Impl\n {\n pushFollow(FOLLOW_rule__Midi__Group__4__Impl_in_rule__Midi__Group__42347);\n rule__Midi__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:562:1: ( rule__Definition__Group__3__Impl rule__Definition__Group__4 )\n // InternalWh.g:563:2: rule__Definition__Group__3__Impl rule__Definition__Group__4\n {\n pushFollow(FOLLOW_8);\n rule__Definition__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_4__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7907:1: ( ( ( rule__AstActor__Group_4_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7908:1: ( ( rule__AstActor__Group_4_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7908:1: ( ( rule__AstActor__Group_4_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7909:1: ( rule__AstActor__Group_4_1__0 )*\n {\n before(grammarAccess.getAstActorAccess().getGroup_4_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7910:1: ( rule__AstActor__Group_4_1__0 )*\n loop66:\n do {\n int alt66=2;\n int LA66_0 = input.LA(1);\n\n if ( (LA66_0==62) ) {\n alt66=1;\n }\n\n\n switch (alt66) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7910:2: rule__AstActor__Group_4_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstActor__Group_4_1__0_in_rule__AstActor__Group_4__1__Impl16316);\n \t rule__AstActor__Group_4_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop66;\n }\n } while (true);\n\n after(grammarAccess.getAstActorAccess().getGroup_4_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__MethodDecl__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4676:1: ( rule__MethodDecl__Group__4__Impl rule__MethodDecl__Group__5 )\r\n // InternalGo.g:4677:2: rule__MethodDecl__Group__4__Impl rule__MethodDecl__Group__5\r\n {\r\n pushFollow(FOLLOW_11);\r\n rule__MethodDecl__Group__4__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__MethodDecl__Group__5();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Catalogo__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1320:1: ( rule__Catalogo__Group__4__Impl rule__Catalogo__Group__5 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1321:2: rule__Catalogo__Group__4__Impl rule__Catalogo__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__4__Impl_in_rule__Catalogo__Group__42589);\n rule__Catalogo__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__5_in_rule__Catalogo__Group__42592);\n rule__Catalogo__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1214:1: ( ( 'city' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1215:1: ( 'city' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1215:1: ( 'city' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1216:1: 'city'\n {\n before(grammarAccess.getAddress_ImplAccess().getCityKeyword_4()); \n match(input,19,FollowSets000.FOLLOW_19_in_rule__Address_Impl__Group__4__Impl2378); \n after(grammarAccess.getAddress_ImplAccess().getCityKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Conversion__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13544:1: ( ( ( ',' )? ) )\r\n // InternalGo.g:13545:1: ( ( ',' )? )\r\n {\r\n // InternalGo.g:13545:1: ( ( ',' )? )\r\n // InternalGo.g:13546:2: ( ',' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConversionAccess().getCommaKeyword_4()); \r\n }\r\n // InternalGo.g:13547:2: ( ',' )?\r\n int alt107=2;\r\n int LA107_0 = input.LA(1);\r\n\r\n if ( (LA107_0==43) ) {\r\n alt107=1;\r\n }\r\n switch (alt107) {\r\n case 1 :\r\n // InternalGo.g:13547:3: ','\r\n {\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConversionAccess().getCommaKeyword_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Track__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2166:1: ( rule__Track__Group__4__Impl rule__Track__Group__5 )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2167:2: rule__Track__Group__4__Impl rule__Track__Group__5\n {\n pushFollow(FOLLOW_rule__Track__Group__4__Impl_in_rule__Track__Group__44448);\n rule__Track__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Track__Group__5_in_rule__Track__Group__44451);\n rule__Track__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1638:1: ( ( 'language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1640:1: 'language'\n {\n before(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n match(input,15,FollowSets000.FOLLOW_15_in_rule__Language__Group_4__0__Impl3200); \n after(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2915:1: ( rule__Atributo__Group__4__Impl rule__Atributo__Group__5 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2916:2: rule__Atributo__Group__4__Impl rule__Atributo__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__4__Impl_in_rule__Atributo__Group__45717);\n rule__Atributo__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__5_in_rule__Atributo__Group__45720);\n rule__Atributo__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4479:1: ( ( ( rule__AstNetwork__Group_4__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4480:1: ( ( rule__AstNetwork__Group_4__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4480:1: ( ( rule__AstNetwork__Group_4__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4481:1: ( rule__AstNetwork__Group_4__0 )?\n {\n before(grammarAccess.getAstNetworkAccess().getGroup_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4482:1: ( rule__AstNetwork__Group_4__0 )?\n int alt40=2;\n int LA40_0 = input.LA(1);\n\n if ( (LA40_0==RULE_ID||(LA40_0>=38 && LA40_0<=45)||LA40_0==58||LA40_0==81||LA40_0==91) ) {\n alt40=1;\n }\n switch (alt40) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4482:2: rule__AstNetwork__Group_4__0\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_4__0_in_rule__AstNetwork__Group__4__Impl9563);\n rule__AstNetwork__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstNetworkAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstUnit__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3739:1: ( rule__AstUnit__Group__4__Impl rule__AstUnit__Group__5 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3740:2: rule__AstUnit__Group__4__Impl rule__AstUnit__Group__5\n {\n pushFollow(FOLLOW_rule__AstUnit__Group__4__Impl_in_rule__AstUnit__Group__48102);\n rule__AstUnit__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstUnit__Group__5_in_rule__AstUnit__Group__48105);\n rule__AstUnit__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__MethodDecl__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4649:1: ( rule__MethodDecl__Group__3__Impl rule__MethodDecl__Group__4 )\r\n // InternalGo.g:4650:2: rule__MethodDecl__Group__3__Impl rule__MethodDecl__Group__4\r\n {\r\n pushFollow(FOLLOW_9);\r\n rule__MethodDecl__Group__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__MethodDecl__Group__4();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.73173136", "0.7208966", "0.6901119", "0.6875517", "0.68541044", "0.65886563", "0.6512509", "0.6512061", "0.6465471", "0.646337", "0.64351183", "0.6340873", "0.6334642", "0.6327302", "0.6306327", "0.62711143", "0.625939", "0.62504673", "0.6238313", "0.62356055", "0.6210832", "0.62107736", "0.620023", "0.6192605", "0.6192303", "0.61878204", "0.6187305", "0.61840975", "0.6167094", "0.61652744", "0.61636454", "0.6158869", "0.6145884", "0.6138082", "0.6130977", "0.6123849", "0.6111612", "0.61087835", "0.6105757", "0.6103615", "0.60948217", "0.6083114", "0.60805917", "0.60783964", "0.606979", "0.60691833", "0.60554916", "0.6054795", "0.6051476", "0.6049898", "0.6031881", "0.6011184", "0.600871", "0.5991673", "0.59769917", "0.59629357", "0.59601074", "0.5959217", "0.59515214", "0.59493226", "0.59346616", "0.5931994", "0.5922222", "0.5909507", "0.5908165", "0.5908062", "0.59022546", "0.59001416", "0.5898587", "0.58899784", "0.5886116", "0.5882753", "0.58769464", "0.5871172", "0.5867881", "0.58661616", "0.586591", "0.58650553", "0.5864456", "0.5861771", "0.58604926", "0.58566785", "0.5853017", "0.5848703", "0.58480155", "0.58479595", "0.58410305", "0.58397424", "0.58301544", "0.58279973", "0.5825131", "0.5811707", "0.58111644", "0.5804113", "0.580211", "0.5800656", "0.5794946", "0.57939017", "0.57936174", "0.5789671" ]
0.7589953
0
$ANTLR end "rule__Model__Group__4" $ANTLR start "rule__Model__Group__4__Impl" InternalCsv.g:987:1: rule__Model__Group__4__Impl : ( 'languages' ) ;
public final void rule__Model__Group__4__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:991:1: ( ( 'languages' ) ) // InternalCsv.g:992:1: ( 'languages' ) { // InternalCsv.g:992:1: ( 'languages' ) // InternalCsv.g:993:2: 'languages' { if ( state.backtracking==0 ) { before(grammarAccess.getModelAccess().getLanguagesKeyword_4()); } match(input,15,FOLLOW_2); if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getModelAccess().getLanguagesKeyword_4()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__Language__Group_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1638:1: ( ( 'language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1640:1: 'language'\n {\n before(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n match(input,15,FollowSets000.FOLLOW_15_in_rule__Language__Group_4__0__Impl3200); \n after(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) )\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n {\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )*\n loop11:\n do {\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n alt11=1;\n }\n\n\n switch (alt11) {\n \tcase 1 :\n \t // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__Model__LanguagesAssignment_6();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop11;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1413:1: ( ( 'Language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1414:1: ( 'Language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1414:1: ( 'Language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1415:1: 'Language'\n {\n before(grammarAccess.getLanguageAccess().getLanguageKeyword_1()); \n match(input,24,FollowSets000.FOLLOW_24_in_rule__Language__Group__1__Impl2760); \n after(grammarAccess.getLanguageAccess().getLanguageKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleLanguage() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:92:2: ( ( ( rule__Language__Group__0 ) ) )\n // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) )\n {\n // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) )\n // InternalCsv.g:94:3: ( rule__Language__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getGroup()); \n }\n // InternalCsv.g:95:3: ( rule__Language__Group__0 )\n // InternalCsv.g:95:4: rule__Language__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1626:1: ( rule__Language__Group_4__0__Impl rule__Language__Group_4__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1627:2: rule__Language__Group_4__0__Impl rule__Language__Group_4__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0__Impl_in_rule__Language__Group_4__03169);\n rule__Language__Group_4__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1_in_rule__Language__Group_4__03172);\n rule__Language__Group_4__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1657:1: ( rule__Language__Group_4__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1658:2: rule__Language__Group_4__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1__Impl_in_rule__Language__Group_4__13231);\n rule__Language__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1504:1: ( ( ( rule__Language__Group_4__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1506:1: ( rule__Language__Group_4__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_4()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:1: ( rule__Language__Group_4__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==15) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:2: rule__Language__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0_in_rule__Language__Group__4__Impl2944);\n rule__Language__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1463:1: ( rule__Language__Group__3__Impl rule__Language__Group__4 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1464:2: rule__Language__Group__3__Impl rule__Language__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__3__Impl_in_rule__Language__Group__32853);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4_in_rule__Language__Group__32856);\n rule__Language__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1492:1: ( rule__Language__Group__4__Impl rule__Language__Group__5 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1493:2: rule__Language__Group__4__Impl rule__Language__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4__Impl_in_rule__Language__Group__42914);\n rule__Language__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__5_in_rule__Language__Group__42917);\n rule__Language__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleLanguage() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:185:2: ( ( ( rule__Language__Group__0 ) ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:186:1: ( ( rule__Language__Group__0 ) )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:186:1: ( ( rule__Language__Group__0 ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:187:1: ( rule__Language__Group__0 )\n {\n before(grammarAccess.getLanguageAccess().getGroup()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:188:1: ( rule__Language__Group__0 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:188:2: rule__Language__Group__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0_in_ruleLanguage334);\n rule__Language__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RootElementType__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:506:1: ( ( 'language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:507:1: ( 'language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:507:1: ( 'language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:508:1: 'language'\n {\n before(grammarAccess.getRootElementTypeAccess().getLanguageKeyword_6()); \n match(input,15,FollowSets000.FOLLOW_15_in_rule__RootElementType__Group__6__Impl994); \n after(grammarAccess.getRootElementTypeAccess().getLanguageKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1206:1: ( ( ')' ) )\n // InternalCsv.g:1207:1: ( ')' )\n {\n // InternalCsv.g:1207:1: ( ')' )\n // InternalCsv.g:1208:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1141:1: ( rule__Language__Group__1__Impl rule__Language__Group__2 )\n // InternalCsv.g:1142:2: rule__Language__Group__1__Impl rule__Language__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Language__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1594:1: ( rule__Language__Group_3__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1595:2: rule__Language__Group_3__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1__Impl_in_rule__Language__Group_3__13108);\n rule__Language__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1475:1: ( ( ( rule__Language__Group_3__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1477:1: ( rule__Language__Group_3__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_3()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:1: ( rule__Language__Group_3__0 )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==25) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:2: rule__Language__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0_in_rule__Language__Group__3__Impl2883);\n rule__Language__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__LanguagesAssignment_6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3667:1: ( ( ruleLanguage ) )\n // InternalCsv.g:3668:2: ( ruleLanguage )\n {\n // InternalCsv.g:3668:2: ( ruleLanguage )\n // InternalCsv.g:3669:3: ruleLanguage\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesLanguageParserRuleCall_6_0()); \n }\n pushFollow(FOLLOW_2);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesLanguageParserRuleCall_6_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1563:1: ( rule__Language__Group_3__0__Impl rule__Language__Group_3__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1564:2: rule__Language__Group_3__0__Impl rule__Language__Group_3__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0__Impl_in_rule__Language__Group_3__03046);\n rule__Language__Group_3__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1_in_rule__Language__Group_3__03049);\n rule__Language__Group_3__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1153:1: ( ( '(' ) )\n // InternalCsv.g:1154:1: ( '(' )\n {\n // InternalCsv.g:1154:1: ( '(' )\n // InternalCsv.g:1155:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1370:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1371:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0__Impl_in_rule__Language__Group__02668);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1_in_rule__Language__Group__02671);\n rule__Language__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1006:1: ( rule__LanguageTarget__Group__3__Impl )\n // InternalMLRegression.g:1007:2: rule__LanguageTarget__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:937:1: ( ( 'target_language' ) )\n // InternalMLRegression.g:938:1: ( 'target_language' )\n {\n // InternalMLRegression.g:938:1: ( 'target_language' )\n // InternalMLRegression.g:939:2: 'target_language'\n {\n before(grammarAccess.getLanguageTargetAccess().getTarget_languageKeyword_0()); \n match(input,22,FOLLOW_2); \n after(grammarAccess.getLanguageTargetAccess().getTarget_languageKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1382:1: ( ( () ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1383:1: ( () )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1383:1: ( () )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1384:1: ()\n {\n before(grammarAccess.getLanguageAccess().getLanguageAction_0()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1385:1: ()\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1387:1: \n {\n }\n\n after(grammarAccess.getLanguageAccess().getLanguageAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1575:1: ( ( 'value' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1576:1: ( 'value' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1576:1: ( 'value' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1577:1: 'value'\n {\n before(grammarAccess.getLanguageAccess().getValueKeyword_3_0()); \n match(input,25,FollowSets000.FOLLOW_25_in_rule__Language__Group_3__0__Impl3077); \n after(grammarAccess.getLanguageAccess().getValueKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:925:1: ( rule__LanguageTarget__Group__0__Impl rule__LanguageTarget__Group__1 )\n // InternalMLRegression.g:926:2: rule__LanguageTarget__Group__0__Impl rule__LanguageTarget__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__LanguageTarget__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1521:1: ( rule__Language__Group__5__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1522:2: rule__Language__Group__5__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__5__Impl_in_rule__Language__Group__52975);\n rule__Language__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1401:1: ( rule__Language__Group__1__Impl rule__Language__Group__2 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1402:2: rule__Language__Group__1__Impl rule__Language__Group__2\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1__Impl_in_rule__Language__Group__12729);\n rule__Language__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__2_in_rule__Language__Group__12732);\n rule__Language__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1432:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1433:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__2__Impl_in_rule__Language__Group__22791);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__3_in_rule__Language__Group__22794);\n rule__Language__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleLanguageTarget() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:91:2: ( ( ( rule__LanguageTarget__Group__0 ) ) )\n // InternalMLRegression.g:92:2: ( ( rule__LanguageTarget__Group__0 ) )\n {\n // InternalMLRegression.g:92:2: ( ( rule__LanguageTarget__Group__0 ) )\n // InternalMLRegression.g:93:3: ( rule__LanguageTarget__Group__0 )\n {\n before(grammarAccess.getLanguageTargetAccess().getGroup()); \n // InternalMLRegression.g:94:3: ( rule__LanguageTarget__Group__0 )\n // InternalMLRegression.g:94:4: rule__LanguageTarget__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageTargetAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1668:1: ( ( ( rule__Language__LanguageAssignment_4_1 ) ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1669:1: ( ( rule__Language__LanguageAssignment_4_1 ) )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1669:1: ( ( rule__Language__LanguageAssignment_4_1 ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1670:1: ( rule__Language__LanguageAssignment_4_1 )\n {\n before(grammarAccess.getLanguageAccess().getLanguageAssignment_4_1()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1671:1: ( rule__Language__LanguageAssignment_4_1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1671:2: rule__Language__LanguageAssignment_4_1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__LanguageAssignment_4_1_in_rule__Language__Group_4__1__Impl3258);\n rule__Language__LanguageAssignment_4_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageAccess().getLanguageAssignment_4_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1017:1: ( ( ';' ) )\n // InternalMLRegression.g:1018:1: ( ';' )\n {\n // InternalMLRegression.g:1018:1: ( ';' )\n // InternalMLRegression.g:1019:2: ';'\n {\n before(grammarAccess.getLanguageTargetAccess().getSemicolonKeyword_3()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getLanguageTargetAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:952:1: ( rule__LanguageTarget__Group__1__Impl rule__LanguageTarget__Group__2 )\n // InternalMLRegression.g:953:2: rule__LanguageTarget__Group__1__Impl rule__LanguageTarget__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__LanguageTarget__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group_7__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2232:1: ( ( ',' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2234:1: ','\n {\n before(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n match(input,26,FollowSets000.FOLLOW_26_in_rule__Categoria__Group_7__0__Impl4378); \n after(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:606:1: ( ( ( rule__Empresa__Group_4__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:607:1: ( ( rule__Empresa__Group_4__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:607:1: ( ( rule__Empresa__Group_4__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:608:1: ( rule__Empresa__Group_4__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_4()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:609:1: ( rule__Empresa__Group_4__0 )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==19) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:609:2: rule__Empresa__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_4__0_in_rule__Empresa__Group__4__Impl1188);\n rule__Empresa__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Conversion__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13544:1: ( ( ( ',' )? ) )\r\n // InternalGo.g:13545:1: ( ( ',' )? )\r\n {\r\n // InternalGo.g:13545:1: ( ( ',' )? )\r\n // InternalGo.g:13546:2: ( ',' )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getConversionAccess().getCommaKeyword_4()); \r\n }\r\n // InternalGo.g:13547:2: ( ',' )?\r\n int alt107=2;\r\n int LA107_0 = input.LA(1);\r\n\r\n if ( (LA107_0==43) ) {\r\n alt107=1;\r\n }\r\n switch (alt107) {\r\n case 1 :\r\n // InternalGo.g:13547:3: ','\r\n {\r\n match(input,43,FOLLOW_2); if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getConversionAccess().getCommaKeyword_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Categoria__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1905:1: ( ( 'productos' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1906:1: ( 'productos' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1906:1: ( 'productos' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1907:1: 'productos'\n {\n before(grammarAccess.getCategoriaAccess().getProductosKeyword_4()); \n match(input,29,FollowSets000.FOLLOW_29_in_rule__Categoria__Group__4__Impl3746); \n after(grammarAccess.getCategoriaAccess().getProductosKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1332:1: ( ( 'categorias' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1333:1: ( 'categorias' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1333:1: ( 'categorias' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1334:1: 'categorias'\n {\n before(grammarAccess.getCatalogoAccess().getCategoriasKeyword_4()); \n match(input,24,FollowSets000.FOLLOW_24_in_rule__Catalogo__Group__4__Impl2620); \n after(grammarAccess.getCatalogoAccess().getCategoriasKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1337:1: ( rule__Enum__Group__3__Impl rule__Enum__Group__4 )\n // InternalMyDsl.g:1338:2: rule__Enum__Group__3__Impl rule__Enum__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__Enum__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:979:1: ( rule__LanguageTarget__Group__2__Impl rule__LanguageTarget__Group__3 )\n // InternalMLRegression.g:980:2: rule__LanguageTarget__Group__2__Impl rule__LanguageTarget__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__LanguageTarget__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__13() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1607:1: ( rule__Enum__Group__13__Impl )\n // InternalMyDsl.g:1608:2: rule__Enum__Group__13__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group__13__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1532:1: ( ( '}' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1534:1: '}'\n {\n before(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__Language__Group__5__Impl3003); \n after(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public LanguageDao() {\r\n\t\tsuper(Language.class);\r\n\t}", "public final void rule__Language__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1126:1: ( ( ( rule__Language__NameAssignment_0 ) ) )\n // InternalCsv.g:1127:1: ( ( rule__Language__NameAssignment_0 ) )\n {\n // InternalCsv.g:1127:1: ( ( rule__Language__NameAssignment_0 ) )\n // InternalCsv.g:1128:2: ( rule__Language__NameAssignment_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getNameAssignment_0()); \n }\n // InternalCsv.g:1129:2: ( rule__Language__NameAssignment_0 )\n // InternalCsv.g:1129:3: rule__Language__NameAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__Language__NameAssignment_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getNameAssignment_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9865:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9866:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9866:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9867:1: ','\n {\n before(grammarAccess.getAstProcedureAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstProcedure__Group_4_1__0__Impl20181); \n after(grammarAccess.getAstProcedureAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8787:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8788:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8788:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8789:1: ','\n {\n before(grammarAccess.getAstFunctionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstFunction__Group_4_1__0__Impl18057); \n after(grammarAccess.getAstFunctionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:883:1: ( ( ( rule__Model__LanguageTargetAssignment_0 )? ) )\n // InternalMLRegression.g:884:1: ( ( rule__Model__LanguageTargetAssignment_0 )? )\n {\n // InternalMLRegression.g:884:1: ( ( rule__Model__LanguageTargetAssignment_0 )? )\n // InternalMLRegression.g:885:2: ( rule__Model__LanguageTargetAssignment_0 )?\n {\n before(grammarAccess.getModelAccess().getLanguageTargetAssignment_0()); \n // InternalMLRegression.g:886:2: ( rule__Model__LanguageTargetAssignment_0 )?\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==22) ) {\n alt8=1;\n }\n switch (alt8) {\n case 1 :\n // InternalMLRegression.g:886:3: rule__Model__LanguageTargetAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__Model__LanguageTargetAssignment_0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getModelAccess().getLanguageTargetAssignment_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1893:1: ( rule__Categoria__Group__4__Impl rule__Categoria__Group__5 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1894:2: rule__Categoria__Group__4__Impl rule__Categoria__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__4__Impl_in_rule__Categoria__Group__43715);\n rule__Categoria__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__5_in_rule__Categoria__Group__43718);\n rule__Categoria__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4905:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4906:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4906:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4907:1: ','\n {\n before(grammarAccess.getAstNetworkAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstNetwork__Group_4_1__0__Impl10404); \n after(grammarAccess.getAstNetworkAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Midi__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1105:1: ( ( '}' ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1106:1: ( '}' )\n {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1106:1: ( '}' )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1107:1: '}'\n {\n before(grammarAccess.getMidiAccess().getRightCurlyBracketKeyword_4()); \n match(input,36,FOLLOW_36_in_rule__Midi__Group__4__Impl2375); \n after(grammarAccess.getMidiAccess().getRightCurlyBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14509:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14511:1: ','\n {\n before(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstInputPattern__Group_3__0__Impl29333); \n after(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1646:1: ( ( ',' ) )\n // InternalMyDsl.g:1647:1: ( ',' )\n {\n // InternalMyDsl.g:1647:1: ( ',' )\n // InternalMyDsl.g:1648:2: ','\n {\n before(grammarAccess.getEnumAccess().getCommaKeyword_6_0()); \n match(input,26,FOLLOW_2); \n after(grammarAccess.getEnumAccess().getCommaKeyword_6_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_2_3_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20886:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20887:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20887:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20888:1: ','\n {\n before(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_3_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstType__Group_0_1_2_3_1__0__Impl41884); \n after(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_3_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:960:1: ( ( 'email' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:961:1: ( 'email' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:961:1: ( 'email' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:962:1: 'email'\n {\n before(grammarAccess.getEmpresaAccess().getEmailKeyword_4_0()); \n match(input,19,FollowSets000.FOLLOW_19_in_rule__Empresa__Group_4__0__Impl1882); \n after(grammarAccess.getEmpresaAccess().getEmailKeyword_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Midi__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1094:1: ( rule__Midi__Group__4__Impl )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1095:2: rule__Midi__Group__4__Impl\n {\n pushFollow(FOLLOW_rule__Midi__Group__4__Impl_in_rule__Midi__Group__42347);\n rule__Midi__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7940:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7941:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7941:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7942:1: ','\n {\n before(grammarAccess.getAstActorAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstActor__Group_4_1__0__Impl16382); \n after(grammarAccess.getAstActorAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void entryRuleLanguage() throws RecognitionException {\n try {\n // InternalCsv.g:80:1: ( ruleLanguage EOF )\n // InternalCsv.g:81:1: ruleLanguage EOF\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageRule()); \n }\n pushFollow(FOLLOW_1);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageRule()); \n }\n match(input,EOF,FOLLOW_2); if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n }\n return ;\n }", "public final void rule__Language__LanguageAssignment_4_1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1964:1: ( ( ruleLanguage0 ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1965:1: ( ruleLanguage0 )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1965:1: ( ruleLanguage0 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1966:1: ruleLanguage0\n {\n before(grammarAccess.getLanguageAccess().getLanguageLanguage0ParserRuleCall_4_1_0()); \n pushFollow(FollowSets000.FOLLOW_ruleLanguage0_in_rule__Language__LanguageAssignment_4_13852);\n ruleLanguage0();\n\n state._fsp--;\n\n after(grammarAccess.getLanguageAccess().getLanguageLanguage0ParserRuleCall_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:595:1: ( ( '}' ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:597:1: '}'\n {\n before(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Activity__Group__4__Impl1187); \n after(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12812:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12814:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_4_1__0__Impl25984); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1364:1: ( rule__Enum__Group__4__Impl rule__Enum__Group__5 )\n // InternalMyDsl.g:1365:2: rule__Enum__Group__4__Impl rule__Enum__Group__5\n {\n pushFollow(FOLLOW_4);\n rule__Enum__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1086:1: ( ( 'descripcion' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1087:1: ( 'descripcion' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1087:1: ( 'descripcion' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1088:1: 'descripcion'\n {\n before(grammarAccess.getEmpresaAccess().getDescripcionKeyword_6_0()); \n match(input,21,FollowSets000.FOLLOW_21_in_rule__Empresa__Group_6__0__Impl2128); \n after(grammarAccess.getEmpresaAccess().getDescripcionKeyword_6_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2169:1: ( ( 'nombre' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2170:1: ( 'nombre' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2170:1: ( 'nombre' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2171:1: 'nombre'\n {\n before(grammarAccess.getCategoriaAccess().getNombreKeyword_3_0()); \n match(input,17,FollowSets000.FOLLOW_17_in_rule__Categoria__Group_3__0__Impl4255); \n after(grammarAccess.getCategoriaAccess().getNombreKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1214:1: ( ( 'city' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1215:1: ( 'city' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1215:1: ( 'city' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1216:1: 'city'\n {\n before(grammarAccess.getAddress_ImplAccess().getCityKeyword_4()); \n match(input,19,FollowSets000.FOLLOW_19_in_rule__Address_Impl__Group__4__Impl2378); \n after(grammarAccess.getAddress_ImplAccess().getCityKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14887:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14889:1: ','\n {\n before(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstOutputPattern__Group_3__0__Impl30078); \n after(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1274:1: ( ( 'country' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1275:1: ( 'country' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1275:1: ( 'country' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1276:1: 'country'\n {\n before(grammarAccess.getAddress_ImplAccess().getCountryKeyword_6()); \n match(input,20,FollowSets000.FOLLOW_20_in_rule__Address_Impl__Group__6__Impl2500); \n after(grammarAccess.getAddress_ImplAccess().getCountryKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:979:1: ( rule__Empresa__Group_4__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:980:2: rule__Empresa__Group_4__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_4__1__Impl_in_rule__Empresa__Group_4__11913);\n rule__Empresa__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setLanguages(List<String> languages) {\n this.languages = languages;\n }", "public Language() {\r\n\t}", "public final void rule__Categoria__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1864:1: ( rule__Categoria__Group__3__Impl rule__Categoria__Group__4 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1865:2: rule__Categoria__Group__3__Impl rule__Categoria__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__3__Impl_in_rule__Categoria__Group__33654);\n rule__Categoria__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__4_in_rule__Categoria__Group__33657);\n rule__Categoria__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:948:1: ( rule__Empresa__Group_4__0__Impl rule__Empresa__Group_4__1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:949:2: rule__Empresa__Group_4__0__Impl rule__Empresa__Group_4__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_4__0__Impl_in_rule__Empresa__Group_4__01851);\n rule__Empresa__Group_4__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_4__1_in_rule__Empresa__Group_4__01854);\n rule__Empresa__Group_4__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1876:1: ( ( ( rule__Categoria__Group_3__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1877:1: ( ( rule__Categoria__Group_3__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1877:1: ( ( rule__Categoria__Group_3__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1878:1: ( rule__Categoria__Group_3__0 )?\n {\n before(grammarAccess.getCategoriaAccess().getGroup_3()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1879:1: ( rule__Categoria__Group_3__0 )?\n int alt13=2;\n int LA13_0 = input.LA(1);\n\n if ( (LA13_0==17) ) {\n alt13=1;\n }\n switch (alt13) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1879:2: rule__Categoria__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group_3__0_in_rule__Categoria__Group__3__Impl3684);\n rule__Categoria__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getCategoriaAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setLanguage(String language);", "public final void rule__Affect__Group_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:1195:1: ( ( ',' ) )\n // InternalWh.g:1196:1: ( ',' )\n {\n // InternalWh.g:1196:1: ( ',' )\n // InternalWh.g:1197:2: ','\n {\n before(grammarAccess.getAffectAccess().getCommaKeyword_4_0()); \n match(input,18,FOLLOW_2); \n after(grammarAccess.getAffectAccess().getCommaKeyword_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:594:1: ( rule__Empresa__Group__4__Impl rule__Empresa__Group__5 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:595:2: rule__Empresa__Group__4__Impl rule__Empresa__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__4__Impl_in_rule__Empresa__Group__41158);\n rule__Empresa__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__5_in_rule__Empresa__Group__41161);\n rule__Empresa__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public void setLanguages(String languages) {\n this.languages = languages;\n }", "public final void rule__Categoria__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1785:1: ( ( 'Categoria' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1786:1: ( 'Categoria' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1786:1: ( 'Categoria' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1787:1: 'Categoria'\n {\n before(grammarAccess.getCategoriaAccess().getCategoriaKeyword_0()); \n match(input,28,FollowSets000.FOLLOW_28_in_rule__Categoria__Group__0__Impl3500); \n after(grammarAccess.getCategoriaAccess().getCategoriaKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:664:1: ( ( ( rule__Empresa__Group_6__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:666:1: ( rule__Empresa__Group_6__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_6()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:1: ( rule__Empresa__Group_6__0 )?\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==21) ) {\n alt6=1;\n }\n switch (alt6) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:2: rule__Empresa__Group_6__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__0_in_rule__Empresa__Group__6__Impl1310);\n rule__Empresa__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2025:1: ( ( '}' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2026:1: ( '}' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2026:1: ( '}' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2027:1: '}'\n {\n before(grammarAccess.getCategoriaAccess().getRightCurlyBracketKeyword_8()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Categoria__Group__8__Impl3991); \n after(grammarAccess.getCategoriaAccess().getRightCurlyBracketKeyword_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionList__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19358:1: ( rule__AstExpressionList__Group__4__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19359:2: rule__AstExpressionList__Group__4__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionList__Group__4__Impl_in_rule__AstExpressionList__Group__438876);\n rule__AstExpressionList__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public Language(String lang) {\n this.lang = lang;\n /*\n lexerFactory = new LexerFactory();\n generatorFactory = new GeneratorFactory();\n parserFactory = new ParserFactory();\n */\n }", "public final void rule__Empresa__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:565:1: ( rule__Empresa__Group__3__Impl rule__Empresa__Group__4 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:566:2: rule__Empresa__Group__3__Impl rule__Empresa__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__3__Impl_in_rule__Empresa__Group__31097);\n rule__Empresa__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__4_in_rule__Empresa__Group__31100);\n rule__Empresa__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2188:1: ( rule__Categoria__Group_3__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2189:2: rule__Categoria__Group_3__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group_3__1__Impl_in_rule__Categoria__Group_3__14286);\n rule__Categoria__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:991:1: ( ( ( rule__LanguageTarget__LanguageAssignment_2 ) ) )\n // InternalMLRegression.g:992:1: ( ( rule__LanguageTarget__LanguageAssignment_2 ) )\n {\n // InternalMLRegression.g:992:1: ( ( rule__LanguageTarget__LanguageAssignment_2 ) )\n // InternalMLRegression.g:993:2: ( rule__LanguageTarget__LanguageAssignment_2 )\n {\n before(grammarAccess.getLanguageTargetAccess().getLanguageAssignment_2()); \n // InternalMLRegression.g:994:2: ( rule__LanguageTarget__LanguageAssignment_2 )\n // InternalMLRegression.g:994:3: rule__LanguageTarget__LanguageAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__LanguageAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageTargetAccess().getLanguageAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstType__Group_0_1_2_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20762:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20763:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20763:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:20764:1: ','\n {\n before(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_1_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstType__Group_0_1_2_1_1__0__Impl41639); \n after(grammarAccess.getAstTypeAccess().getCommaKeyword_0_1_2_1_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:930:1: ( ( ',' ) )\n // InternalWh.g:931:1: ( ',' )\n {\n // InternalWh.g:931:1: ( ',' )\n // InternalWh.g:932:2: ','\n {\n before(grammarAccess.getOutputAccess().getCommaKeyword_0_1()); \n match(input,21,FOLLOW_2); \n after(grammarAccess.getOutputAccess().getCommaKeyword_0_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:577:1: ( ( ( rule__Empresa__Group_3__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:578:1: ( ( rule__Empresa__Group_3__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:578:1: ( ( rule__Empresa__Group_3__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:579:1: ( rule__Empresa__Group_3__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_3()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:580:1: ( rule__Empresa__Group_3__0 )?\n int alt3=2;\n int LA3_0 = input.LA(1);\n\n if ( (LA3_0==18) ) {\n alt3=1;\n }\n switch (alt3) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:580:2: rule__Empresa__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_3__0_in_rule__Empresa__Group__3__Impl1127);\n rule__Empresa__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.73660153", "0.6594269", "0.65703005", "0.6566274", "0.65356195", "0.6518267", "0.64938533", "0.6415702", "0.6410974", "0.63471675", "0.6324489", "0.62670135", "0.6170403", "0.6132474", "0.6092388", "0.6085364", "0.603288", "0.60141027", "0.6003808", "0.59876245", "0.5967716", "0.5960252", "0.59392005", "0.59248394", "0.59001136", "0.5834282", "0.56801206", "0.56489205", "0.56440634", "0.55700725", "0.5568286", "0.5557329", "0.5514828", "0.55072725", "0.546006", "0.54345363", "0.54184204", "0.5403529", "0.53860474", "0.53730476", "0.53211856", "0.53179836", "0.5317618", "0.5314371", "0.53065807", "0.5292706", "0.52865726", "0.52801955", "0.52768695", "0.52621824", "0.52556753", "0.5253969", "0.5191538", "0.51843774", "0.5176524", "0.51614624", "0.51388323", "0.5132597", "0.51316005", "0.51295334", "0.51284105", "0.5127773", "0.512402", "0.51191497", "0.51118976", "0.50967944", "0.50955766", "0.50881344", "0.507909", "0.507743", "0.5067779", "0.50661045", "0.5065309", "0.50257474", "0.50218487", "0.50134826", "0.50021136", "0.4994497", "0.49930742", "0.49853158", "0.49846137", "0.49738267", "0.4963962", "0.49616745", "0.49578574", "0.49566746", "0.49550006", "0.4942636", "0.49409553", "0.49393812", "0.4934789", "0.4927527", "0.4920255", "0.49113032", "0.49083897", "0.49066025", "0.49053973", "0.49045", "0.4903929", "0.48969856" ]
0.8020717
0
$ANTLR end "rule__Model__Group__4__Impl" $ANTLR start "rule__Model__Group__5" InternalCsv.g:1002:1: rule__Model__Group__5 : rule__Model__Group__5__Impl rule__Model__Group__6 ;
public final void rule__Model__Group__5() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 ) // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6 { pushFollow(FOLLOW_9); rule__Model__Group__5__Impl(); state._fsp--; if (state.failed) return ; pushFollow(FOLLOW_2); rule__Model__Group__6(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:616:1: ( rule__Definition__Group__5__Impl rule__Definition__Group__6 )\n // InternalWh.g:617:2: rule__Definition__Group__5__Impl rule__Definition__Group__6\n {\n pushFollow(FOLLOW_7);\n rule__Definition__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1391:1: ( rule__Enum__Group__5__Impl rule__Enum__Group__6 )\n // InternalMyDsl.g:1392:2: rule__Enum__Group__5__Impl rule__Enum__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__Enum__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Schema__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:621:1: ( rule__Schema__Group__5__Impl )\n // InternalMyDsl.g:622:2: rule__Schema__Group__5__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Schema__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1233:1: ( rule__Address_Impl__Group__5__Impl rule__Address_Impl__Group__6 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1234:2: rule__Address_Impl__Group__5__Impl rule__Address_Impl__Group__6\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__5__Impl_in_rule__Address_Impl__Group__52409);\n rule__Address_Impl__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__6_in_rule__Address_Impl__Group__52412);\n rule__Address_Impl__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:951:1: ( rule__BTable__Group__5__Impl rule__BTable__Group__6 )\n // InternalBSQL2Java.g:952:2: rule__BTable__Group__5__Impl rule__BTable__Group__6\n {\n pushFollow(FOLLOW_15);\n rule__BTable__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:635:1: ( ( ( rule__Empresa__Group_5__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:636:1: ( ( rule__Empresa__Group_5__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:636:1: ( ( rule__Empresa__Group_5__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:637:1: ( rule__Empresa__Group_5__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_5()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:638:1: ( rule__Empresa__Group_5__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==20) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:638:2: rule__Empresa__Group_5__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_5__0_in_rule__Empresa__Group__5__Impl1249);\n rule__Empresa__Group_5__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1521:1: ( rule__Language__Group__5__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1522:2: rule__Language__Group__5__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__5__Impl_in_rule__Language__Group__52975);\n rule__Language__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:623:1: ( rule__Empresa__Group__5__Impl rule__Empresa__Group__6 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:624:2: rule__Empresa__Group__5__Impl rule__Empresa__Group__6\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__5__Impl_in_rule__Empresa__Group__51219);\n rule__Empresa__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__6_in_rule__Empresa__Group__51222);\n rule__Empresa__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstStatementIf__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16616:1: ( ( 'end' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16617:1: ( 'end' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16617:1: ( 'end' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16618:1: 'end'\n {\n before(grammarAccess.getAstStatementIfAccess().getEndKeyword_5()); \n match(input,52,FOLLOW_52_in_rule__AstStatementIf__Group__5__Impl33492); \n after(grammarAccess.getAstStatementIfAccess().getEndKeyword_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1369:1: ( ( 'header' ) )\n // InternalCsv.g:1370:1: ( 'header' )\n {\n // InternalCsv.g:1370:1: ( 'header' )\n // InternalCsv.g:1371:2: 'header'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n match(input,21,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getHeaderKeyword_5()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14772:1: ( rule__AstOutputPattern__Group__5__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14773:2: rule__AstOutputPattern__Group__5__Impl\n {\n pushFollow(FOLLOW_rule__AstOutputPattern__Group__5__Impl_in_rule__AstOutputPattern__Group__529854);\n rule__AstOutputPattern__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1364:1: ( rule__Enum__Group__4__Impl rule__Enum__Group__5 )\n // InternalMyDsl.g:1365:2: rule__Enum__Group__4__Impl rule__Enum__Group__5\n {\n pushFollow(FOLLOW_4);\n rule__Enum__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7147:1: ( rule__Constraint__Group__5__Impl rule__Constraint__Group__6 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7148:2: rule__Constraint__Group__5__Impl rule__Constraint__Group__6\n {\n pushFollow(FOLLOW_rule__Constraint__Group__5__Impl_in_rule__Constraint__Group__514409);\n rule__Constraint__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__6_in_rule__Constraint__Group__514412);\n rule__Constraint__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:963:1: ( ( ( rule__BTable__Group_5__0 )* ) )\n // InternalBSQL2Java.g:964:1: ( ( rule__BTable__Group_5__0 )* )\n {\n // InternalBSQL2Java.g:964:1: ( ( rule__BTable__Group_5__0 )* )\n // InternalBSQL2Java.g:965:2: ( rule__BTable__Group_5__0 )*\n {\n before(grammarAccess.getBTableAccess().getGroup_5()); \n // InternalBSQL2Java.g:966:2: ( rule__BTable__Group_5__0 )*\n loop4:\n do {\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==24) ) {\n alt4=1;\n }\n\n\n switch (alt4) {\n \tcase 1 :\n \t // InternalBSQL2Java.g:966:3: rule__BTable__Group_5__0\n \t {\n \t pushFollow(FOLLOW_16);\n \t rule__BTable__Group_5__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop4;\n }\n } while (true);\n\n after(grammarAccess.getBTableAccess().getGroup_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstUnit__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3768:1: ( rule__AstUnit__Group__5__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3769:2: rule__AstUnit__Group__5__Impl\n {\n pushFollow(FOLLOW_rule__AstUnit__Group__5__Impl_in_rule__AstUnit__Group__58163);\n rule__AstUnit__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) )\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n {\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )*\n loop11:\n do {\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n alt11=1;\n }\n\n\n switch (alt11) {\n \tcase 1 :\n \t // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__Model__LanguagesAssignment_6();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop11;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group_5__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1032:1: ( rule__BTable__Group_5__1__Impl )\n // InternalBSQL2Java.g:1033:2: rule__BTable__Group_5__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group_5__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1351:1: ( rule__Catalogo__Group__5__Impl rule__Catalogo__Group__6 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1352:2: rule__Catalogo__Group__5__Impl rule__Catalogo__Group__6\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__5__Impl_in_rule__Catalogo__Group__52651);\n rule__Catalogo__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__6_in_rule__Catalogo__Group__52654);\n rule__Catalogo__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__MethodDecl__Group__5() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4703:1: ( rule__MethodDecl__Group__5__Impl )\r\n // InternalGo.g:4704:2: rule__MethodDecl__Group__5__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__MethodDecl__Group__5__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Term__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9124:1: ( rule__Term__Group__5__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9125:2: rule__Term__Group__5__Impl\n {\n pushFollow(FOLLOW_rule__Term__Group__5__Impl_in_rule__Term__Group__517882);\n rule__Term__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1492:1: ( rule__Language__Group__4__Impl rule__Language__Group__5 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1493:2: rule__Language__Group__4__Impl rule__Language__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4__Impl_in_rule__Language__Group__42914);\n rule__Language__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__5_in_rule__Language__Group__42917);\n rule__Language__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Schema__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:594:1: ( rule__Schema__Group__4__Impl rule__Schema__Group__5 )\n // InternalMyDsl.g:595:2: rule__Schema__Group__4__Impl rule__Schema__Group__5\n {\n pushFollow(FOLLOW_6);\n rule__Schema__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Schema__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstSchedule__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:11968:1: ( rule__AstSchedule__Group__5__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:11969:2: rule__AstSchedule__Group__5__Impl\n {\n pushFollow(FOLLOW_rule__AstSchedule__Group__5__Impl_in_rule__AstSchedule__Group__524319);\n rule__AstSchedule__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNamespace__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3959:1: ( rule__AstNamespace__Group__5__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3960:2: rule__AstNamespace__Group__5__Impl\n {\n pushFollow(FOLLOW_rule__AstNamespace__Group__5__Impl_in_rule__AstNamespace__Group__58540);\n rule__AstNamespace__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ForClause__Group__5() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:11912:1: ( rule__ForClause__Group__5__Impl )\r\n // InternalGo.g:11913:2: rule__ForClause__Group__5__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__ForClause__Group__5__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__BTable__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:924:1: ( rule__BTable__Group__4__Impl rule__BTable__Group__5 )\n // InternalBSQL2Java.g:925:2: rule__BTable__Group__4__Impl rule__BTable__Group__5\n {\n pushFollow(FOLLOW_15);\n rule__BTable__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19167:1: ( rule__AstExpressionIf__Group__5__Impl rule__AstExpressionIf__Group__6 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19168:2: rule__AstExpressionIf__Group__5__Impl rule__AstExpressionIf__Group__6\n {\n pushFollow(FOLLOW_rule__AstExpressionIf__Group__5__Impl_in_rule__AstExpressionIf__Group__538499);\n rule__AstExpressionIf__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstExpressionIf__Group__6_in_rule__AstExpressionIf__Group__538502);\n rule__AstExpressionIf__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group_5__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14969:1: ( rule__AstOutputPattern__Group_5__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14970:2: rule__AstOutputPattern__Group_5__1__Impl\n {\n pushFollow(FOLLOW_rule__AstOutputPattern__Group_5__1__Impl_in_rule__AstOutputPattern__Group_5__130232);\n rule__AstOutputPattern__Group_5__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2197:1: ( rule__Track__Group__5__Impl rule__Track__Group__6 )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2198:2: rule__Track__Group__5__Impl rule__Track__Group__6\n {\n pushFollow(FOLLOW_rule__Track__Group__5__Impl_in_rule__Track__Group__54510);\n rule__Track__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Track__Group__6_in_rule__Track__Group__54513);\n rule__Track__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1202:1: ( rule__Address_Impl__Group__4__Impl rule__Address_Impl__Group__5 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1203:2: rule__Address_Impl__Group__4__Impl rule__Address_Impl__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__4__Impl_in_rule__Address_Impl__Group__42347);\n rule__Address_Impl__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__5_in_rule__Address_Impl__Group__42350);\n rule__Address_Impl__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:589:1: ( rule__Definition__Group__4__Impl rule__Definition__Group__5 )\n // InternalWh.g:590:2: rule__Definition__Group__4__Impl rule__Definition__Group__5\n {\n pushFollow(FOLLOW_10);\n rule__Definition__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1924:1: ( rule__Categoria__Group__5__Impl rule__Categoria__Group__6 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1925:2: rule__Categoria__Group__5__Impl rule__Categoria__Group__6\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__5__Impl_in_rule__Categoria__Group__53777);\n rule__Categoria__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__6_in_rule__Categoria__Group__53780);\n rule__Categoria__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19207:1: ( ( 'end' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19209:1: 'end'\n {\n before(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n match(input,52,FOLLOW_52_in_rule__AstExpressionIf__Group__6__Impl38587); \n after(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14783:1: ( ( ( rule__AstOutputPattern__Group_5__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14784:1: ( ( rule__AstOutputPattern__Group_5__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14784:1: ( ( rule__AstOutputPattern__Group_5__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14785:1: ( rule__AstOutputPattern__Group_5__0 )?\n {\n before(grammarAccess.getAstOutputPatternAccess().getGroup_5()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14786:1: ( rule__AstOutputPattern__Group_5__0 )?\n int alt126=2;\n int LA126_0 = input.LA(1);\n\n if ( (LA126_0==83) ) {\n alt126=1;\n }\n switch (alt126) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14786:2: rule__AstOutputPattern__Group_5__0\n {\n pushFollow(FOLLOW_rule__AstOutputPattern__Group_5__0_in_rule__AstOutputPattern__Group__5__Impl29881);\n rule__AstOutputPattern__Group_5__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstOutputPatternAccess().getGroup_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstStatementIf__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16605:1: ( rule__AstStatementIf__Group__5__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16606:2: rule__AstStatementIf__Group__5__Impl\n {\n pushFollow(FOLLOW_rule__AstStatementIf__Group__5__Impl_in_rule__AstStatementIf__Group__533464);\n rule__AstStatementIf__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstUnit__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3779:1: ( ( 'end' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3780:1: ( 'end' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3780:1: ( 'end' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3781:1: 'end'\n {\n before(grammarAccess.getAstUnitAccess().getEndKeyword_5()); \n match(input,52,FOLLOW_52_in_rule__AstUnit__Group__5__Impl8191); \n after(grammarAccess.getAstUnitAccess().getEndKeyword_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1504:1: ( ( ( rule__Language__Group_4__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1506:1: ( rule__Language__Group_4__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_4()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:1: ( rule__Language__Group_4__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==15) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:2: rule__Language__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0_in_rule__Language__Group__4__Impl2944);\n rule__Language__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12477:1: ( rule__AstAction__Group__5__Impl rule__AstAction__Group__6 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12478:2: rule__AstAction__Group__5__Impl rule__AstAction__Group__6\n {\n pushFollow(FOLLOW_rule__AstAction__Group__5__Impl_in_rule__AstAction__Group__525321);\n rule__AstAction__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group__6_in_rule__AstAction__Group__525324);\n rule__AstAction__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12520:1: ( ( ( rule__AstAction__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12522:1: ( rule__AstAction__Group_6__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:1: ( rule__AstAction__Group_6__0 )?\n int alt102=2;\n int LA102_0 = input.LA(1);\n\n if ( (LA102_0==RULE_ID||LA102_0==81) ) {\n alt102=1;\n }\n switch (alt102) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:2: rule__AstAction__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__0_in_rule__AstAction__Group__6__Impl25413);\n rule__AstAction__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14394:1: ( rule__AstInputPattern__Group__5__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14395:2: rule__AstInputPattern__Group__5__Impl\n {\n pushFollow(FOLLOW_rule__AstInputPattern__Group__5__Impl_in_rule__AstInputPattern__Group__529109);\n rule__AstInputPattern__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group_5__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1017:1: ( ( ',' ) )\n // InternalBSQL2Java.g:1018:1: ( ',' )\n {\n // InternalBSQL2Java.g:1018:1: ( ',' )\n // InternalBSQL2Java.g:1019:2: ','\n {\n before(grammarAccess.getBTableAccess().getCommaKeyword_5_0()); \n match(input,24,FOLLOW_2); \n after(grammarAccess.getBTableAccess().getCommaKeyword_5_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNamespace__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3970:1: ( ( 'end' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3971:1: ( 'end' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3971:1: ( 'end' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3972:1: 'end'\n {\n before(grammarAccess.getAstNamespaceAccess().getEndKeyword_5()); \n match(input,52,FOLLOW_52_in_rule__AstNamespace__Group__5__Impl8568); \n after(grammarAccess.getAstNamespaceAccess().getEndKeyword_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Term__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9135:1: ( ( ';' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9136:1: ( ';' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9136:1: ( ';' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:9137:1: ';'\n {\n before(grammarAccess.getTermAccess().getSemicolonKeyword_5()); \n match(input,44,FOLLOW_44_in_rule__Term__Group__5__Impl17910); \n after(grammarAccess.getTermAccess().getSemicolonKeyword_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BSQLMachine__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:620:1: ( rule__BSQLMachine__Group__5__Impl rule__BSQLMachine__Group__6 )\n // InternalBSQL2Java.g:621:2: rule__BSQLMachine__Group__5__Impl rule__BSQLMachine__Group__6\n {\n pushFollow(FOLLOW_6);\n rule__BSQLMachine__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BSQLMachine__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1320:1: ( rule__Catalogo__Group__4__Impl rule__Catalogo__Group__5 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1321:2: rule__Catalogo__Group__4__Impl rule__Catalogo__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__4__Impl_in_rule__Catalogo__Group__42589);\n rule__Catalogo__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__5_in_rule__Catalogo__Group__42592);\n rule__Catalogo__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:978:1: ( rule__BTable__Group__6__Impl )\n // InternalBSQL2Java.g:979:2: rule__BTable__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14405:1: ( ( ( rule__AstInputPattern__Group_5__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14406:1: ( ( rule__AstInputPattern__Group_5__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14406:1: ( ( rule__AstInputPattern__Group_5__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14407:1: ( rule__AstInputPattern__Group_5__0 )?\n {\n before(grammarAccess.getAstInputPatternAccess().getGroup_5()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14408:1: ( rule__AstInputPattern__Group_5__0 )?\n int alt123=2;\n int LA123_0 = input.LA(1);\n\n if ( (LA123_0==83) ) {\n alt123=1;\n }\n switch (alt123) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14408:2: rule__AstInputPattern__Group_5__0\n {\n pushFollow(FOLLOW_rule__AstInputPattern__Group_5__0_in_rule__AstInputPattern__Group__5__Impl29136);\n rule__AstInputPattern__Group_5__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstInputPatternAccess().getGroup_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_5__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1011:1: ( rule__Empresa__Group_5__0__Impl rule__Empresa__Group_5__1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1012:2: rule__Empresa__Group_5__0__Impl rule__Empresa__Group_5__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_5__0__Impl_in_rule__Empresa__Group_5__01974);\n rule__Empresa__Group_5__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_5__1_in_rule__Empresa__Group_5__01977);\n rule__Empresa__Group_5__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2944:1: ( rule__Atributo__Group__5__Impl rule__Atributo__Group__6 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2945:2: rule__Atributo__Group__5__Impl rule__Atributo__Group__6\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__5__Impl_in_rule__Atributo__Group__55778);\n rule__Atributo__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__6_in_rule__Atributo__Group__55781);\n rule__Atributo__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:664:1: ( ( ( rule__Empresa__Group_6__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:666:1: ( rule__Empresa__Group_6__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_6()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:1: ( rule__Empresa__Group_6__0 )?\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==21) ) {\n alt6=1;\n }\n switch (alt6) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:2: rule__Empresa__Group_6__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__0_in_rule__Empresa__Group__6__Impl1310);\n rule__Empresa__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group_5__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1005:1: ( rule__BTable__Group_5__0__Impl rule__BTable__Group_5__1 )\n // InternalBSQL2Java.g:1006:2: rule__BTable__Group_5__0__Impl rule__BTable__Group_5__1\n {\n pushFollow(FOLLOW_3);\n rule__BTable__Group_5__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BTable__Group_5__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Conversion__Group__5() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:13559:1: ( rule__Conversion__Group__5__Impl )\r\n // InternalGo.g:13560:2: rule__Conversion__Group__5__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Conversion__Group__5__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__MLRegression__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1168:1: ( rule__MLRegression__Group__5__Impl )\n // InternalMLRegression.g:1169:2: rule__MLRegression__Group__5__Impl\n {\n pushFollow(FOLLOW_2);\n rule__MLRegression__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7322:1: ( rule__XIfExpression__Group__5__Impl rule__XIfExpression__Group__6 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7323:2: rule__XIfExpression__Group__5__Impl rule__XIfExpression__Group__6\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group__5__Impl_in_rule__XIfExpression__Group__514870);\n rule__XIfExpression__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XIfExpression__Group__6_in_rule__XIfExpression__Group__514873);\n rule__XIfExpression__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8480:1: ( rule__AstFunction__Group__5__Impl rule__AstFunction__Group__6 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8481:2: rule__AstFunction__Group__5__Impl rule__AstFunction__Group__6\n {\n pushFollow(FOLLOW_rule__AstFunction__Group__5__Impl_in_rule__AstFunction__Group__517454);\n rule__AstFunction__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstFunction__Group__6_in_rule__AstFunction__Group__517457);\n rule__AstFunction__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1418:1: ( rule__Enum__Group__6__Impl rule__Enum__Group__7 )\n // InternalMyDsl.g:1419:2: rule__Enum__Group__6__Impl rule__Enum__Group__7\n {\n pushFollow(FOLLOW_18);\n rule__Enum__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7633:1: ( rule__AstActor__Group__5__Impl rule__AstActor__Group__6 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7634:2: rule__AstActor__Group__5__Impl rule__AstActor__Group__6\n {\n pushFollow(FOLLOW_rule__AstActor__Group__5__Impl_in_rule__AstActor__Group__515777);\n rule__AstActor__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstActor__Group__6_in_rule__AstActor__Group__515780);\n rule__AstActor__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12460:1: ( ( ( rule__AstAction__Group_4__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12461:1: ( ( rule__AstAction__Group_4__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12461:1: ( ( rule__AstAction__Group_4__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12462:1: ( rule__AstAction__Group_4__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12463:1: ( rule__AstAction__Group_4__0 )?\n int alt101=2;\n int LA101_0 = input.LA(1);\n\n if ( (LA101_0==RULE_ID||LA101_0==81) ) {\n alt101=1;\n }\n switch (alt101) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12463:2: rule__AstAction__Group_4__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_4__0_in_rule__AstAction__Group__4__Impl25290);\n rule__AstAction__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1430:1: ( ( ( rule__Enum__Group_6__0 )* ) )\n // InternalMyDsl.g:1431:1: ( ( rule__Enum__Group_6__0 )* )\n {\n // InternalMyDsl.g:1431:1: ( ( rule__Enum__Group_6__0 )* )\n // InternalMyDsl.g:1432:2: ( rule__Enum__Group_6__0 )*\n {\n before(grammarAccess.getEnumAccess().getGroup_6()); \n // InternalMyDsl.g:1433:2: ( rule__Enum__Group_6__0 )*\n loop8:\n do {\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==26) ) {\n alt8=1;\n }\n\n\n switch (alt8) {\n \tcase 1 :\n \t // InternalMyDsl.g:1433:3: rule__Enum__Group_6__0\n \t {\n \t pushFollow(FOLLOW_19);\n \t rule__Enum__Group_6__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop8;\n }\n } while (true);\n\n after(grammarAccess.getEnumAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1532:1: ( ( '}' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1534:1: '}'\n {\n before(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__Language__Group__5__Impl3003); \n after(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionPostfix__Group_5__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:18729:1: ( rule__AstExpressionPostfix__Group_5__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:18730:2: rule__AstExpressionPostfix__Group_5__2__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionPostfix__Group_5__2__Impl_in_rule__AstExpressionPostfix__Group_5__237633);\n rule__AstExpressionPostfix__Group_5__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1634:1: ( rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1 )\n // InternalMyDsl.g:1635:2: rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1\n {\n pushFollow(FOLLOW_4);\n rule__Enum__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_5__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1023:1: ( ( 'telefono' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1024:1: ( 'telefono' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1024:1: ( 'telefono' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1025:1: 'telefono'\n {\n before(grammarAccess.getEmpresaAccess().getTelefonoKeyword_5_0()); \n match(input,20,FollowSets000.FOLLOW_20_in_rule__Empresa__Group_5__0__Impl2005); \n after(grammarAccess.getEmpresaAccess().getTelefonoKeyword_5_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7116:1: ( rule__Constraint__Group__4__Impl rule__Constraint__Group__5 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7117:2: rule__Constraint__Group__4__Impl rule__Constraint__Group__5\n {\n pushFollow(FOLLOW_rule__Constraint__Group__4__Impl_in_rule__Constraint__Group__414347);\n rule__Constraint__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__5_in_rule__Constraint__Group__414350);\n rule__Constraint__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstInputPattern__Group_5__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14591:1: ( rule__AstInputPattern__Group_5__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14592:2: rule__AstInputPattern__Group_5__1__Impl\n {\n pushFollow(FOLLOW_rule__AstInputPattern__Group_5__1__Impl_in_rule__AstInputPattern__Group_5__129487);\n rule__AstInputPattern__Group_5__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:67:2: ( ( ( rule__Model__Group__0 ) ) )\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n {\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n // InternalCsv.g:69:3: ( rule__Model__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getGroup()); \n }\n // InternalCsv.g:70:3: ( rule__Model__Group__0 )\n // InternalCsv.g:70:4: rule__Model__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19136:1: ( rule__AstExpressionIf__Group__4__Impl rule__AstExpressionIf__Group__5 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19137:2: rule__AstExpressionIf__Group__4__Impl rule__AstExpressionIf__Group__5\n {\n pushFollow(FOLLOW_rule__AstExpressionIf__Group__4__Impl_in_rule__AstExpressionIf__Group__438437);\n rule__AstExpressionIf__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstExpressionIf__Group__5_in_rule__AstExpressionIf__Group__438440);\n rule__AstExpressionIf__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Konto__Group__5() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3763:1: ( rule__Konto__Group__5__Impl rule__Konto__Group__6 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3764:2: rule__Konto__Group__5__Impl rule__Konto__Group__6\r\n {\r\n pushFollow(FOLLOW_rule__Konto__Group__5__Impl_in_rule__Konto__Group__58274);\r\n rule__Konto__Group__5__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Konto__Group__6_in_rule__Konto__Group__58277);\r\n rule__Konto__Group__6();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Empresa__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:594:1: ( rule__Empresa__Group__4__Impl rule__Empresa__Group__5 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:595:2: rule__Empresa__Group__4__Impl rule__Empresa__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__4__Impl_in_rule__Empresa__Group__41158);\n rule__Empresa__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__5_in_rule__Empresa__Group__41161);\n rule__Empresa__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:643:1: ( rule__Definition__Group__6__Impl )\n // InternalWh.g:644:2: rule__Definition__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12448:1: ( rule__AstAction__Group__4__Impl rule__AstAction__Group__5 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12449:2: rule__AstAction__Group__4__Impl rule__AstAction__Group__5\n {\n pushFollow(FOLLOW_rule__AstAction__Group__4__Impl_in_rule__AstAction__Group__425260);\n rule__AstAction__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group__5_in_rule__AstAction__Group__425263);\n rule__AstAction__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Joint__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4983:1: ( rule__Joint__Group__5__Impl rule__Joint__Group__6 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4984:2: rule__Joint__Group__5__Impl rule__Joint__Group__6\n {\n pushFollow(FOLLOW_rule__Joint__Group__5__Impl_in_rule__Joint__Group__510166);\n rule__Joint__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Joint__Group__6_in_rule__Joint__Group__510169);\n rule__Joint__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstOutputPattern__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14741:1: ( rule__AstOutputPattern__Group__4__Impl rule__AstOutputPattern__Group__5 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14742:2: rule__AstOutputPattern__Group__4__Impl rule__AstOutputPattern__Group__5\n {\n pushFollow(FOLLOW_rule__AstOutputPattern__Group__4__Impl_in_rule__AstOutputPattern__Group__429792);\n rule__AstOutputPattern__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstOutputPattern__Group__5_in_rule__AstOutputPattern__Group__429795);\n rule__AstOutputPattern__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:73:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:75:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:1: ( rule__Model__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel94);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4905:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4906:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4906:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4907:1: ','\n {\n before(grammarAccess.getAstNetworkAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstNetwork__Group_4_1__0__Impl10404); \n after(grammarAccess.getAstNetworkAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__MethodDecl__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:4676:1: ( rule__MethodDecl__Group__4__Impl rule__MethodDecl__Group__5 )\r\n // InternalGo.g:4677:2: rule__MethodDecl__Group__4__Impl rule__MethodDecl__Group__5\r\n {\r\n pushFollow(FOLLOW_11);\r\n rule__MethodDecl__Group__4__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__MethodDecl__Group__5();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstTypeDefinition__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6845:1: ( rule__AstTypeDefinition__Group__5__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6846:2: rule__AstTypeDefinition__Group__5__Impl\n {\n pushFollow(FOLLOW_rule__AstTypeDefinition__Group__5__Impl_in_rule__AstTypeDefinition__Group__514227);\n rule__AstTypeDefinition__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.7297713", "0.72386366", "0.7163035", "0.6940467", "0.6736827", "0.6453298", "0.6343469", "0.62761736", "0.62425107", "0.6184856", "0.61834157", "0.6182093", "0.61785614", "0.61767495", "0.6147012", "0.6140469", "0.6108022", "0.61046535", "0.60858124", "0.6069579", "0.6064999", "0.606168", "0.605584", "0.6017359", "0.60144657", "0.6013624", "0.6013604", "0.5996138", "0.59834075", "0.59745806", "0.597201", "0.59712094", "0.59680176", "0.59675795", "0.5967558", "0.5965162", "0.5953136", "0.59360653", "0.5934414", "0.5917789", "0.5910648", "0.5910558", "0.5898551", "0.5895953", "0.5894289", "0.5892999", "0.58820385", "0.58713424", "0.5870216", "0.5861075", "0.5851764", "0.5850377", "0.58417815", "0.58276486", "0.58267456", "0.5809888", "0.5807215", "0.5800189", "0.57965183", "0.57951736", "0.57925373", "0.5791687", "0.5786946", "0.578242", "0.5780417", "0.5773513", "0.5768715", "0.57652116", "0.57529765", "0.5742258", "0.57413286", "0.5739992", "0.57398784", "0.5739453", "0.57360214", "0.5729769", "0.5723553", "0.5709841", "0.5707039", "0.5704869", "0.5703445", "0.5694173", "0.56825656", "0.5680973", "0.56783223", "0.56732136", "0.5672528", "0.5667614", "0.5667345", "0.56631315", "0.5662287", "0.5661041", "0.5653004", "0.56515014", "0.56513685", "0.56483823", "0.5647565", "0.5642567", "0.56425464", "0.56413984" ]
0.7766752
0
$ANTLR end "rule__Model__Group__5__Impl" $ANTLR start "rule__Model__Group__6" InternalCsv.g:1029:1: rule__Model__Group__6 : rule__Model__Group__6__Impl rule__Model__Group__7 ;
public final void rule__Model__Group__6() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 ) // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7 { pushFollow(FOLLOW_9); rule__Model__Group__6__Impl(); state._fsp--; if (state.failed) return ; pushFollow(FOLLOW_2); rule__Model__Group__7(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) )\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n {\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )*\n loop11:\n do {\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n alt11=1;\n }\n\n\n switch (alt11) {\n \tcase 1 :\n \t // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__Model__LanguagesAssignment_6();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop11;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:643:1: ( rule__Definition__Group__6__Impl )\n // InternalWh.g:644:2: rule__Definition__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1418:1: ( rule__Enum__Group__6__Impl rule__Enum__Group__7 )\n // InternalMyDsl.g:1419:2: rule__Enum__Group__6__Impl rule__Enum__Group__7\n {\n pushFollow(FOLLOW_18);\n rule__Enum__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:664:1: ( ( ( rule__Empresa__Group_6__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:666:1: ( rule__Empresa__Group_6__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_6()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:1: ( rule__Empresa__Group_6__0 )?\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==21) ) {\n alt6=1;\n }\n switch (alt6) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:2: rule__Empresa__Group_6__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__0_in_rule__Empresa__Group__6__Impl1310);\n rule__Empresa__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1430:1: ( ( ( rule__Enum__Group_6__0 )* ) )\n // InternalMyDsl.g:1431:1: ( ( rule__Enum__Group_6__0 )* )\n {\n // InternalMyDsl.g:1431:1: ( ( rule__Enum__Group_6__0 )* )\n // InternalMyDsl.g:1432:2: ( rule__Enum__Group_6__0 )*\n {\n before(grammarAccess.getEnumAccess().getGroup_6()); \n // InternalMyDsl.g:1433:2: ( rule__Enum__Group_6__0 )*\n loop8:\n do {\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==26) ) {\n alt8=1;\n }\n\n\n switch (alt8) {\n \tcase 1 :\n \t // InternalMyDsl.g:1433:3: rule__Enum__Group_6__0\n \t {\n \t pushFollow(FOLLOW_19);\n \t rule__Enum__Group_6__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop8;\n }\n } while (true);\n\n after(grammarAccess.getEnumAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12520:1: ( ( ( rule__AstAction__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12522:1: ( rule__AstAction__Group_6__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:1: ( rule__AstAction__Group_6__0 )?\n int alt102=2;\n int LA102_0 = input.LA(1);\n\n if ( (LA102_0==RULE_ID||LA102_0==81) ) {\n alt102=1;\n }\n switch (alt102) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:2: rule__AstAction__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__0_in_rule__AstAction__Group__6__Impl25413);\n rule__AstAction__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1634:1: ( rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1 )\n // InternalMyDsl.g:1635:2: rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1\n {\n pushFollow(FOLLOW_4);\n rule__Enum__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:978:1: ( rule__BTable__Group__6__Impl )\n // InternalBSQL2Java.g:979:2: rule__BTable__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1661:1: ( rule__Enum__Group_6__1__Impl )\n // InternalMyDsl.g:1662:2: rule__Enum__Group_6__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19207:1: ( ( 'end' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19209:1: 'end'\n {\n before(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n match(input,52,FOLLOW_52_in_rule__AstExpressionIf__Group__6__Impl38587); \n after(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19196:1: ( rule__AstExpressionIf__Group__6__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19197:2: rule__AstExpressionIf__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionIf__Group__6__Impl_in_rule__AstExpressionIf__Group__638559);\n rule__AstExpressionIf__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:616:1: ( rule__Definition__Group__5__Impl rule__Definition__Group__6 )\n // InternalWh.g:617:2: rule__Definition__Group__5__Impl rule__Definition__Group__6\n {\n pushFollow(FOLLOW_7);\n rule__Definition__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1262:1: ( rule__Address_Impl__Group__6__Impl rule__Address_Impl__Group__7 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1263:2: rule__Address_Impl__Group__6__Impl rule__Address_Impl__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__6__Impl_in_rule__Address_Impl__Group__62469);\n rule__Address_Impl__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__7_in_rule__Address_Impl__Group__62472);\n rule__Address_Impl__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2226:1: ( rule__Track__Group__6__Impl )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2227:2: rule__Track__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__Track__Group__6__Impl_in_rule__Track__Group__64570);\n rule__Track__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7676:1: ( ( ( rule__AstActor__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7677:1: ( ( rule__AstActor__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7677:1: ( ( rule__AstActor__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7678:1: ( rule__AstActor__Group_6__0 )?\n {\n before(grammarAccess.getAstActorAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7679:1: ( rule__AstActor__Group_6__0 )?\n int alt63=2;\n int LA63_0 = input.LA(1);\n\n if ( (LA63_0==RULE_ID||(LA63_0>=38 && LA63_0<=45)||LA63_0==58||LA63_0==81||LA63_0==91) ) {\n alt63=1;\n }\n switch (alt63) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7679:2: rule__AstActor__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstActor__Group_6__0_in_rule__AstActor__Group__6__Impl15869);\n rule__AstActor__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActorAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12892:1: ( rule__AstAction__Group_6__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12893:2: rule__AstAction__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__1__Impl_in_rule__AstAction__Group_6__126136);\n rule__AstAction__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12903:1: ( ( ( rule__AstAction__Group_6_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12904:1: ( ( rule__AstAction__Group_6_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12904:1: ( ( rule__AstAction__Group_6_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12905:1: ( rule__AstAction__Group_6_1__0 )*\n {\n before(grammarAccess.getAstActionAccess().getGroup_6_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12906:1: ( rule__AstAction__Group_6_1__0 )*\n loop107:\n do {\n int alt107=2;\n int LA107_0 = input.LA(1);\n\n if ( (LA107_0==62) ) {\n alt107=1;\n }\n\n\n switch (alt107) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12906:2: rule__AstAction__Group_6_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstAction__Group_6_1__0_in_rule__AstAction__Group_6__1__Impl26163);\n \t rule__AstAction__Group_6_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop107;\n }\n } while (true);\n\n after(grammarAccess.getAstActionAccess().getGroup_6_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:652:1: ( rule__Empresa__Group__6__Impl rule__Empresa__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:653:2: rule__Empresa__Group__6__Impl rule__Empresa__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__6__Impl_in_rule__Empresa__Group__61280);\n rule__Empresa__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__7_in_rule__Empresa__Group__61283);\n rule__Empresa__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5029:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5030:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5030:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5031:1: ','\n {\n before(grammarAccess.getAstNetworkAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstNetwork__Group_6_1__0__Impl10649); \n after(grammarAccess.getAstNetworkAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12955:1: ( rule__AstAction__Group_6_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12956:2: rule__AstAction__Group_6_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6_1__1__Impl_in_rule__AstAction__Group_6_1__126260);\n rule__AstAction__Group_6_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8064:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8065:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8065:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8066:1: ','\n {\n before(grammarAccess.getAstActorAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstActor__Group_6_1__0__Impl16627); \n after(grammarAccess.getAstActorAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_6__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8031:1: ( ( ( rule__AstActor__Group_6_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8032:1: ( ( rule__AstActor__Group_6_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8032:1: ( ( rule__AstActor__Group_6_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8033:1: ( rule__AstActor__Group_6_1__0 )*\n {\n before(grammarAccess.getAstActorAccess().getGroup_6_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8034:1: ( rule__AstActor__Group_6_1__0 )*\n loop67:\n do {\n int alt67=2;\n int LA67_0 = input.LA(1);\n\n if ( (LA67_0==62) ) {\n alt67=1;\n }\n\n\n switch (alt67) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8034:2: rule__AstActor__Group_6_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstActor__Group_6_1__0_in_rule__AstActor__Group_6__1__Impl16561);\n \t rule__AstActor__Group_6_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop67;\n }\n } while (true);\n\n after(grammarAccess.getAstActorAccess().getGroup_6_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1955:1: ( rule__Categoria__Group__6__Impl rule__Categoria__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1956:2: rule__Categoria__Group__6__Impl rule__Categoria__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__6__Impl_in_rule__Categoria__Group__63839);\n rule__Categoria__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__7_in_rule__Categoria__Group__63842);\n rule__Categoria__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12936:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12938:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_6_1__0__Impl26229); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7351:1: ( rule__XIfExpression__Group__6__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7352:2: rule__XIfExpression__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group__6__Impl_in_rule__XIfExpression__Group__614930);\n rule__XIfExpression__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7664:1: ( rule__AstActor__Group__6__Impl rule__AstActor__Group__7 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7665:2: rule__AstActor__Group__6__Impl rule__AstActor__Group__7\n {\n pushFollow(FOLLOW_rule__AstActor__Group__6__Impl_in_rule__AstActor__Group__615839);\n rule__AstActor__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstActor__Group__7_in_rule__AstActor__Group__615842);\n rule__AstActor__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1074:1: ( rule__Empresa__Group_6__0__Impl rule__Empresa__Group_6__1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1075:2: rule__Empresa__Group_6__0__Impl rule__Empresa__Group_6__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__0__Impl_in_rule__Empresa__Group_6__02097);\n rule__Empresa__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__1_in_rule__Empresa__Group_6__02100);\n rule__Empresa__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstStatementForeach__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15748:1: ( rule__AstStatementForeach__Group__6__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:15749:2: rule__AstStatementForeach__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__AstStatementForeach__Group__6__Impl_in_rule__AstStatementForeach__Group__631781);\n rule__AstStatementForeach__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActorDeclaration__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5574:1: ( rule__AstActorDeclaration__Group__6__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5575:2: rule__AstActorDeclaration__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__AstActorDeclaration__Group__6__Impl_in_rule__AstActorDeclaration__Group__611726);\n rule__AstActorDeclaration__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7176:1: ( rule__Constraint__Group__6__Impl rule__Constraint__Group__7 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7177:2: rule__Constraint__Group__6__Impl rule__Constraint__Group__7\n {\n pushFollow(FOLLOW_rule__Constraint__Group__6__Impl_in_rule__Constraint__Group__614469);\n rule__Constraint__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__7_in_rule__Constraint__Group__614472);\n rule__Constraint__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8020:1: ( rule__AstActor__Group_6__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8021:2: rule__AstActor__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__AstActor__Group_6__1__Impl_in_rule__AstActor__Group_6__116534);\n rule__AstActor__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12508:1: ( rule__AstAction__Group__6__Impl rule__AstAction__Group__7 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12509:2: rule__AstAction__Group__6__Impl rule__AstAction__Group__7\n {\n pushFollow(FOLLOW_rule__AstAction__Group__6__Impl_in_rule__AstAction__Group__625383);\n rule__AstAction__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group__7_in_rule__AstAction__Group__625386);\n rule__AstAction__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4539:1: ( ( ( rule__AstNetwork__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4540:1: ( ( rule__AstNetwork__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4540:1: ( ( rule__AstNetwork__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4541:1: ( rule__AstNetwork__Group_6__0 )?\n {\n before(grammarAccess.getAstNetworkAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4542:1: ( rule__AstNetwork__Group_6__0 )?\n int alt41=2;\n int LA41_0 = input.LA(1);\n\n if ( (LA41_0==RULE_ID||(LA41_0>=38 && LA41_0<=45)||LA41_0==58||LA41_0==81||LA41_0==91) ) {\n alt41=1;\n }\n switch (alt41) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4542:2: rule__AstNetwork__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_6__0_in_rule__AstNetwork__Group__6__Impl9686);\n rule__AstNetwork__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstNetworkAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3268:1: ( rule__Atributo__Group_6__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3269:2: rule__Atributo__Group_6__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group_6__1__Impl_in_rule__Atributo__Group_6__16406);\n rule__Atributo__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1382:1: ( rule__Catalogo__Group__6__Impl rule__Catalogo__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1383:2: rule__Catalogo__Group__6__Impl rule__Catalogo__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__6__Impl_in_rule__Catalogo__Group__62713);\n rule__Catalogo__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__7_in_rule__Catalogo__Group__62716);\n rule__Catalogo__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12863:1: ( rule__AstAction__Group_6__0__Impl rule__AstAction__Group_6__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12864:2: rule__AstAction__Group_6__0__Impl rule__AstAction__Group_6__1\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__0__Impl_in_rule__AstAction__Group_6__026076);\n rule__AstAction__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group_6__1_in_rule__AstAction__Group_6__026079);\n rule__AstAction__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10343:1: ( ( ( rule__XIfExpression__Group_6__0 )? ) )\r\n // InternalDroneScript.g:10344:1: ( ( rule__XIfExpression__Group_6__0 )? )\r\n {\r\n // InternalDroneScript.g:10344:1: ( ( rule__XIfExpression__Group_6__0 )? )\r\n // InternalDroneScript.g:10345:2: ( rule__XIfExpression__Group_6__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXIfExpressionAccess().getGroup_6()); \r\n }\r\n // InternalDroneScript.g:10346:2: ( rule__XIfExpression__Group_6__0 )?\r\n int alt83=2;\r\n int LA83_0 = input.LA(1);\r\n\r\n if ( (LA83_0==78) ) {\r\n int LA83_1 = input.LA(2);\r\n\r\n if ( (synpred132_InternalDroneScript()) ) {\r\n alt83=1;\r\n }\r\n }\r\n switch (alt83) {\r\n case 1 :\r\n // InternalDroneScript.g:10346:3: rule__XIfExpression__Group_6__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group_6__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXIfExpressionAccess().getGroup_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1105:1: ( rule__Empresa__Group_6__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1106:2: rule__Empresa__Group_6__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__1__Impl_in_rule__Empresa__Group_6__12159);\n rule__Empresa__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1391:1: ( rule__Enum__Group__5__Impl rule__Enum__Group__6 )\n // InternalMyDsl.g:1392:2: rule__Enum__Group__5__Impl rule__Enum__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__Enum__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7991:1: ( rule__AstActor__Group_6__0__Impl rule__AstActor__Group_6__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7992:2: rule__AstActor__Group_6__0__Impl rule__AstActor__Group_6__1\n {\n pushFollow(FOLLOW_rule__AstActor__Group_6__0__Impl_in_rule__AstActor__Group_6__016474);\n rule__AstActor__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstActor__Group_6__1_in_rule__AstActor__Group_6__016477);\n rule__AstActor__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10332:1: ( rule__XIfExpression__Group__6__Impl )\r\n // InternalDroneScript.g:10333:2: rule__XIfExpression__Group__6__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Atributo__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2973:1: ( rule__Atributo__Group__6__Impl rule__Atributo__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2974:2: rule__Atributo__Group__6__Impl rule__Atributo__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__6__Impl_in_rule__Atributo__Group__65839);\n rule__Atributo__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__7_in_rule__Atributo__Group__65842);\n rule__Atributo__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10829:1: ( rule__XIfExpression__Group__6__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10830:2: rule__XIfExpression__Group__6__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XIfExpression__Group__6__Impl_in_rule__XIfExpression__Group__622163);\r\n rule__XIfExpression__Group__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9665:1: ( ( ( rule__AstProcedure__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9666:1: ( ( rule__AstProcedure__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9666:1: ( ( rule__AstProcedure__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9667:1: ( rule__AstProcedure__Group_6__0 )?\n {\n before(grammarAccess.getAstProcedureAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9668:1: ( rule__AstProcedure__Group_6__0 )?\n int alt80=2;\n int LA80_0 = input.LA(1);\n\n if ( (LA80_0==63) ) {\n alt80=1;\n }\n switch (alt80) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9668:2: rule__AstProcedure__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstProcedure__Group_6__0_in_rule__AstProcedure__Group__6__Impl19795);\n rule__AstProcedure__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstProcedureAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4985:1: ( rule__AstNetwork__Group_6__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4986:2: rule__AstNetwork__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_6__1__Impl_in_rule__AstNetwork__Group_6__110556);\n rule__AstNetwork__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1646:1: ( ( ',' ) )\n // InternalMyDsl.g:1647:1: ( ',' )\n {\n // InternalMyDsl.g:1647:1: ( ',' )\n // InternalMyDsl.g:1648:2: ','\n {\n before(grammarAccess.getEnumAccess().getCommaKeyword_6_0()); \n match(input,26,FOLLOW_2); \n after(grammarAccess.getEnumAccess().getCommaKeyword_6_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7424:1: ( rule__XIfExpression__Group_6__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7425:2: rule__XIfExpression__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1__Impl_in_rule__XIfExpression__Group_6__115066);\n rule__XIfExpression__Group_6__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2237:1: ( ( '}' ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2238:1: ( '}' )\n {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2238:1: ( '}' )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2239:1: '}'\n {\n before(grammarAccess.getTrackAccess().getRightCurlyBracketKeyword_6()); \n match(input,36,FOLLOW_36_in_rule__Track__Group__6__Impl4598); \n after(grammarAccess.getTrackAccess().getRightCurlyBracketKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8511:1: ( rule__AstFunction__Group__6__Impl rule__AstFunction__Group__7 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8512:2: rule__AstFunction__Group__6__Impl rule__AstFunction__Group__7\n {\n pushFollow(FOLLOW_rule__AstFunction__Group__6__Impl_in_rule__AstFunction__Group__617516);\n rule__AstFunction__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstFunction__Group__7_in_rule__AstFunction__Group__617519);\n rule__AstFunction__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7393:1: ( rule__XIfExpression__Group_6__0__Impl rule__XIfExpression__Group_6__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7394:2: rule__XIfExpression__Group_6__0__Impl rule__XIfExpression__Group_6__1\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__0__Impl_in_rule__XIfExpression__Group_6__015002);\n rule__XIfExpression__Group_6__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1_in_rule__XIfExpression__Group_6__015005);\n rule__XIfExpression__Group_6__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_6_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5048:1: ( rule__AstNetwork__Group_6_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5049:2: rule__AstNetwork__Group_6_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_6_1__1__Impl_in_rule__AstNetwork__Group_6_1__110680);\n rule__AstNetwork__Group_6_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7362:1: ( ( ( rule__XIfExpression__Group_6__0 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7363:1: ( ( rule__XIfExpression__Group_6__0 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7363:1: ( ( rule__XIfExpression__Group_6__0 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7364:1: ( rule__XIfExpression__Group_6__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXIfExpressionAccess().getGroup_6()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7365:1: ( rule__XIfExpression__Group_6__0 )?\n int alt48=2;\n int LA48_0 = input.LA(1);\n\n if ( (LA48_0==46) ) {\n int LA48_1 = input.LA(2);\n\n if ( (synpred69_InternalInstances()) ) {\n alt48=1;\n }\n }\n switch (alt48) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7365:2: rule__XIfExpression__Group_6__0\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__0_in_rule__XIfExpression__Group__6__Impl14957);\n rule__XIfExpression__Group_6__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXIfExpressionAccess().getGroup_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12924:1: ( rule__AstAction__Group_6_1__0__Impl rule__AstAction__Group_6_1__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12925:2: rule__AstAction__Group_6_1__0__Impl rule__AstAction__Group_6_1__1\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6_1__0__Impl_in_rule__AstAction__Group_6_1__026198);\n rule__AstAction__Group_6_1__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group_6_1__1_in_rule__AstAction__Group_6_1__026201);\n rule__AstAction__Group_6_1__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Konto__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3794:1: ( rule__Konto__Group__6__Impl rule__Konto__Group__7 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3795:2: rule__Konto__Group__6__Impl rule__Konto__Group__7\r\n {\r\n pushFollow(FOLLOW_rule__Konto__Group__6__Impl_in_rule__Konto__Group__68336);\r\n rule__Konto__Group__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Konto__Group__7_in_rule__Konto__Group__68339);\r\n rule__Konto__Group__7();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstActor__Group_6_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8083:1: ( rule__AstActor__Group_6_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8084:2: rule__AstActor__Group_6_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstActor__Group_6_1__1__Impl_in_rule__AstActor__Group_6_1__116658);\n rule__AstActor__Group_6_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1465:1: ( rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2 )\n // InternalCsv.g:1466:2: rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__PrintCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:654:1: ( ( ( rule__Definition__OutputAssignment_6 ) ) )\n // InternalWh.g:655:1: ( ( rule__Definition__OutputAssignment_6 ) )\n {\n // InternalWh.g:655:1: ( ( rule__Definition__OutputAssignment_6 ) )\n // InternalWh.g:656:2: ( rule__Definition__OutputAssignment_6 )\n {\n before(grammarAccess.getDefinitionAccess().getOutputAssignment_6()); \n // InternalWh.g:657:2: ( rule__Definition__OutputAssignment_6 )\n // InternalWh.g:657:3: rule__Definition__OutputAssignment_6\n {\n pushFollow(FOLLOW_2);\n rule__Definition__OutputAssignment_6();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getOutputAssignment_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10386:1: ( rule__XIfExpression__Group_6__1__Impl )\r\n // InternalDroneScript.g:10387:2: rule__XIfExpression__Group_6__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group_6__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstNetwork__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4527:1: ( rule__AstNetwork__Group__6__Impl rule__AstNetwork__Group__7 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4528:2: rule__AstNetwork__Group__6__Impl rule__AstNetwork__Group__7\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group__6__Impl_in_rule__AstNetwork__Group__69656);\n rule__AstNetwork__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstNetwork__Group__7_in_rule__AstNetwork__Group__69659);\n rule__AstNetwork__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_6__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4996:1: ( ( ( rule__AstNetwork__Group_6_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4997:1: ( ( rule__AstNetwork__Group_6_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4997:1: ( ( rule__AstNetwork__Group_6_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4998:1: ( rule__AstNetwork__Group_6_1__0 )*\n {\n before(grammarAccess.getAstNetworkAccess().getGroup_6_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4999:1: ( rule__AstNetwork__Group_6_1__0 )*\n loop46:\n do {\n int alt46=2;\n int LA46_0 = input.LA(1);\n\n if ( (LA46_0==62) ) {\n alt46=1;\n }\n\n\n switch (alt46) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4999:2: rule__AstNetwork__Group_6_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstNetwork__Group_6_1__0_in_rule__AstNetwork__Group_6__1__Impl10583);\n \t rule__AstNetwork__Group_6_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop46;\n }\n } while (true);\n\n after(grammarAccess.getAstNetworkAccess().getGroup_6_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1504:1: ( ( ( rule__Language__Group_4__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1506:1: ( rule__Language__Group_4__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_4()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:1: ( rule__Language__Group_4__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==15) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:2: rule__Language__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0_in_rule__Language__Group__4__Impl2944);\n rule__Language__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2985:1: ( ( ( rule__Atributo__Group_6__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2986:1: ( ( rule__Atributo__Group_6__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2986:1: ( ( rule__Atributo__Group_6__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2987:1: ( rule__Atributo__Group_6__0 )?\n {\n before(grammarAccess.getAtributoAccess().getGroup_6()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2988:1: ( rule__Atributo__Group_6__0 )?\n int alt21=2;\n int LA21_0 = input.LA(1);\n\n if ( (LA21_0==38) ) {\n alt21=1;\n }\n switch (alt21) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2988:2: rule__Atributo__Group_6__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group_6__0_in_rule__Atributo__Group__6__Impl5869);\n rule__Atributo__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAtributoAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstConnection__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6082:1: ( rule__AstConnection__Group__6__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:6083:2: rule__AstConnection__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__AstConnection__Group__6__Impl_in_rule__AstConnection__Group__612734);\n rule__AstConnection__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_6__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9987:1: ( ( ( rule__AstProcedure__Group_6_2__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9988:1: ( ( rule__AstProcedure__Group_6_2__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9988:1: ( ( rule__AstProcedure__Group_6_2__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9989:1: ( rule__AstProcedure__Group_6_2__0 )*\n {\n before(grammarAccess.getAstProcedureAccess().getGroup_6_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9990:1: ( rule__AstProcedure__Group_6_2__0 )*\n loop83:\n do {\n int alt83=2;\n int LA83_0 = input.LA(1);\n\n if ( (LA83_0==62) ) {\n alt83=1;\n }\n\n\n switch (alt83) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9990:2: rule__AstProcedure__Group_6_2__0\n \t {\n \t pushFollow(FOLLOW_rule__AstProcedure__Group_6_2__0_in_rule__AstProcedure__Group_6__2__Impl20422);\n \t rule__AstProcedure__Group_6_2__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop83;\n }\n } while (true);\n\n after(grammarAccess.getAstProcedureAccess().getGroup_6_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Slice__Group_1__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:14126:1: ( rule__Slice__Group_1__6__Impl )\r\n // InternalGo.g:14127:2: rule__Slice__Group_1__6__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Slice__Group_1__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10902:1: ( rule__XIfExpression__Group_6__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10903:2: rule__XIfExpression__Group_6__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1__Impl_in_rule__XIfExpression__Group_6__122299);\r\n rule__XIfExpression__Group_6__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XIfExpression__Group_6__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10871:1: ( rule__XIfExpression__Group_6__0__Impl rule__XIfExpression__Group_6__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10872:2: rule__XIfExpression__Group_6__0__Impl rule__XIfExpression__Group_6__1\r\n {\r\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__0__Impl_in_rule__XIfExpression__Group_6__022235);\r\n rule__XIfExpression__Group_6__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1_in_rule__XIfExpression__Group_6__022238);\r\n rule__XIfExpression__Group_6__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1233:1: ( rule__Address_Impl__Group__5__Impl rule__Address_Impl__Group__6 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1234:2: rule__Address_Impl__Group__5__Impl rule__Address_Impl__Group__6\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__5__Impl_in_rule__Address_Impl__Group__52409);\n rule__Address_Impl__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__6_in_rule__Address_Impl__Group__52412);\n rule__Address_Impl__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.75555533", "0.72365755", "0.69907403", "0.6911964", "0.6768114", "0.6604899", "0.65958685", "0.65491605", "0.6546538", "0.650031", "0.6497872", "0.6493188", "0.64696795", "0.6448519", "0.6430502", "0.6362533", "0.6338043", "0.6334082", "0.6332069", "0.6319639", "0.630161", "0.62987083", "0.6266442", "0.62577367", "0.6237397", "0.61985177", "0.61923116", "0.61686957", "0.6165398", "0.61494905", "0.6142672", "0.6122849", "0.610547", "0.61004823", "0.6096814", "0.60957724", "0.60938203", "0.6086087", "0.6080908", "0.60785276", "0.6075227", "0.607061", "0.60697484", "0.606781", "0.6058255", "0.6057969", "0.6045539", "0.6039786", "0.6037829", "0.6034605", "0.6030813", "0.6013355", "0.6005871", "0.60028154", "0.5995297", "0.5988712", "0.59885776", "0.59752953", "0.59752625", "0.59368265", "0.59322464", "0.5923304", "0.59182984", "0.5916748", "0.59141725", "0.5912296", "0.5908968", "0.5904989", "0.59006673", "0.58997947", "0.589575", "0.5893068", "0.5892366", "0.58910453", "0.58852255", "0.58833176", "0.58794075", "0.587027", "0.5869217", "0.5868894", "0.5865987", "0.5863668", "0.5852991", "0.5846124", "0.5843906", "0.58357775", "0.5828746", "0.5828744", "0.58259904", "0.5825667", "0.5820774", "0.5819986", "0.58108526", "0.5810772", "0.58090055", "0.5798204", "0.5795891", "0.57879823", "0.5787731", "0.5785544" ]
0.7952589
0
$ANTLR end "rule__Model__Group__6" $ANTLR start "rule__Model__Group__6__Impl" InternalCsv.g:1041:1: rule__Model__Group__6__Impl : ( ( rule__Model__LanguagesAssignment_6 ) ) ;
public final void rule__Model__Group__6__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) ) // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* ) { // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* ) // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )* { if ( state.backtracking==0 ) { before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); } // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )* loop11: do { int alt11=2; int LA11_0 = input.LA(1); if ( (LA11_0==RULE_ID) ) { alt11=1; } switch (alt11) { case 1 : // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6 { pushFollow(FOLLOW_3); rule__Model__LanguagesAssignment_6(); state._fsp--; if (state.failed) return ; } break; default : break loop11; } } while (true); if ( state.backtracking==0 ) { after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:991:1: ( ( 'languages' ) )\n // InternalCsv.g:992:1: ( 'languages' )\n {\n // InternalCsv.g:992:1: ( 'languages' )\n // InternalCsv.g:993:2: 'languages'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n match(input,15,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__LanguagesAssignment_6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3667:1: ( ( ruleLanguage ) )\n // InternalCsv.g:3668:2: ( ruleLanguage )\n {\n // InternalCsv.g:3668:2: ( ruleLanguage )\n // InternalCsv.g:3669:3: ruleLanguage\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesLanguageParserRuleCall_6_0()); \n }\n pushFollow(FOLLOW_2);\n ruleLanguage();\n\n state._fsp--;\n if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesLanguageParserRuleCall_6_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1638:1: ( ( 'language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1640:1: 'language'\n {\n before(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n match(input,15,FollowSets000.FOLLOW_15_in_rule__Language__Group_4__0__Impl3200); \n after(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1657:1: ( rule__Language__Group_4__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1658:2: rule__Language__Group_4__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1__Impl_in_rule__Language__Group_4__13231);\n rule__Language__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RootElementType__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:506:1: ( ( 'language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:507:1: ( 'language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:507:1: ( 'language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:508:1: 'language'\n {\n before(grammarAccess.getRootElementTypeAccess().getLanguageKeyword_6()); \n match(input,15,FollowSets000.FOLLOW_15_in_rule__RootElementType__Group__6__Impl994); \n after(grammarAccess.getRootElementTypeAccess().getLanguageKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1413:1: ( ( 'Language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1414:1: ( 'Language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1414:1: ( 'Language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1415:1: 'Language'\n {\n before(grammarAccess.getLanguageAccess().getLanguageKeyword_1()); \n match(input,24,FollowSets000.FOLLOW_24_in_rule__Language__Group__1__Impl2760); \n after(grammarAccess.getLanguageAccess().getLanguageKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1504:1: ( ( ( rule__Language__Group_4__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1506:1: ( rule__Language__Group_4__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_4()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:1: ( rule__Language__Group_4__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==15) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:2: rule__Language__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0_in_rule__Language__Group__4__Impl2944);\n rule__Language__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1626:1: ( rule__Language__Group_4__0__Impl rule__Language__Group_4__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1627:2: rule__Language__Group_4__0__Impl rule__Language__Group_4__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0__Impl_in_rule__Language__Group_4__03169);\n rule__Language__Group_4__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1_in_rule__Language__Group_4__03172);\n rule__Language__Group_4__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1126:1: ( ( ( rule__Language__NameAssignment_0 ) ) )\n // InternalCsv.g:1127:1: ( ( rule__Language__NameAssignment_0 ) )\n {\n // InternalCsv.g:1127:1: ( ( rule__Language__NameAssignment_0 ) )\n // InternalCsv.g:1128:2: ( rule__Language__NameAssignment_0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getNameAssignment_0()); \n }\n // InternalCsv.g:1129:2: ( rule__Language__NameAssignment_0 )\n // InternalCsv.g:1129:3: rule__Language__NameAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__Language__NameAssignment_0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getNameAssignment_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleLanguage() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:92:2: ( ( ( rule__Language__Group__0 ) ) )\n // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) )\n {\n // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) )\n // InternalCsv.g:94:3: ( rule__Language__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getGroup()); \n }\n // InternalCsv.g:95:3: ( rule__Language__Group__0 )\n // InternalCsv.g:95:4: rule__Language__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:643:1: ( rule__Definition__Group__6__Impl )\n // InternalWh.g:644:2: rule__Definition__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1668:1: ( ( ( rule__Language__LanguageAssignment_4_1 ) ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1669:1: ( ( rule__Language__LanguageAssignment_4_1 ) )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1669:1: ( ( rule__Language__LanguageAssignment_4_1 ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1670:1: ( rule__Language__LanguageAssignment_4_1 )\n {\n before(grammarAccess.getLanguageAccess().getLanguageAssignment_4_1()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1671:1: ( rule__Language__LanguageAssignment_4_1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1671:2: rule__Language__LanguageAssignment_4_1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__LanguageAssignment_4_1_in_rule__Language__Group_4__1__Impl3258);\n rule__Language__LanguageAssignment_4_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageAccess().getLanguageAssignment_4_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1370:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1371:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0__Impl_in_rule__Language__Group__02668);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1_in_rule__Language__Group__02671);\n rule__Language__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1492:1: ( rule__Language__Group__4__Impl rule__Language__Group__5 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1493:2: rule__Language__Group__4__Impl rule__Language__Group__5\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4__Impl_in_rule__Language__Group__42914);\n rule__Language__Group__4__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__5_in_rule__Language__Group__42917);\n rule__Language__Group__5();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1141:1: ( rule__Language__Group__1__Impl rule__Language__Group__2 )\n // InternalCsv.g:1142:2: rule__Language__Group__1__Impl rule__Language__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Language__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1967:1: ( ( ( rule__Categoria__ProductosAssignment_6 ) ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1968:1: ( ( rule__Categoria__ProductosAssignment_6 ) )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1968:1: ( ( rule__Categoria__ProductosAssignment_6 ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1969:1: ( rule__Categoria__ProductosAssignment_6 )\n {\n before(grammarAccess.getCategoriaAccess().getProductosAssignment_6()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1970:1: ( rule__Categoria__ProductosAssignment_6 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1970:2: rule__Categoria__ProductosAssignment_6\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__ProductosAssignment_6_in_rule__Categoria__Group__6__Impl3869);\n rule__Categoria__ProductosAssignment_6();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getCategoriaAccess().getProductosAssignment_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:654:1: ( ( ( rule__Definition__OutputAssignment_6 ) ) )\n // InternalWh.g:655:1: ( ( rule__Definition__OutputAssignment_6 ) )\n {\n // InternalWh.g:655:1: ( ( rule__Definition__OutputAssignment_6 ) )\n // InternalWh.g:656:2: ( rule__Definition__OutputAssignment_6 )\n {\n before(grammarAccess.getDefinitionAccess().getOutputAssignment_6()); \n // InternalWh.g:657:2: ( rule__Definition__OutputAssignment_6 )\n // InternalWh.g:657:3: rule__Definition__OutputAssignment_6\n {\n pushFollow(FOLLOW_2);\n rule__Definition__OutputAssignment_6();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getOutputAssignment_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1521:1: ( rule__Language__Group__5__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1522:2: rule__Language__Group__5__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__5__Impl_in_rule__Language__Group__52975);\n rule__Language__Group__5__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1661:1: ( rule__Enum__Group_6__1__Impl )\n // InternalMyDsl.g:1662:2: rule__Enum__Group_6__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1153:1: ( ( '(' ) )\n // InternalCsv.g:1154:1: ( '(' )\n {\n // InternalCsv.g:1154:1: ( '(' )\n // InternalCsv.g:1155:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1418:1: ( rule__Enum__Group__6__Impl rule__Enum__Group__7 )\n // InternalMyDsl.g:1419:2: rule__Enum__Group__6__Impl rule__Enum__Group__7\n {\n pushFollow(FOLLOW_18);\n rule__Enum__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1463:1: ( rule__Language__Group__3__Impl rule__Language__Group__4 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1464:2: rule__Language__Group__3__Impl rule__Language__Group__4\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__3__Impl_in_rule__Language__Group__32853);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__4_in_rule__Language__Group__32856);\n rule__Language__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:664:1: ( ( ( rule__Empresa__Group_6__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:666:1: ( rule__Empresa__Group_6__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_6()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:1: ( rule__Empresa__Group_6__0 )?\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==21) ) {\n alt6=1;\n }\n switch (alt6) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:2: rule__Empresa__Group_6__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__0_in_rule__Empresa__Group__6__Impl1310);\n rule__Empresa__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19196:1: ( rule__AstExpressionIf__Group__6__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19197:2: rule__AstExpressionIf__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionIf__Group__6__Impl_in_rule__AstExpressionIf__Group__638559);\n rule__AstExpressionIf__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1594:1: ( rule__Language__Group_3__1__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1595:2: rule__Language__Group_3__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1__Impl_in_rule__Language__Group_3__13108);\n rule__Language__Group_3__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1475:1: ( ( ( rule__Language__Group_3__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1477:1: ( rule__Language__Group_3__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_3()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:1: ( rule__Language__Group_3__0 )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==25) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:2: rule__Language__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0_in_rule__Language__Group__3__Impl2883);\n rule__Language__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:883:1: ( ( ( rule__Model__LanguageTargetAssignment_0 )? ) )\n // InternalMLRegression.g:884:1: ( ( rule__Model__LanguageTargetAssignment_0 )? )\n {\n // InternalMLRegression.g:884:1: ( ( rule__Model__LanguageTargetAssignment_0 )? )\n // InternalMLRegression.g:885:2: ( rule__Model__LanguageTargetAssignment_0 )?\n {\n before(grammarAccess.getModelAccess().getLanguageTargetAssignment_0()); \n // InternalMLRegression.g:886:2: ( rule__Model__LanguageTargetAssignment_0 )?\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==22) ) {\n alt8=1;\n }\n switch (alt8) {\n case 1 :\n // InternalMLRegression.g:886:3: rule__Model__LanguageTargetAssignment_0\n {\n pushFollow(FOLLOW_2);\n rule__Model__LanguageTargetAssignment_0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getModelAccess().getLanguageTargetAssignment_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1394:1: ( ( ( rule__Catalogo__CategoriasAssignment_6 ) ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1395:1: ( ( rule__Catalogo__CategoriasAssignment_6 ) )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1395:1: ( ( rule__Catalogo__CategoriasAssignment_6 ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1396:1: ( rule__Catalogo__CategoriasAssignment_6 )\n {\n before(grammarAccess.getCatalogoAccess().getCategoriasAssignment_6()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1397:1: ( rule__Catalogo__CategoriasAssignment_6 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1397:2: rule__Catalogo__CategoriasAssignment_6\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__CategoriasAssignment_6_in_rule__Catalogo__Group__6__Impl2743);\n rule__Catalogo__CategoriasAssignment_6();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getCatalogoAccess().getCategoriasAssignment_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleLanguage() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:185:2: ( ( ( rule__Language__Group__0 ) ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:186:1: ( ( rule__Language__Group__0 ) )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:186:1: ( ( rule__Language__Group__0 ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:187:1: ( rule__Language__Group__0 )\n {\n before(grammarAccess.getLanguageAccess().getGroup()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:188:1: ( rule__Language__Group__0 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:188:2: rule__Language__Group__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0_in_ruleLanguage334);\n rule__Language__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:1006:1: ( rule__LanguageTarget__Group__3__Impl )\n // InternalMLRegression.g:1007:2: rule__LanguageTarget__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1206:1: ( ( ')' ) )\n // InternalCsv.g:1207:1: ( ')' )\n {\n // InternalCsv.g:1207:1: ( ')' )\n // InternalCsv.g:1208:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1955:1: ( rule__Categoria__Group__6__Impl rule__Categoria__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1956:2: rule__Categoria__Group__6__Impl rule__Categoria__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__6__Impl_in_rule__Categoria__Group__63839);\n rule__Categoria__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__7_in_rule__Categoria__Group__63842);\n rule__Categoria__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1430:1: ( ( ( rule__Enum__Group_6__0 )* ) )\n // InternalMyDsl.g:1431:1: ( ( rule__Enum__Group_6__0 )* )\n {\n // InternalMyDsl.g:1431:1: ( ( rule__Enum__Group_6__0 )* )\n // InternalMyDsl.g:1432:2: ( rule__Enum__Group_6__0 )*\n {\n before(grammarAccess.getEnumAccess().getGroup_6()); \n // InternalMyDsl.g:1433:2: ( rule__Enum__Group_6__0 )*\n loop8:\n do {\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==26) ) {\n alt8=1;\n }\n\n\n switch (alt8) {\n \tcase 1 :\n \t // InternalMyDsl.g:1433:3: rule__Enum__Group_6__0\n \t {\n \t pushFollow(FOLLOW_19);\n \t rule__Enum__Group_6__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop8;\n }\n } while (true);\n\n after(grammarAccess.getEnumAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1634:1: ( rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1 )\n // InternalMyDsl.g:1635:2: rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1\n {\n pushFollow(FOLLOW_4);\n rule__Enum__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19207:1: ( ( 'end' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19209:1: 'end'\n {\n before(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n match(input,52,FOLLOW_52_in_rule__AstExpressionIf__Group__6__Impl38587); \n after(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1563:1: ( rule__Language__Group_3__0__Impl rule__Language__Group_3__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1564:2: rule__Language__Group_3__0__Impl rule__Language__Group_3__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0__Impl_in_rule__Language__Group_3__03046);\n rule__Language__Group_3__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1_in_rule__Language__Group_3__03049);\n rule__Language__Group_3__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1672:1: ( ( ( rule__Enum__AttributeAssignment_6_1 ) ) )\n // InternalMyDsl.g:1673:1: ( ( rule__Enum__AttributeAssignment_6_1 ) )\n {\n // InternalMyDsl.g:1673:1: ( ( rule__Enum__AttributeAssignment_6_1 ) )\n // InternalMyDsl.g:1674:2: ( rule__Enum__AttributeAssignment_6_1 )\n {\n before(grammarAccess.getEnumAccess().getAttributeAssignment_6_1()); \n // InternalMyDsl.g:1675:2: ( rule__Enum__AttributeAssignment_6_1 )\n // InternalMyDsl.g:1675:3: rule__Enum__AttributeAssignment_6_1\n {\n pushFollow(FOLLOW_2);\n rule__Enum__AttributeAssignment_6_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getEnumAccess().getAttributeAssignment_6_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group_7__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2232:1: ( ( ',' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2234:1: ','\n {\n before(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n match(input,26,FollowSets000.FOLLOW_26_in_rule__Categoria__Group_7__0__Impl4378); \n after(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7351:1: ( rule__XIfExpression__Group__6__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7352:2: rule__XIfExpression__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group__6__Impl_in_rule__XIfExpression__Group__614930);\n rule__XIfExpression__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2226:1: ( rule__Track__Group__6__Impl )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2227:2: rule__Track__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__Track__Group__6__Impl_in_rule__Track__Group__64570);\n rule__Track__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1382:1: ( ( () ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1383:1: ( () )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1383:1: ( () )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1384:1: ()\n {\n before(grammarAccess.getLanguageAccess().getLanguageAction_0()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1385:1: ()\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1387:1: \n {\n }\n\n after(grammarAccess.getLanguageAccess().getLanguageAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5029:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5030:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5030:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5031:1: ','\n {\n before(grammarAccess.getAstNetworkAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstNetwork__Group_6_1__0__Impl10649); \n after(grammarAccess.getAstNetworkAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1432:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1433:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__2__Impl_in_rule__Language__Group__22791);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__3_in_rule__Language__Group__22794);\n rule__Language__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1401:1: ( rule__Language__Group__1__Impl rule__Language__Group__2 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1402:2: rule__Language__Group__1__Impl rule__Language__Group__2\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1__Impl_in_rule__Language__Group__12729);\n rule__Language__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__2_in_rule__Language__Group__12732);\n rule__Language__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:925:1: ( rule__LanguageTarget__Group__0__Impl rule__LanguageTarget__Group__1 )\n // InternalMLRegression.g:926:2: rule__LanguageTarget__Group__0__Impl rule__LanguageTarget__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__LanguageTarget__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1180:1: ( ( ( rule__Language__TargetAssignment_2 ) ) )\n // InternalCsv.g:1181:1: ( ( rule__Language__TargetAssignment_2 ) )\n {\n // InternalCsv.g:1181:1: ( ( rule__Language__TargetAssignment_2 ) )\n // InternalCsv.g:1182:2: ( rule__Language__TargetAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getTargetAssignment_2()); \n }\n // InternalCsv.g:1183:2: ( rule__Language__TargetAssignment_2 )\n // InternalCsv.g:1183:3: rule__Language__TargetAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Language__TargetAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getTargetAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:978:1: ( rule__BTable__Group__6__Impl )\n // InternalBSQL2Java.g:979:2: rule__BTable__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1274:1: ( ( 'country' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1275:1: ( 'country' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1275:1: ( 'country' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1276:1: 'country'\n {\n before(grammarAccess.getAddress_ImplAccess().getCountryKeyword_6()); \n match(input,20,FollowSets000.FOLLOW_20_in_rule__Address_Impl__Group__6__Impl2500); \n after(grammarAccess.getAddress_ImplAccess().getCountryKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2237:1: ( ( '}' ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2238:1: ( '}' )\n {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2238:1: ( '}' )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2239:1: '}'\n {\n before(grammarAccess.getTrackAccess().getRightCurlyBracketKeyword_6()); \n match(input,36,FOLLOW_36_in_rule__Track__Group__6__Impl4598); \n after(grammarAccess.getTrackAccess().getRightCurlyBracketKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1105:1: ( rule__Empresa__Group_6__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1106:2: rule__Empresa__Group_6__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__1__Impl_in_rule__Empresa__Group_6__12159);\n rule__Empresa__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1116:1: ( ( ( rule__Empresa__DescripcionAssignment_6_1 ) ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1117:1: ( ( rule__Empresa__DescripcionAssignment_6_1 ) )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1117:1: ( ( rule__Empresa__DescripcionAssignment_6_1 ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1118:1: ( rule__Empresa__DescripcionAssignment_6_1 )\n {\n before(grammarAccess.getEmpresaAccess().getDescripcionAssignment_6_1()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1119:1: ( rule__Empresa__DescripcionAssignment_6_1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1119:2: rule__Empresa__DescripcionAssignment_6_1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__DescripcionAssignment_6_1_in_rule__Empresa__Group_6__1__Impl2186);\n rule__Empresa__DescripcionAssignment_6_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getEmpresaAccess().getDescripcionAssignment_6_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7424:1: ( rule__XIfExpression__Group_6__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7425:2: rule__XIfExpression__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1__Impl_in_rule__XIfExpression__Group_6__115066);\n rule__XIfExpression__Group_6__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1086:1: ( ( 'descripcion' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1087:1: ( 'descripcion' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1087:1: ( 'descripcion' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1088:1: 'descripcion'\n {\n before(grammarAccess.getEmpresaAccess().getDescripcionKeyword_6_0()); \n match(input,21,FollowSets000.FOLLOW_21_in_rule__Empresa__Group_6__0__Impl2128); \n after(grammarAccess.getEmpresaAccess().getDescripcionKeyword_6_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12936:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12937:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12938:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_6_1__0__Impl26229); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_6_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1532:1: ( ( '}' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1534:1: '}'\n {\n before(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__Language__Group__5__Impl3003); \n after(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:652:1: ( rule__Empresa__Group__6__Impl rule__Empresa__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:653:2: rule__Empresa__Group__6__Impl rule__Empresa__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__6__Impl_in_rule__Empresa__Group__61280);\n rule__Empresa__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__7_in_rule__Empresa__Group__61283);\n rule__Empresa__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1646:1: ( ( ',' ) )\n // InternalMyDsl.g:1647:1: ( ',' )\n {\n // InternalMyDsl.g:1647:1: ( ',' )\n // InternalMyDsl.g:1648:2: ','\n {\n before(grammarAccess.getEnumAccess().getCommaKeyword_6_0()); \n match(input,26,FOLLOW_2); \n after(grammarAccess.getEnumAccess().getCommaKeyword_6_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12892:1: ( rule__AstAction__Group_6__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12893:2: rule__AstAction__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__1__Impl_in_rule__AstAction__Group_6__126136);\n rule__AstAction__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7362:1: ( ( ( rule__XIfExpression__Group_6__0 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7363:1: ( ( rule__XIfExpression__Group_6__0 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7363:1: ( ( rule__XIfExpression__Group_6__0 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7364:1: ( rule__XIfExpression__Group_6__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXIfExpressionAccess().getGroup_6()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7365:1: ( rule__XIfExpression__Group_6__0 )?\n int alt48=2;\n int LA48_0 = input.LA(1);\n\n if ( (LA48_0==46) ) {\n int LA48_1 = input.LA(2);\n\n if ( (synpred69_InternalInstances()) ) {\n alt48=1;\n }\n }\n switch (alt48) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7365:2: rule__XIfExpression__Group_6__0\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__0_in_rule__XIfExpression__Group__6__Impl14957);\n rule__XIfExpression__Group_6__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXIfExpressionAccess().getGroup_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3268:1: ( rule__Atributo__Group_6__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3269:2: rule__Atributo__Group_6__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group_6__1__Impl_in_rule__Atributo__Group_6__16406);\n rule__Atributo__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10332:1: ( rule__XIfExpression__Group__6__Impl )\r\n // InternalDroneScript.g:10333:2: rule__XIfExpression__Group__6__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12520:1: ( ( ( rule__AstAction__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12522:1: ( rule__AstAction__Group_6__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:1: ( rule__AstAction__Group_6__0 )?\n int alt102=2;\n int LA102_0 = input.LA(1);\n\n if ( (LA102_0==RULE_ID||LA102_0==81) ) {\n alt102=1;\n }\n switch (alt102) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:2: rule__AstAction__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__0_in_rule__AstAction__Group__6__Impl25413);\n rule__AstAction__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:991:1: ( ( ( rule__LanguageTarget__LanguageAssignment_2 ) ) )\n // InternalMLRegression.g:992:1: ( ( rule__LanguageTarget__LanguageAssignment_2 ) )\n {\n // InternalMLRegression.g:992:1: ( ( rule__LanguageTarget__LanguageAssignment_2 ) )\n // InternalMLRegression.g:993:2: ( rule__LanguageTarget__LanguageAssignment_2 )\n {\n before(grammarAccess.getLanguageTargetAccess().getLanguageAssignment_2()); \n // InternalMLRegression.g:994:2: ( rule__LanguageTarget__LanguageAssignment_2 )\n // InternalMLRegression.g:994:3: rule__LanguageTarget__LanguageAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__LanguageAssignment_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageTargetAccess().getLanguageAssignment_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1074:1: ( rule__Empresa__Group_6__0__Impl rule__Empresa__Group_6__1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1075:2: rule__Empresa__Group_6__0__Impl rule__Empresa__Group_6__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__0__Impl_in_rule__Empresa__Group_6__02097);\n rule__Empresa__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__1_in_rule__Empresa__Group_6__02100);\n rule__Empresa__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:616:1: ( rule__Definition__Group__5__Impl rule__Definition__Group__6 )\n // InternalWh.g:617:2: rule__Definition__Group__5__Impl rule__Definition__Group__6\n {\n pushFollow(FOLLOW_7);\n rule__Definition__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10829:1: ( rule__XIfExpression__Group__6__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10830:2: rule__XIfExpression__Group__6__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XIfExpression__Group__6__Impl_in_rule__XIfExpression__Group__622163);\r\n rule__XIfExpression__Group__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XIfExpression__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7393:1: ( rule__XIfExpression__Group_6__0__Impl rule__XIfExpression__Group_6__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7394:2: rule__XIfExpression__Group_6__0__Impl rule__XIfExpression__Group_6__1\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__0__Impl_in_rule__XIfExpression__Group_6__015002);\n rule__XIfExpression__Group_6__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1_in_rule__XIfExpression__Group_6__015005);\n rule__XIfExpression__Group_6__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10386:1: ( rule__XIfExpression__Group_6__1__Impl )\r\n // InternalDroneScript.g:10387:2: rule__XIfExpression__Group_6__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group_6__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_6_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12955:1: ( rule__AstAction__Group_6_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12956:2: rule__AstAction__Group_6_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6_1__1__Impl_in_rule__AstAction__Group_6_1__126260);\n rule__AstAction__Group_6_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1575:1: ( ( 'value' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1576:1: ( 'value' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1576:1: ( 'value' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1577:1: 'value'\n {\n before(grammarAccess.getLanguageAccess().getValueKeyword_3_0()); \n match(input,25,FollowSets000.FOLLOW_25_in_rule__Language__Group_3__0__Impl3077); \n after(grammarAccess.getLanguageAccess().getValueKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:952:1: ( rule__LanguageTarget__Group__1__Impl rule__LanguageTarget__Group__2 )\n // InternalMLRegression.g:953:2: rule__LanguageTarget__Group__1__Impl rule__LanguageTarget__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__LanguageTarget__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10902:1: ( rule__XIfExpression__Group_6__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10903:2: rule__XIfExpression__Group_6__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1__Impl_in_rule__XIfExpression__Group_6__122299);\r\n rule__XIfExpression__Group_6__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstProcedure__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9665:1: ( ( ( rule__AstProcedure__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9666:1: ( ( rule__AstProcedure__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9666:1: ( ( rule__AstProcedure__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9667:1: ( rule__AstProcedure__Group_6__0 )?\n {\n before(grammarAccess.getAstProcedureAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9668:1: ( rule__AstProcedure__Group_6__0 )?\n int alt80=2;\n int LA80_0 = input.LA(1);\n\n if ( (LA80_0==63) ) {\n alt80=1;\n }\n switch (alt80) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9668:2: rule__AstProcedure__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstProcedure__Group_6__0_in_rule__AstProcedure__Group__6__Impl19795);\n rule__AstProcedure__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstProcedureAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_6_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10022:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10023:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10023:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10024:1: ','\n {\n before(grammarAccess.getAstProcedureAccess().getCommaKeyword_6_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstProcedure__Group_6_2__0__Impl20490); \n after(grammarAccess.getAstProcedureAccess().getCommaKeyword_6_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4985:1: ( rule__AstNetwork__Group_6__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4986:2: rule__AstNetwork__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_6__1__Impl_in_rule__AstNetwork__Group_6__110556);\n rule__AstNetwork__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:979:1: ( rule__LanguageTarget__Group__2__Impl rule__LanguageTarget__Group__3 )\n // InternalMLRegression.g:980:2: rule__LanguageTarget__Group__2__Impl rule__LanguageTarget__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__LanguageTarget__Group__2__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__3();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_6_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5048:1: ( rule__AstNetwork__Group_6_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5049:2: rule__AstNetwork__Group_6_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_6_1__1__Impl_in_rule__AstNetwork__Group_6_1__110680);\n rule__AstNetwork__Group_6_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpMultiAssign__Group_6__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5769:1: ( rule__OpMultiAssign__Group_6__2__Impl )\r\n // InternalDroneScript.g:5770:2: rule__OpMultiAssign__Group_6__2__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__OpMultiAssign__Group_6__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XIfExpression__Group__6__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10343:1: ( ( ( rule__XIfExpression__Group_6__0 )? ) )\r\n // InternalDroneScript.g:10344:1: ( ( rule__XIfExpression__Group_6__0 )? )\r\n {\r\n // InternalDroneScript.g:10344:1: ( ( rule__XIfExpression__Group_6__0 )? )\r\n // InternalDroneScript.g:10345:2: ( rule__XIfExpression__Group_6__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXIfExpressionAccess().getGroup_6()); \r\n }\r\n // InternalDroneScript.g:10346:2: ( rule__XIfExpression__Group_6__0 )?\r\n int alt83=2;\r\n int LA83_0 = input.LA(1);\r\n\r\n if ( (LA83_0==78) ) {\r\n int LA83_1 = input.LA(2);\r\n\r\n if ( (synpred132_InternalDroneScript()) ) {\r\n alt83=1;\r\n }\r\n }\r\n switch (alt83) {\r\n case 1 :\r\n // InternalDroneScript.g:10346:3: rule__XIfExpression__Group_6__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group_6__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXIfExpressionAccess().getGroup_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleLanguageTarget() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:91:2: ( ( ( rule__LanguageTarget__Group__0 ) ) )\n // InternalMLRegression.g:92:2: ( ( rule__LanguageTarget__Group__0 ) )\n {\n // InternalMLRegression.g:92:2: ( ( rule__LanguageTarget__Group__0 ) )\n // InternalMLRegression.g:93:3: ( rule__LanguageTarget__Group__0 )\n {\n before(grammarAccess.getLanguageTargetAccess().getGroup()); \n // InternalMLRegression.g:94:3: ( rule__LanguageTarget__Group__0 )\n // InternalMLRegression.g:94:4: rule__LanguageTarget__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageTargetAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7176:1: ( rule__Constraint__Group__6__Impl rule__Constraint__Group__7 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7177:2: rule__Constraint__Group__6__Impl rule__Constraint__Group__7\n {\n pushFollow(FOLLOW_rule__Constraint__Group__6__Impl_in_rule__Constraint__Group__614469);\n rule__Constraint__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__7_in_rule__Constraint__Group__614472);\n rule__Constraint__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:937:1: ( ( 'target_language' ) )\n // InternalMLRegression.g:938:1: ( 'target_language' )\n {\n // InternalMLRegression.g:938:1: ( 'target_language' )\n // InternalMLRegression.g:939:2: 'target_language'\n {\n before(grammarAccess.getLanguageTargetAccess().getTarget_languageKeyword_0()); \n match(input,22,FOLLOW_2); \n after(grammarAccess.getLanguageTargetAccess().getTarget_languageKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12903:1: ( ( ( rule__AstAction__Group_6_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12904:1: ( ( rule__AstAction__Group_6_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12904:1: ( ( rule__AstAction__Group_6_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12905:1: ( rule__AstAction__Group_6_1__0 )*\n {\n before(grammarAccess.getAstActionAccess().getGroup_6_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12906:1: ( rule__AstAction__Group_6_1__0 )*\n loop107:\n do {\n int alt107=2;\n int LA107_0 = input.LA(1);\n\n if ( (LA107_0==62) ) {\n alt107=1;\n }\n\n\n switch (alt107) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12906:2: rule__AstAction__Group_6_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstAction__Group_6_1__0_in_rule__AstAction__Group_6__1__Impl26163);\n \t rule__AstAction__Group_6_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop107;\n }\n } while (true);\n\n after(grammarAccess.getAstActionAccess().getGroup_6_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.73429865", "0.7085381", "0.70457184", "0.7034113", "0.6937186", "0.6761648", "0.66749936", "0.66693974", "0.66535383", "0.665293", "0.66370076", "0.66355395", "0.6626071", "0.6588655", "0.6578329", "0.6561466", "0.6523561", "0.6516845", "0.6486541", "0.64769244", "0.6455963", "0.6402918", "0.6402509", "0.6387634", "0.637693", "0.6375187", "0.63723856", "0.6357244", "0.63488203", "0.6347685", "0.6338406", "0.6332897", "0.63174635", "0.63101417", "0.63008004", "0.6293474", "0.6290409", "0.6276165", "0.6257488", "0.62531435", "0.6237164", "0.6219922", "0.6201955", "0.62010753", "0.6194363", "0.61771", "0.6152362", "0.6149903", "0.61427397", "0.6118662", "0.6106936", "0.6105241", "0.60929066", "0.60814905", "0.60750633", "0.6074616", "0.60718244", "0.60651433", "0.6061301", "0.60590637", "0.6030172", "0.600661", "0.6003974", "0.600273", "0.598279", "0.5962666", "0.5951381", "0.5946432", "0.59446037", "0.5943667", "0.594091", "0.5939358", "0.5922565", "0.5916347", "0.5911243", "0.5910873", "0.590045", "0.5896397", "0.588666", "0.5884179", "0.5878761", "0.5876293", "0.58762825", "0.58702034", "0.58689183", "0.58628875", "0.582116", "0.5812758", "0.58114386", "0.58108526", "0.5789003", "0.5788751", "0.5774879", "0.57721424", "0.57716537", "0.57637477", "0.5760992", "0.57605284", "0.57602376", "0.57550603" ]
0.84935695
0
$ANTLR end "rule__Model__Group__6__Impl" $ANTLR start "rule__Model__Group__7" InternalCsv.g:1056:1: rule__Model__Group__7 : rule__Model__Group__7__Impl rule__Model__Group__8 ;
public final void rule__Model__Group__7() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 ) // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8 { pushFollow(FOLLOW_10); rule__Model__Group__7__Impl(); state._fsp--; if (state.failed) return ; pushFollow(FOLLOW_2); rule__Model__Group__8(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:643:1: ( rule__Definition__Group__6__Impl )\n // InternalWh.g:644:2: rule__Definition__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1262:1: ( rule__Address_Impl__Group__6__Impl rule__Address_Impl__Group__7 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1263:2: rule__Address_Impl__Group__6__Impl rule__Address_Impl__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__6__Impl_in_rule__Address_Impl__Group__62469);\n rule__Address_Impl__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__7_in_rule__Address_Impl__Group__62472);\n rule__Address_Impl__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1418:1: ( rule__Enum__Group__6__Impl rule__Enum__Group__7 )\n // InternalMyDsl.g:1419:2: rule__Enum__Group__6__Impl rule__Enum__Group__7\n {\n pushFollow(FOLLOW_18);\n rule__Enum__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:664:1: ( ( ( rule__Empresa__Group_6__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:666:1: ( rule__Empresa__Group_6__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_6()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:1: ( rule__Empresa__Group_6__0 )?\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==21) ) {\n alt6=1;\n }\n switch (alt6) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:2: rule__Empresa__Group_6__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__0_in_rule__Empresa__Group__6__Impl1310);\n rule__Empresa__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:652:1: ( rule__Empresa__Group__6__Impl rule__Empresa__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:653:2: rule__Empresa__Group__6__Impl rule__Empresa__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__6__Impl_in_rule__Empresa__Group__61280);\n rule__Empresa__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__7_in_rule__Empresa__Group__61283);\n rule__Empresa__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2226:1: ( rule__Track__Group__6__Impl )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2227:2: rule__Track__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__Track__Group__6__Impl_in_rule__Track__Group__64570);\n rule__Track__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1445:1: ( rule__Enum__Group__7__Impl rule__Enum__Group__8 )\n // InternalMyDsl.g:1446:2: rule__Enum__Group__7__Impl rule__Enum__Group__8\n {\n pushFollow(FOLLOW_20);\n rule__Enum__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:978:1: ( rule__BTable__Group__6__Impl )\n // InternalBSQL2Java.g:979:2: rule__BTable__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) )\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n {\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )*\n loop11:\n do {\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n alt11=1;\n }\n\n\n switch (alt11) {\n \tcase 1 :\n \t // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__Model__LanguagesAssignment_6();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop11;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1422:1: ( ( ( rule__OpenCSV__Alternatives_7 ) ) )\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n {\n // InternalCsv.g:1423:1: ( ( rule__OpenCSV__Alternatives_7 ) )\n // InternalCsv.g:1424:2: ( rule__OpenCSV__Alternatives_7 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n // InternalCsv.g:1425:2: ( rule__OpenCSV__Alternatives_7 )\n // InternalCsv.g:1425:3: rule__OpenCSV__Alternatives_7\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Alternatives_7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getAlternatives_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1293:1: ( rule__Address_Impl__Group__7__Impl rule__Address_Impl__Group__8 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1294:2: rule__Address_Impl__Group__7__Impl rule__Address_Impl__Group__8\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__7__Impl_in_rule__Address_Impl__Group__72531);\n rule__Address_Impl__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__8_in_rule__Address_Impl__Group__72534);\n rule__Address_Impl__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19196:1: ( rule__AstExpressionIf__Group__6__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19197:2: rule__AstExpressionIf__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionIf__Group__6__Impl_in_rule__AstExpressionIf__Group__638559);\n rule__AstExpressionIf__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7176:1: ( rule__Constraint__Group__6__Impl rule__Constraint__Group__7 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7177:2: rule__Constraint__Group__6__Impl rule__Constraint__Group__7\n {\n pushFollow(FOLLOW_rule__Constraint__Group__6__Impl_in_rule__Constraint__Group__614469);\n rule__Constraint__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__7_in_rule__Constraint__Group__614472);\n rule__Constraint__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BSQLMachine__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:647:1: ( rule__BSQLMachine__Group__6__Impl rule__BSQLMachine__Group__7 )\n // InternalBSQL2Java.g:648:2: rule__BSQLMachine__Group__6__Impl rule__BSQLMachine__Group__7\n {\n pushFollow(FOLLOW_3);\n rule__BSQLMachine__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BSQLMachine__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:693:1: ( ( ( rule__Empresa__Group_7__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:694:1: ( ( rule__Empresa__Group_7__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:694:1: ( ( rule__Empresa__Group_7__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:695:1: ( rule__Empresa__Group_7__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_7()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:696:1: ( rule__Empresa__Group_7__0 )?\n int alt7=2;\n int LA7_0 = input.LA(1);\n\n if ( (LA7_0==22) ) {\n alt7=1;\n }\n switch (alt7) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:696:2: rule__Empresa__Group_7__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_7__0_in_rule__Empresa__Group__7__Impl1371);\n rule__Empresa__Group_7__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_7()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3002:1: ( rule__Atributo__Group__7__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3003:2: rule__Atributo__Group__7__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__7__Impl_in_rule__Atributo__Group__75900);\n rule__Atributo__Group__7__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1996:1: ( ( ( rule__Categoria__Group_7__0 )* ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1997:1: ( ( rule__Categoria__Group_7__0 )* )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1997:1: ( ( rule__Categoria__Group_7__0 )* )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1998:1: ( rule__Categoria__Group_7__0 )*\n {\n before(grammarAccess.getCategoriaAccess().getGroup_7()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1999:1: ( rule__Categoria__Group_7__0 )*\n loop14:\n do {\n int alt14=2;\n int LA14_0 = input.LA(1);\n\n if ( (LA14_0==26) ) {\n alt14=1;\n }\n\n\n switch (alt14) {\n \tcase 1 :\n \t // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1999:2: rule__Categoria__Group_7__0\n \t {\n \t pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group_7__0_in_rule__Categoria__Group__7__Impl3929);\n \t rule__Categoria__Group_7__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop14;\n }\n } while (true);\n\n after(grammarAccess.getCategoriaAccess().getGroup_7()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1661:1: ( rule__Enum__Group_6__1__Impl )\n // InternalMyDsl.g:1662:2: rule__Enum__Group_6__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1322:1: ( rule__Address_Impl__Group__8__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1323:2: rule__Address_Impl__Group__8__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__8__Impl_in_rule__Address_Impl__Group__82591);\n rule__Address_Impl__Group__8__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7351:1: ( rule__XIfExpression__Group__6__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7352:2: rule__XIfExpression__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group__6__Impl_in_rule__XIfExpression__Group__614930);\n rule__XIfExpression__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:616:1: ( rule__Definition__Group__5__Impl rule__Definition__Group__6 )\n // InternalWh.g:617:2: rule__Definition__Group__5__Impl rule__Definition__Group__6\n {\n pushFollow(FOLLOW_7);\n rule__Definition__Group__5__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1634:1: ( rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1 )\n // InternalMyDsl.g:1635:2: rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1\n {\n pushFollow(FOLLOW_4);\n rule__Enum__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1430:1: ( ( ( rule__Enum__Group_6__0 )* ) )\n // InternalMyDsl.g:1431:1: ( ( rule__Enum__Group_6__0 )* )\n {\n // InternalMyDsl.g:1431:1: ( ( rule__Enum__Group_6__0 )* )\n // InternalMyDsl.g:1432:2: ( rule__Enum__Group_6__0 )*\n {\n before(grammarAccess.getEnumAccess().getGroup_6()); \n // InternalMyDsl.g:1433:2: ( rule__Enum__Group_6__0 )*\n loop8:\n do {\n int alt8=2;\n int LA8_0 = input.LA(1);\n\n if ( (LA8_0==26) ) {\n alt8=1;\n }\n\n\n switch (alt8) {\n \tcase 1 :\n \t // InternalMyDsl.g:1433:3: rule__Enum__Group_6__0\n \t {\n \t pushFollow(FOLLOW_19);\n \t rule__Enum__Group_6__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop8;\n }\n } while (true);\n\n after(grammarAccess.getEnumAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19207:1: ( ( 'end' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19209:1: 'end'\n {\n before(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n match(input,52,FOLLOW_52_in_rule__AstExpressionIf__Group__6__Impl38587); \n after(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group_7__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2232:1: ( ( ',' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2234:1: ','\n {\n before(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n match(input,26,FollowSets000.FOLLOW_26_in_rule__Categoria__Group_7__0__Impl4378); \n after(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:681:1: ( rule__Empresa__Group__7__Impl rule__Empresa__Group__8 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:682:2: rule__Empresa__Group__7__Impl rule__Empresa__Group__8\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__7__Impl_in_rule__Empresa__Group__71341);\n rule__Empresa__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__8_in_rule__Empresa__Group__71344);\n rule__Empresa__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1074:1: ( rule__Empresa__Group_6__0__Impl rule__Empresa__Group_6__1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1075:2: rule__Empresa__Group_6__0__Impl rule__Empresa__Group_6__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__0__Impl_in_rule__Empresa__Group_6__02097);\n rule__Empresa__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__1_in_rule__Empresa__Group_6__02100);\n rule__Empresa__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1382:1: ( rule__Catalogo__Group__6__Impl rule__Catalogo__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1383:2: rule__Catalogo__Group__6__Impl rule__Catalogo__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__6__Impl_in_rule__Catalogo__Group__62713);\n rule__Catalogo__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__7_in_rule__Catalogo__Group__62716);\n rule__Catalogo__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12520:1: ( ( ( rule__AstAction__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12522:1: ( rule__AstAction__Group_6__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:1: ( rule__AstAction__Group_6__0 )?\n int alt102=2;\n int LA102_0 = input.LA(1);\n\n if ( (LA102_0==RULE_ID||LA102_0==81) ) {\n alt102=1;\n }\n switch (alt102) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:2: rule__AstAction__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__0_in_rule__AstAction__Group__6__Impl25413);\n rule__AstAction__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12549:1: ( ( ( rule__AstAction__Group_7__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12550:1: ( ( rule__AstAction__Group_7__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12550:1: ( ( rule__AstAction__Group_7__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12551:1: ( rule__AstAction__Group_7__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_7()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12552:1: ( rule__AstAction__Group_7__0 )?\n int alt103=2;\n int LA103_0 = input.LA(1);\n\n if ( (LA103_0==78) ) {\n alt103=1;\n }\n switch (alt103) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12552:2: rule__AstAction__Group_7__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_7__0_in_rule__AstAction__Group__7__Impl25474);\n rule__AstAction__Group_7__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_7()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1423:1: ( ( ( rule__Catalogo__Group_7__0 )* ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1424:1: ( ( rule__Catalogo__Group_7__0 )* )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1424:1: ( ( rule__Catalogo__Group_7__0 )* )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1425:1: ( rule__Catalogo__Group_7__0 )*\n {\n before(grammarAccess.getCatalogoAccess().getGroup_7()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1426:1: ( rule__Catalogo__Group_7__0 )*\n loop10:\n do {\n int alt10=2;\n int LA10_0 = input.LA(1);\n\n if ( (LA10_0==26) ) {\n alt10=1;\n }\n\n\n switch (alt10) {\n \tcase 1 :\n \t // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1426:2: rule__Catalogo__Group_7__0\n \t {\n \t pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group_7__0_in_rule__Catalogo__Group__7__Impl2803);\n \t rule__Catalogo__Group_7__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop10;\n }\n } while (true);\n\n after(grammarAccess.getCatalogoAccess().getGroup_7()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group_7__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1659:1: ( ( ',' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1660:1: ( ',' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1660:1: ( ',' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1661:1: ','\n {\n before(grammarAccess.getCatalogoAccess().getCommaKeyword_7_0()); \n match(input,26,FollowSets000.FOLLOW_26_in_rule__Catalogo__Group_7__0__Impl3252); \n after(grammarAccess.getCatalogoAccess().getCommaKeyword_7_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1984:1: ( rule__Categoria__Group__7__Impl rule__Categoria__Group__8 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1985:2: rule__Categoria__Group__7__Impl rule__Categoria__Group__8\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__7__Impl_in_rule__Categoria__Group__73899);\n rule__Categoria__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__8_in_rule__Categoria__Group__73902);\n rule__Categoria__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2973:1: ( rule__Atributo__Group__6__Impl rule__Atributo__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2974:2: rule__Atributo__Group__6__Impl rule__Atributo__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__6__Impl_in_rule__Atributo__Group__65839);\n rule__Atributo__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group__7_in_rule__Atributo__Group__65842);\n rule__Atributo__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1396:1: ( ( '=' ) )\n // InternalCsv.g:1397:1: ( '=' )\n {\n // InternalCsv.g:1397:1: ( '=' )\n // InternalCsv.g:1398:2: '='\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n match(input,22,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getEqualsSignKeyword_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9665:1: ( ( ( rule__AstProcedure__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9666:1: ( ( rule__AstProcedure__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9666:1: ( ( rule__AstProcedure__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9667:1: ( rule__AstProcedure__Group_6__0 )?\n {\n before(grammarAccess.getAstProcedureAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9668:1: ( rule__AstProcedure__Group_6__0 )?\n int alt80=2;\n int LA80_0 = input.LA(1);\n\n if ( (LA80_0==63) ) {\n alt80=1;\n }\n switch (alt80) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9668:2: rule__AstProcedure__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstProcedure__Group_6__0_in_rule__AstProcedure__Group__6__Impl19795);\n rule__AstProcedure__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstProcedureAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9653:1: ( rule__AstProcedure__Group__6__Impl rule__AstProcedure__Group__7 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9654:2: rule__AstProcedure__Group__6__Impl rule__AstProcedure__Group__7\n {\n pushFollow(FOLLOW_rule__AstProcedure__Group__6__Impl_in_rule__AstProcedure__Group__619765);\n rule__AstProcedure__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstProcedure__Group__7_in_rule__AstProcedure__Group__619768);\n rule__AstProcedure__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1105:1: ( rule__Empresa__Group_6__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1106:2: rule__Empresa__Group_6__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__1__Impl_in_rule__Empresa__Group_6__12159);\n rule__Empresa__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1955:1: ( rule__Categoria__Group__6__Impl rule__Categoria__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1956:2: rule__Categoria__Group__6__Impl rule__Categoria__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__6__Impl_in_rule__Categoria__Group__63839);\n rule__Categoria__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__7_in_rule__Categoria__Group__63842);\n rule__Categoria__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7205:1: ( rule__Constraint__Group__7__Impl rule__Constraint__Group__8 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7206:2: rule__Constraint__Group__7__Impl rule__Constraint__Group__8\n {\n pushFollow(FOLLOW_rule__Constraint__Group__7__Impl_in_rule__Constraint__Group__714529);\n rule__Constraint__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__8_in_rule__Constraint__Group__714532);\n rule__Constraint__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12508:1: ( rule__AstAction__Group__6__Impl rule__AstAction__Group__7 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12509:2: rule__AstAction__Group__6__Impl rule__AstAction__Group__7\n {\n pushFollow(FOLLOW_rule__AstAction__Group__6__Impl_in_rule__AstAction__Group__625383);\n rule__AstAction__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group__7_in_rule__AstAction__Group__625386);\n rule__AstAction__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7424:1: ( rule__XIfExpression__Group_6__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7425:2: rule__XIfExpression__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1__Impl_in_rule__XIfExpression__Group_6__115066);\n rule__XIfExpression__Group_6__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1504:1: ( ( ( rule__Language__Group_4__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1506:1: ( rule__Language__Group_4__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_4()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:1: ( rule__Language__Group_4__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==15) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:2: rule__Language__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0_in_rule__Language__Group__4__Impl2944);\n rule__Language__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7664:1: ( rule__AstActor__Group__6__Impl rule__AstActor__Group__7 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7665:2: rule__AstActor__Group__6__Impl rule__AstActor__Group__7\n {\n pushFollow(FOLLOW_rule__AstActor__Group__6__Impl_in_rule__AstActor__Group__615839);\n rule__AstActor__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstActor__Group__7_in_rule__AstActor__Group__615842);\n rule__AstActor__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_7__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13047:1: ( rule__AstAction__Group_7__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13048:2: rule__AstAction__Group_7__2__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_7__2__Impl_in_rule__AstAction__Group_7__226443);\n rule__AstAction__Group_7__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10829:1: ( rule__XIfExpression__Group__6__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10830:2: rule__XIfExpression__Group__6__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XIfExpression__Group__6__Impl_in_rule__XIfExpression__Group__622163);\r\n rule__XIfExpression__Group__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Track__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2237:1: ( ( '}' ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2238:1: ( '}' )\n {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2238:1: ( '}' )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2239:1: '}'\n {\n before(grammarAccess.getTrackAccess().getRightCurlyBracketKeyword_6()); \n match(input,36,FOLLOW_36_in_rule__Track__Group__6__Impl4598); \n after(grammarAccess.getTrackAccess().getRightCurlyBracketKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7393:1: ( rule__XIfExpression__Group_6__0__Impl rule__XIfExpression__Group_6__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7394:2: rule__XIfExpression__Group_6__0__Impl rule__XIfExpression__Group_6__1\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__0__Impl_in_rule__XIfExpression__Group_6__015002);\n rule__XIfExpression__Group_6__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1_in_rule__XIfExpression__Group_6__015005);\n rule__XIfExpression__Group_6__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12892:1: ( rule__AstAction__Group_6__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12893:2: rule__AstAction__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__1__Impl_in_rule__AstAction__Group_6__126136);\n rule__AstAction__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1274:1: ( ( 'country' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1275:1: ( 'country' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1275:1: ( 'country' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1276:1: 'country'\n {\n before(grammarAccess.getAddress_ImplAccess().getCountryKeyword_6()); \n match(input,20,FollowSets000.FOLLOW_20_in_rule__Address_Impl__Group__6__Impl2500); \n after(grammarAccess.getAddress_ImplAccess().getCountryKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:710:1: ( rule__Empresa__Group__8__Impl rule__Empresa__Group__9 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:711:2: rule__Empresa__Group__8__Impl rule__Empresa__Group__9\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__8__Impl_in_rule__Empresa__Group__81402);\n rule__Empresa__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__9_in_rule__Empresa__Group__81405);\n rule__Empresa__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7693:1: ( rule__AstActor__Group__7__Impl rule__AstActor__Group__8 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7694:2: rule__AstActor__Group__7__Impl rule__AstActor__Group__8\n {\n pushFollow(FOLLOW_rule__AstActor__Group__7__Impl_in_rule__AstActor__Group__715900);\n rule__AstActor__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstActor__Group__8_in_rule__AstActor__Group__715903);\n rule__AstActor__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6471:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // InternalDroneScript.g:6472:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10332:1: ( rule__XIfExpression__Group__6__Impl )\r\n // InternalDroneScript.g:10333:2: rule__XIfExpression__Group__6__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_7__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13058:1: ( ( ( rule__AstAction__Group_7_2__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13059:1: ( ( rule__AstAction__Group_7_2__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13059:1: ( ( rule__AstAction__Group_7_2__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13060:1: ( rule__AstAction__Group_7_2__0 )*\n {\n before(grammarAccess.getAstActionAccess().getGroup_7_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13061:1: ( rule__AstAction__Group_7_2__0 )*\n loop108:\n do {\n int alt108=2;\n int LA108_0 = input.LA(1);\n\n if ( (LA108_0==62) ) {\n alt108=1;\n }\n\n\n switch (alt108) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13061:2: rule__AstAction__Group_7_2__0\n \t {\n \t pushFollow(FOLLOW_rule__AstAction__Group_7_2__0_in_rule__AstAction__Group_7__2__Impl26470);\n \t rule__AstAction__Group_7_2__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop108;\n }\n } while (true);\n\n after(grammarAccess.getAstActionAccess().getGroup_7_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3268:1: ( rule__Atributo__Group_6__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3269:2: rule__Atributo__Group_6__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Atributo__Group_6__1__Impl_in_rule__Atributo__Group_6__16406);\n rule__Atributo__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RootElementType__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:494:1: ( rule__RootElementType__Group__6__Impl rule__RootElementType__Group__7 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:495:2: rule__RootElementType__Group__6__Impl rule__RootElementType__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__RootElementType__Group__6__Impl_in_rule__RootElementType__Group__6963);\n rule__RootElementType__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__RootElementType__Group__7_in_rule__RootElementType__Group__6966);\n rule__RootElementType__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8511:1: ( rule__AstFunction__Group__6__Impl rule__AstFunction__Group__7 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8512:2: rule__AstFunction__Group__6__Impl rule__AstFunction__Group__7\n {\n pushFollow(FOLLOW_rule__AstFunction__Group__6__Impl_in_rule__AstFunction__Group__617516);\n rule__AstFunction__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstFunction__Group__7_in_rule__AstFunction__Group__617519);\n rule__AstFunction__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1411:1: ( rule__Catalogo__Group__7__Impl rule__Catalogo__Group__8 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1412:2: rule__Catalogo__Group__7__Impl rule__Catalogo__Group__8\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__7__Impl_in_rule__Catalogo__Group__72773);\n rule__Catalogo__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__8_in_rule__Catalogo__Group__72776);\n rule__Catalogo__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:244:1: ( rule__Input__Group__4__Impl )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:245:2: rule__Input__Group__4__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__4__Impl_in_rule__Input__Group__4434);\r\n rule__Input__Group__4__Impl();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1333:1: ( ( '}' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1334:1: ( '}' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1334:1: ( '}' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1335:1: '}'\n {\n before(grammarAccess.getAddress_ImplAccess().getRightCurlyBracketKeyword_8()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__Address_Impl__Group__8__Impl2619); \n after(grammarAccess.getAddress_ImplAccess().getRightCurlyBracketKeyword_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group_7__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2220:1: ( rule__Categoria__Group_7__0__Impl rule__Categoria__Group_7__1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2221:2: rule__Categoria__Group_7__0__Impl rule__Categoria__Group_7__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group_7__0__Impl_in_rule__Categoria__Group_7__04347);\n rule__Categoria__Group_7__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group_7__1_in_rule__Categoria__Group_7__04350);\n rule__Categoria__Group_7__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_6__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9987:1: ( ( ( rule__AstProcedure__Group_6_2__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9988:1: ( ( rule__AstProcedure__Group_6_2__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9988:1: ( ( rule__AstProcedure__Group_6_2__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9989:1: ( rule__AstProcedure__Group_6_2__0 )*\n {\n before(grammarAccess.getAstProcedureAccess().getGroup_6_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9990:1: ( rule__AstProcedure__Group_6_2__0 )*\n loop83:\n do {\n int alt83=2;\n int LA83_0 = input.LA(1);\n\n if ( (LA83_0==62) ) {\n alt83=1;\n }\n\n\n switch (alt83) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9990:2: rule__AstProcedure__Group_6_2__0\n \t {\n \t pushFollow(FOLLOW_rule__AstProcedure__Group_6_2__0_in_rule__AstProcedure__Group_6__2__Impl20422);\n \t rule__AstProcedure__Group_6_2__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop83;\n }\n } while (true);\n\n after(grammarAccess.getAstProcedureAccess().getGroup_6_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_6__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9976:1: ( rule__AstProcedure__Group_6__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9977:2: rule__AstProcedure__Group_6__2__Impl\n {\n pushFollow(FOLLOW_rule__AstProcedure__Group_6__2__Impl_in_rule__AstProcedure__Group_6__220395);\n rule__AstProcedure__Group_6__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12537:1: ( rule__AstAction__Group__7__Impl rule__AstAction__Group__8 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12538:2: rule__AstAction__Group__7__Impl rule__AstAction__Group__8\n {\n pushFollow(FOLLOW_rule__AstAction__Group__7__Impl_in_rule__AstAction__Group__725444);\n rule__AstAction__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group__8_in_rule__AstAction__Group__725447);\n rule__AstAction__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12955:1: ( rule__AstAction__Group_6_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12956:2: rule__AstAction__Group_6_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6_1__1__Impl_in_rule__AstAction__Group_6_1__126260);\n rule__AstAction__Group_6_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7362:1: ( ( ( rule__XIfExpression__Group_6__0 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7363:1: ( ( rule__XIfExpression__Group_6__0 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7363:1: ( ( rule__XIfExpression__Group_6__0 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7364:1: ( rule__XIfExpression__Group_6__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXIfExpressionAccess().getGroup_6()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7365:1: ( rule__XIfExpression__Group_6__0 )?\n int alt48=2;\n int LA48_0 = input.LA(1);\n\n if ( (LA48_0==46) ) {\n int LA48_1 = input.LA(2);\n\n if ( (synpred69_InternalInstances()) ) {\n alt48=1;\n }\n }\n switch (alt48) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7365:2: rule__XIfExpression__Group_6__0\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__0_in_rule__XIfExpression__Group__6__Impl14957);\n rule__XIfExpression__Group_6__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXIfExpressionAccess().getGroup_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1472:1: ( rule__Enum__Group__8__Impl rule__Enum__Group__9 )\n // InternalMyDsl.g:1473:2: rule__Enum__Group__8__Impl rule__Enum__Group__9\n {\n pushFollow(FOLLOW_16);\n rule__Enum__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:654:1: ( ( ( rule__Definition__OutputAssignment_6 ) ) )\n // InternalWh.g:655:1: ( ( rule__Definition__OutputAssignment_6 ) )\n {\n // InternalWh.g:655:1: ( ( rule__Definition__OutputAssignment_6 ) )\n // InternalWh.g:656:2: ( rule__Definition__OutputAssignment_6 )\n {\n before(grammarAccess.getDefinitionAccess().getOutputAssignment_6()); \n // InternalWh.g:657:2: ( rule__Definition__OutputAssignment_6 )\n // InternalWh.g:657:3: rule__Definition__OutputAssignment_6\n {\n pushFollow(FOLLOW_2);\n rule__Definition__OutputAssignment_6();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getOutputAssignment_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Producto__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2465:1: ( rule__Producto__Group__6__Impl rule__Producto__Group__7 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2466:2: rule__Producto__Group__6__Impl rule__Producto__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Producto__Group__6__Impl_in_rule__Producto__Group__64840);\n rule__Producto__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Producto__Group__7_in_rule__Producto__Group__64843);\n rule__Producto__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10343:1: ( ( ( rule__XIfExpression__Group_6__0 )? ) )\r\n // InternalDroneScript.g:10344:1: ( ( rule__XIfExpression__Group_6__0 )? )\r\n {\r\n // InternalDroneScript.g:10344:1: ( ( rule__XIfExpression__Group_6__0 )? )\r\n // InternalDroneScript.g:10345:2: ( rule__XIfExpression__Group_6__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXIfExpressionAccess().getGroup_6()); \r\n }\r\n // InternalDroneScript.g:10346:2: ( rule__XIfExpression__Group_6__0 )?\r\n int alt83=2;\r\n int LA83_0 = input.LA(1);\r\n\r\n if ( (LA83_0==78) ) {\r\n int LA83_1 = input.LA(2);\r\n\r\n if ( (synpred132_InternalDroneScript()) ) {\r\n alt83=1;\r\n }\r\n }\r\n switch (alt83) {\r\n case 1 :\r\n // InternalDroneScript.g:10346:3: rule__XIfExpression__Group_6__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group_6__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXIfExpressionAccess().getGroup_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XIfExpression__Group__6__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10840:1: ( ( ( rule__XIfExpression__Group_6__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10841:1: ( ( rule__XIfExpression__Group_6__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10841:1: ( ( rule__XIfExpression__Group_6__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10842:1: ( rule__XIfExpression__Group_6__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXIfExpressionAccess().getGroup_6()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10843:1: ( rule__XIfExpression__Group_6__0 )?\r\n int alt71=2;\r\n int LA71_0 = input.LA(1);\r\n\r\n if ( (LA71_0==108) ) {\r\n int LA71_1 = input.LA(2);\r\n\r\n if ( (synpred128_InternalFin()) ) {\r\n alt71=1;\r\n }\r\n }\r\n switch (alt71) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10843:2: rule__XIfExpression__Group_6__0\r\n {\r\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__0_in_rule__XIfExpression__Group__6__Impl22190);\r\n rule__XIfExpression__Group_6__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXIfExpressionAccess().getGroup_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_7_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13112:1: ( rule__AstAction__Group_7_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13113:2: rule__AstAction__Group_7_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_7_2__1__Impl_in_rule__AstAction__Group_7_2__126569);\n rule__AstAction__Group_7_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4337:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4338:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__09000);\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__13() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1607:1: ( rule__Enum__Group__13__Impl )\n // InternalMyDsl.g:1608:2: rule__Enum__Group__13__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group__13__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.77456003", "0.7387405", "0.72941923", "0.6998393", "0.69666547", "0.6580396", "0.6435407", "0.6398695", "0.63846475", "0.63150984", "0.6288751", "0.62245035", "0.6222728", "0.6219078", "0.6215618", "0.62151724", "0.62098026", "0.6189429", "0.61488193", "0.614241", "0.6115951", "0.6074077", "0.60736746", "0.60732126", "0.6066091", "0.6051862", "0.60427487", "0.6030337", "0.6016309", "0.6004876", "0.600163", "0.59989667", "0.5983794", "0.5978318", "0.59711874", "0.596797", "0.5967494", "0.5939661", "0.5917443", "0.5908869", "0.5907506", "0.5906619", "0.5897096", "0.58876234", "0.58868986", "0.58830595", "0.58749866", "0.5870522", "0.5858995", "0.58508", "0.5850105", "0.5847183", "0.5830549", "0.5828425", "0.58227915", "0.5820227", "0.5818091", "0.5814898", "0.580935", "0.57997304", "0.57962734", "0.5793784", "0.57812005", "0.5778049", "0.5775866", "0.5771798", "0.57706183", "0.57638335", "0.57621306", "0.57580686", "0.5755534", "0.57548857", "0.5747855", "0.5747277", "0.5746889", "0.57462597", "0.57446563", "0.57424295", "0.574218", "0.57418674", "0.5738397", "0.5731576", "0.57314426", "0.5727922", "0.5725497", "0.57250834", "0.5724949", "0.57246244", "0.5721735", "0.57208365", "0.57192206", "0.571762", "0.5717464", "0.57139754", "0.5709485", "0.57033014", "0.5701838", "0.569961", "0.56958824", "0.5694334" ]
0.76082647
1
$ANTLR end "rule__Model__Group__7" $ANTLR start "rule__Model__Group__7__Impl" InternalCsv.g:1068:1: rule__Model__Group__7__Impl : ( '}' ) ;
public final void rule__Model__Group__7__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:1072:1: ( ( '}' ) ) // InternalCsv.g:1073:1: ( '}' ) { // InternalCsv.g:1073:1: ( '}' ) // InternalCsv.g:1074:2: '}' { if ( state.backtracking==0 ) { before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); } match(input,17,FOLLOW_2); if (state.failed) return ; if ( state.backtracking==0 ) { after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1333:1: ( ( '}' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1334:1: ( '}' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1334:1: ( '}' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1335:1: '}'\n {\n before(grammarAccess.getAddress_ImplAccess().getRightCurlyBracketKeyword_8()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__Address_Impl__Group__8__Impl2619); \n after(grammarAccess.getAddress_ImplAccess().getRightCurlyBracketKeyword_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:643:1: ( rule__Definition__Group__6__Impl )\n // InternalWh.g:644:2: rule__Definition__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:595:1: ( ( '}' ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:597:1: '}'\n {\n before(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Activity__Group__4__Impl1187); \n after(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2237:1: ( ( '}' ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2238:1: ( '}' )\n {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2238:1: ( '}' )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2239:1: '}'\n {\n before(grammarAccess.getTrackAccess().getRightCurlyBracketKeyword_6()); \n match(input,36,FOLLOW_36_in_rule__Track__Group__6__Impl4598); \n after(grammarAccess.getTrackAccess().getRightCurlyBracketKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1457:1: ( ( '}' ) )\n // InternalMyDsl.g:1458:1: ( '}' )\n {\n // InternalMyDsl.g:1458:1: ( '}' )\n // InternalMyDsl.g:1459:2: '}'\n {\n before(grammarAccess.getEnumAccess().getRightCurlyBracketKeyword_7()); \n match(input,18,FOLLOW_2); \n after(grammarAccess.getEnumAccess().getRightCurlyBracketKeyword_7()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Midi__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1105:1: ( ( '}' ) )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1106:1: ( '}' )\n {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1106:1: ( '}' )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:1107:1: '}'\n {\n before(grammarAccess.getMidiAccess().getRightCurlyBracketKeyword_4()); \n match(input,36,FOLLOW_36_in_rule__Midi__Group__4__Impl2375); \n after(grammarAccess.getMidiAccess().getRightCurlyBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19207:1: ( ( 'end' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19209:1: 'end'\n {\n before(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n match(input,52,FOLLOW_52_in_rule__AstExpressionIf__Group__6__Impl38587); \n after(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpressionIf__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19196:1: ( rule__AstExpressionIf__Group__6__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19197:2: rule__AstExpressionIf__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__AstExpressionIf__Group__6__Impl_in_rule__AstExpressionIf__Group__638559);\n rule__AstExpressionIf__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:978:1: ( rule__BTable__Group__6__Impl )\n // InternalBSQL2Java.g:979:2: rule__BTable__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group_7__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1659:1: ( ( ',' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1660:1: ( ',' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1660:1: ( ',' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1661:1: ','\n {\n before(grammarAccess.getCatalogoAccess().getCommaKeyword_7_0()); \n match(input,26,FollowSets000.FOLLOW_26_in_rule__Catalogo__Group_7__0__Impl3252); \n after(grammarAccess.getCatalogoAccess().getCommaKeyword_7_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group_7__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2232:1: ( ( ',' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2233:1: ( ',' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2234:1: ','\n {\n before(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n match(input,26,FollowSets000.FOLLOW_26_in_rule__Categoria__Group_7__0__Impl4378); \n after(grammarAccess.getCategoriaAccess().getCommaKeyword_7_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Atributo__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3013:1: ( ( '}' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3014:1: ( '}' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3014:1: ( '}' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:3015:1: '}'\n {\n before(grammarAccess.getAtributoAccess().getRightCurlyBracketKeyword_7()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Atributo__Group__7__Impl5928); \n after(grammarAccess.getAtributoAccess().getRightCurlyBracketKeyword_7()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1206:1: ( ( ')' ) )\n // InternalCsv.g:1207:1: ( ')' )\n {\n // InternalCsv.g:1207:1: ( ')' )\n // InternalCsv.g:1208:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1661:1: ( rule__Enum__Group_6__1__Impl )\n // InternalMyDsl.g:1662:2: rule__Enum__Group_6__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:454:1: ( rule__Program__Group__3__Impl )\n // InternalWh.g:455:2: rule__Program__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Program__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7351:1: ( rule__XIfExpression__Group__6__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7352:2: rule__XIfExpression__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group__6__Impl_in_rule__XIfExpression__Group__614930);\n rule__XIfExpression__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:664:1: ( ( ( rule__Empresa__Group_6__0 )? ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:665:1: ( ( rule__Empresa__Group_6__0 )? )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:666:1: ( rule__Empresa__Group_6__0 )?\n {\n before(grammarAccess.getEmpresaAccess().getGroup_6()); \n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:1: ( rule__Empresa__Group_6__0 )?\n int alt6=2;\n int LA6_0 = input.LA(1);\n\n if ( (LA6_0==21) ) {\n alt6=1;\n }\n switch (alt6) {\n case 1 :\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:667:2: rule__Empresa__Group_6__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__0_in_rule__Empresa__Group__6__Impl1310);\n rule__Empresa__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getEmpresaAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6471:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // InternalDroneScript.g:6472:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Empresa__Group__10__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:781:1: ( ( '}' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:782:1: ( '}' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:782:1: ( '}' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:783:1: '}'\n {\n before(grammarAccess.getEmpresaAccess().getRightCurlyBracketKeyword_10()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Empresa__Group__10__Impl1552); \n after(grammarAccess.getEmpresaAccess().getRightCurlyBracketKeyword_10()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2226:1: ( rule__Track__Group__6__Impl )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2227:2: rule__Track__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__Track__Group__6__Impl_in_rule__Track__Group__64570);\n rule__Track__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2025:1: ( ( '}' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2026:1: ( '}' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2026:1: ( '}' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2027:1: '}'\n {\n before(grammarAccess.getCategoriaAccess().getRightCurlyBracketKeyword_8()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Categoria__Group__8__Impl3991); \n after(grammarAccess.getCategoriaAccess().getRightCurlyBracketKeyword_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstGenerator__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19709:1: ( rule__AstGenerator__Group__3__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19710:2: rule__AstGenerator__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__AstGenerator__Group__3__Impl_in_rule__AstGenerator__Group__339561);\n rule__AstGenerator__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6525:1: ( rule__XRelationalExpression__Group_1_0_0_0__1__Impl )\r\n // InternalDroneScript.g:6526:2: rule__XRelationalExpression__Group_1_0_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7424:1: ( rule__XIfExpression__Group_6__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:7425:2: rule__XIfExpression__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1__Impl_in_rule__XIfExpression__Group_6__115066);\n rule__XIfExpression__Group_6__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_6_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10022:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10023:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10023:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10024:1: ','\n {\n before(grammarAccess.getAstProcedureAccess().getCommaKeyword_6_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstProcedure__Group_6_2__0__Impl20490); \n after(grammarAccess.getAstProcedureAccess().getCommaKeyword_6_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__VoidOperation__Group_6_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2436:1: ( rule__VoidOperation__Group_6_1__1__Impl )\n // InternalBSQL2Java.g:2437:2: rule__VoidOperation__Group_6_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__VoidOperation__Group_6_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:648:1: ( rule__Definition__Group_0__1__Impl )\n // InternalWh.g:649:2: rule__Definition__Group_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4337:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4338:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__09000);\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstStatementIf__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16678:1: ( rule__AstStatementIf__Group_4__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16679:2: rule__AstStatementIf__Group_4__1__Impl\n {\n pushFollow(FOLLOW_rule__AstStatementIf__Group_4__1__Impl_in_rule__AstStatementIf__Group_4__133597);\n rule__AstStatementIf__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_6_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10041:1: ( rule__AstProcedure__Group_6_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:10042:2: rule__AstProcedure__Group_6_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstProcedure__Group_6_2__1__Impl_in_rule__AstProcedure__Group_6_2__120521);\n rule__AstProcedure__Group_6_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:562:1: ( rule__Definition__Group__3__Impl rule__Definition__Group__4 )\n // InternalWh.g:563:2: rule__Definition__Group__3__Impl rule__Definition__Group__4\n {\n pushFollow(FOLLOW_8);\n rule__Definition__Group__3__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__4();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:244:1: ( rule__Input__Group__4__Impl )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:245:2: rule__Input__Group__4__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__4__Impl_in_rule__Input__Group__4434);\r\n rule__Input__Group__4__Impl();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Output__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:805:1: ( rule__Output__Group__1__Impl )\n // InternalWh.g:806:2: rule__Output__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:344:1: ( rule__Program__Group__0__Impl rule__Program__Group__1 )\n // InternalWh.g:345:2: rule__Program__Group__0__Impl rule__Program__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Program__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:373:1: ( rule__Program__Group__0__Impl rule__Program__Group__1 )\n // InternalWh.g:374:2: rule__Program__Group__0__Impl rule__Program__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Program__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6606:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\r\n // InternalDroneScript.g:6607:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Enum__Group__13() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1607:1: ( rule__Enum__Group__13__Impl )\n // InternalMyDsl.g:1608:2: rule__Enum__Group__13__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group__13__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__9__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2055:1: ( ( '}' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2056:1: ( '}' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2056:1: ( '}' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2057:1: '}'\n {\n before(grammarAccess.getCategoriaAccess().getRightCurlyBracketKeyword_9()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Categoria__Group__9__Impl4050); \n after(grammarAccess.getCategoriaAccess().getRightCurlyBracketKeyword_9()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:540:1: ( rule__Definition__Group__0__Impl rule__Definition__Group__1 )\n // InternalWh.g:541:2: rule__Definition__Group__0__Impl rule__Definition__Group__1\n {\n pushFollow(FOLLOW_9);\n rule__Definition__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7226:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7227:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__015074);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__VoidOperation__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2382:1: ( rule__VoidOperation__Group_6__1__Impl )\n // InternalBSQL2Java.g:2383:2: rule__VoidOperation__Group_6__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__VoidOperation__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__13__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1618:1: ( ( '}' ) )\n // InternalMyDsl.g:1619:1: ( '}' )\n {\n // InternalMyDsl.g:1619:1: ( '}' )\n // InternalMyDsl.g:1620:2: '}'\n {\n before(grammarAccess.getEnumAccess().getRightCurlyBracketKeyword_13()); \n match(input,18,FOLLOW_2); \n after(grammarAccess.getEnumAccess().getRightCurlyBracketKeyword_13()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6660:1: ( rule__XRelationalExpression__Group_1_1_0_0__1__Impl )\r\n // InternalDroneScript.g:6661:2: rule__XRelationalExpression__Group_1_1_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_1_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Input__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1676:1: ( rule__Input__Group__4__Impl )\n // InternalBrowser.g:1677:2: rule__Input__Group__4__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1105:1: ( rule__Empresa__Group_6__1__Impl )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1106:2: rule__Empresa__Group_6__1__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group_6__1__Impl_in_rule__Empresa__Group_6__12159);\n rule__Empresa__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:481:1: ( rule__Definition__Group__0__Impl rule__Definition__Group__1 )\n // InternalWh.g:482:2: rule__Definition__Group__0__Impl rule__Definition__Group__1\n {\n pushFollow(FOLLOW_7);\n rule__Definition__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_6__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9976:1: ( rule__AstProcedure__Group_6__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9977:2: rule__AstProcedure__Group_6__2__Impl\n {\n pushFollow(FOLLOW_rule__AstProcedure__Group_6__2__Impl_in_rule__AstProcedure__Group_6__220395);\n rule__AstProcedure__Group_6__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1816:1: ( rule__JvmTypeReference__Group_0__1__Impl )\n // InternalCsv.g:1817:2: rule__JvmTypeReference__Group_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10332:1: ( rule__XIfExpression__Group__6__Impl )\r\n // InternalDroneScript.g:10333:2: rule__XIfExpression__Group__6__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XIfExpression__Group__6() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10829:1: ( rule__XIfExpression__Group__6__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10830:2: rule__XIfExpression__Group__6__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XIfExpression__Group__6__Impl_in_rule__XIfExpression__Group__622163);\r\n rule__XIfExpression__Group__6__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Program__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:405:1: ( rule__Program__Group__2__Impl )\n // InternalWh.g:406:2: rule__Program__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Program__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3517:1: ( rule__FinModelFile__Group_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3518:2: rule__FinModelFile__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1__Impl_in_rule__FinModelFile__Group_0__17784);\r\n rule__FinModelFile__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__InterfaceType__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:6739:1: ( ( '}' ) )\r\n // InternalGo.g:6740:1: ( '}' )\r\n {\r\n // InternalGo.g:6740:1: ( '}' )\r\n // InternalGo.g:6741:2: '}'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getInterfaceTypeAccess().getRightCurlyBracketKeyword_4()); \r\n }\r\n match(input,58,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getInterfaceTypeAccess().getRightCurlyBracketKeyword_4()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Updates__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5886:1: ( ( '}' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5887:1: ( '}' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5887:1: ( '}' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:5888:1: '}'\n {\n before(grammarAccess.getUpdatesAccess().getRightCurlyBracketKeyword_4()); \n match(input,39,FOLLOW_39_in_rule__Updates__Group__4__Impl11558); \n after(grammarAccess.getUpdatesAccess().getRightCurlyBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3301:1: ( rule__QualifiedName__Group_1__1__Impl )\n // InternalCsv.g:3302:2: rule__QualifiedName__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:552:1: ( ( ( rule__Definition__Group_0__0 ) ) )\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n {\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n // InternalWh.g:554:2: ( rule__Definition__Group_0__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup_0()); \n // InternalWh.g:555:2: ( rule__Definition__Group_0__0 )\n // InternalWh.g:555:3: rule__Definition__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1153:1: ( ( '(' ) )\n // InternalCsv.g:1154:1: ( '(' )\n {\n // InternalCsv.g:1154:1: ( '(' )\n // InternalCsv.g:1155:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Producto__Group_7__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2742:1: ( ( ',' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2743:1: ( ',' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2743:1: ( ',' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2744:1: ','\n {\n before(grammarAccess.getProductoAccess().getCommaKeyword_7_0()); \n match(input,26,FollowSets000.FOLLOW_26_in_rule__Producto__Group_7__0__Impl5379); \n after(grammarAccess.getProductoAccess().getCommaKeyword_7_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3247:1: ( rule__QualifiedName__Group__1__Impl )\n // InternalCsv.g:3248:2: rule__QualifiedName__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10902:1: ( rule__XIfExpression__Group_6__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:10903:2: rule__XIfExpression__Group_6__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XIfExpression__Group_6__1__Impl_in_rule__XIfExpression__Group_6__122299);\r\n rule__XIfExpression__Group_6__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1843:1: ( rule__JvmTypeReference__Group_0_1__0__Impl )\n // InternalCsv.g:1844:2: rule__JvmTypeReference__Group_0_1__0__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:859:1: ( rule__Output__Group_1__1__Impl )\n // InternalWh.g:860:2: rule__Output__Group_1__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__ExprSwitchStmt__Group__6__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:10249:1: ( ( '}' ) )\r\n // InternalGo.g:10250:1: ( '}' )\r\n {\r\n // InternalGo.g:10250:1: ( '}' )\r\n // InternalGo.g:10251:2: '}'\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getExprSwitchStmtAccess().getRightCurlyBracketKeyword_6()); \r\n }\r\n match(input,58,FOLLOW_2); if (state.failed) return ;\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getExprSwitchStmtAccess().getRightCurlyBracketKeyword_6()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4493:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4494:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0__09304);\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XIfExpression__Group_6__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:10386:1: ( rule__XIfExpression__Group_6__1__Impl )\r\n // InternalDroneScript.g:10387:2: rule__XIfExpression__Group_6__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XIfExpression__Group_6__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstOutputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14887:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14888:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14889:1: ','\n {\n before(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstOutputPattern__Group_3__0__Impl30078); \n after(grammarAccess.getAstOutputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1262:1: ( rule__Address_Impl__Group__6__Impl rule__Address_Impl__Group__7 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1263:2: rule__Address_Impl__Group__6__Impl rule__Address_Impl__Group__7\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__6__Impl_in_rule__Address_Impl__Group__62469);\n rule__Address_Impl__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__7_in_rule__Address_Impl__Group__62472);\n rule__Address_Impl__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RangeClause__Group_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:12047:1: ( rule__RangeClause__Group_0_0__1__Impl )\r\n // InternalGo.g:12048:2: rule__RangeClause__Group_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__RangeClause__Group_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Language__Group__5__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1532:1: ( ( '}' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1533:1: ( '}' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1534:1: '}'\n {\n before(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__Language__Group__5__Impl3003); \n after(grammarAccess.getLanguageAccess().getRightCurlyBracketKeyword_5()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__InsertSQL__Group_2_7__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1209:1: ( ( ',' ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1210:1: ( ',' )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1210:1: ( ',' )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1211:1: ','\n {\n before(grammarAccess.getInsertSQLAccess().getCommaKeyword_2_7_1()); \n match(input,23,FOLLOW_23_in_rule__InsertSQL__Group_2_7__1__Impl2416); \n after(grammarAccess.getInsertSQLAccess().getCommaKeyword_2_7_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstPackage__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3560:1: ( ( ';' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3561:1: ( ';' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3561:1: ( ';' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:3562:1: ';'\n {\n before(grammarAccess.getAstPackageAccess().getSemicolonKeyword_3()); \n match(input,49,FOLLOW_49_in_rule__AstPackage__Group__3__Impl7758); \n after(grammarAccess.getAstPackageAccess().getSemicolonKeyword_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1897:1: ( rule__JvmTypeReference__Group_0_1_0__1__Impl )\n // InternalCsv.g:1898:2: rule__JvmTypeReference__Group_0_1_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1452:1: ( ( '}' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1453:1: ( '}' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1453:1: ( '}' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1454:1: '}'\n {\n before(grammarAccess.getCatalogoAccess().getRightCurlyBracketKeyword_8()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Catalogo__Group__8__Impl2865); \n after(grammarAccess.getCatalogoAccess().getRightCurlyBracketKeyword_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1767:1: ( rule__Column__Group__3__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1768:2: rule__Column__Group__3__Impl\n {\n pushFollow(FOLLOW_rule__Column__Group__3__Impl_in_rule__Column__Group__33499);\n rule__Column__Group__3__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmParameterizedTypeReference__Group_1_4_0_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:2626:1: ( rule__JvmParameterizedTypeReference__Group_1_4_0_0__1__Impl )\n // InternalCsv.g:2627:2: rule__JvmParameterizedTypeReference__Group_1_4_0_0__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmParameterizedTypeReference__Group_1_4_0_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstProcedure__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9865:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9866:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9866:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:9867:1: ','\n {\n before(grammarAccess.getAstProcedureAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstProcedure__Group_4_1__0__Impl20181); \n after(grammarAccess.getAstProcedureAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:945:1: ( rule__Output__Group_0__2__Impl )\n // InternalWh.g:946:2: rule__Output__Group_0__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Output__Group_0__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1274:1: ( ( 'country' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1275:1: ( 'country' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1275:1: ( 'country' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1276:1: 'country'\n {\n before(grammarAccess.getAddress_ImplAccess().getCountryKeyword_6()); \n match(input,20,FollowSets000.FOLLOW_20_in_rule__Address_Impl__Group__6__Impl2500); \n after(grammarAccess.getAddress_ImplAccess().getCountryKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:255:1: ( ( '.' ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:256:1: ( '.' )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:256:1: ( '.' )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:257:1: '.'\r\n {\r\n before(grammarAccess.getInputAccess().getFullStopKeyword_4()); \r\n match(input,9,FOLLOW_9_in_rule__Input__Group__4__Impl462); \r\n after(grammarAccess.getInputAccess().getFullStopKeyword_4()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstInputPattern__Group_3__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14509:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14510:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:14511:1: ','\n {\n before(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n match(input,62,FOLLOW_62_in_rule__AstInputPattern__Group_3__0__Impl29333); \n after(grammarAccess.getAstInputPatternAccess().getCommaKeyword_3_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.72940016", "0.68810266", "0.6700951", "0.6629163", "0.66023034", "0.65929896", "0.65766394", "0.65753394", "0.6573067", "0.65530145", "0.64523757", "0.6356733", "0.63089216", "0.62800646", "0.6241038", "0.6228552", "0.61910725", "0.6174841", "0.6165009", "0.6163894", "0.6155402", "0.6131058", "0.61303663", "0.61283904", "0.61246425", "0.61212766", "0.6104762", "0.60897624", "0.608812", "0.60840434", "0.6075139", "0.6071661", "0.60644704", "0.6052844", "0.60522896", "0.6045117", "0.6036477", "0.6022598", "0.6021978", "0.60156226", "0.6011888", "0.59975356", "0.5993433", "0.59898514", "0.5944888", "0.59391385", "0.5925455", "0.5916165", "0.5914891", "0.59089243", "0.5907851", "0.59042823", "0.590287", "0.59021914", "0.5896582", "0.5876422", "0.5876289", "0.58749366", "0.587355", "0.5872666", "0.5872365", "0.5870935", "0.5866685", "0.5859309", "0.5859164", "0.5858383", "0.58583474", "0.5854702", "0.5853688", "0.58500826", "0.5849536", "0.58454937", "0.5841318", "0.58397454", "0.5839614", "0.58389384", "0.58380616", "0.5836041", "0.5830086", "0.58296704", "0.582443", "0.5823235", "0.5820266", "0.58198446", "0.5814283", "0.5808093", "0.5806985", "0.5805224", "0.58026326", "0.57973266", "0.57882977", "0.5785789", "0.5783516", "0.57833844", "0.57826895", "0.5782088", "0.5781444", "0.5779256", "0.57717276", "0.5771174" ]
0.78130966
0
$ANTLR end "rule__Model__Group__7__Impl" $ANTLR start "rule__Model__Group__8" InternalCsv.g:1083:1: rule__Model__Group__8 : rule__Model__Group__8__Impl ;
public final void rule__Model__Group__8() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl ) // InternalCsv.g:1088:2: rule__Model__Group__8__Impl { pushFollow(FOLLOW_2); rule__Model__Group__8__Impl(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1472:1: ( rule__Enum__Group__8__Impl rule__Enum__Group__9 )\n // InternalMyDsl.g:1473:2: rule__Enum__Group__8__Impl rule__Enum__Group__9\n {\n pushFollow(FOLLOW_16);\n rule__Enum__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1322:1: ( rule__Address_Impl__Group__8__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1323:2: rule__Address_Impl__Group__8__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__8__Impl_in_rule__Address_Impl__Group__82591);\n rule__Address_Impl__Group__8__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Empresa__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:710:1: ( rule__Empresa__Group__8__Impl rule__Empresa__Group__9 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:711:2: rule__Empresa__Group__8__Impl rule__Empresa__Group__9\n {\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__8__Impl_in_rule__Empresa__Group__81402);\n rule__Empresa__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Empresa__Group__9_in_rule__Empresa__Group__81405);\n rule__Empresa__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1445:1: ( rule__Enum__Group__7__Impl rule__Enum__Group__8 )\n // InternalMyDsl.g:1446:2: rule__Enum__Group__7__Impl rule__Enum__Group__8\n {\n pushFollow(FOLLOW_20);\n rule__Enum__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1098:1: ( ( ( rule__Model__ActionsAssignment_8 )* ) )\n // InternalCsv.g:1099:1: ( ( rule__Model__ActionsAssignment_8 )* )\n {\n // InternalCsv.g:1099:1: ( ( rule__Model__ActionsAssignment_8 )* )\n // InternalCsv.g:1100:2: ( rule__Model__ActionsAssignment_8 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getActionsAssignment_8()); \n }\n // InternalCsv.g:1101:2: ( rule__Model__ActionsAssignment_8 )*\n loop12:\n do {\n int alt12=2;\n int LA12_0 = input.LA(1);\n\n if ( (LA12_0==20||(LA12_0>=23 && LA12_0<=26)) ) {\n alt12=1;\n }\n\n\n switch (alt12) {\n \tcase 1 :\n \t // InternalCsv.g:1101:3: rule__Model__ActionsAssignment_8\n \t {\n \t pushFollow(FOLLOW_11);\n \t rule__Model__ActionsAssignment_8();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop12;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getActionsAssignment_8()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7236:1: ( rule__Constraint__Group__8__Impl rule__Constraint__Group__9 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7237:2: rule__Constraint__Group__8__Impl rule__Constraint__Group__9\n {\n pushFollow(FOLLOW_rule__Constraint__Group__8__Impl_in_rule__Constraint__Group__814591);\n rule__Constraint__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__9_in_rule__Constraint__Group__814594);\n rule__Constraint__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1333:1: ( ( '}' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1334:1: ( '}' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1334:1: ( '}' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1335:1: '}'\n {\n before(grammarAccess.getAddress_ImplAccess().getRightCurlyBracketKeyword_8()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__Address_Impl__Group__8__Impl2619); \n after(grammarAccess.getAddress_ImplAccess().getRightCurlyBracketKeyword_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2013:1: ( rule__Categoria__Group__8__Impl rule__Categoria__Group__9 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2014:2: rule__Categoria__Group__8__Impl rule__Categoria__Group__9\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__8__Impl_in_rule__Categoria__Group__83960);\n rule__Categoria__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__9_in_rule__Categoria__Group__83963);\n rule__Categoria__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12578:1: ( ( ( rule__AstAction__Group_8__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12579:1: ( ( rule__AstAction__Group_8__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12579:1: ( ( rule__AstAction__Group_8__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12580:1: ( rule__AstAction__Group_8__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_8()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12581:1: ( rule__AstAction__Group_8__0 )?\n int alt104=2;\n int LA104_0 = input.LA(1);\n\n if ( (LA104_0==63) ) {\n alt104=1;\n }\n switch (alt104) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12581:2: rule__AstAction__Group_8__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_8__0_in_rule__AstAction__Group__8__Impl25535);\n rule__AstAction__Group_8__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_8__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8898:1: ( rule__AstFunction__Group_8__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8899:2: rule__AstFunction__Group_8__2__Impl\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_8__2__Impl_in_rule__AstFunction__Group_8__218271);\n rule__AstFunction__Group_8__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8583:1: ( ( ( rule__AstFunction__Group_8__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8584:1: ( ( rule__AstFunction__Group_8__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8584:1: ( ( rule__AstFunction__Group_8__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8585:1: ( rule__AstFunction__Group_8__0 )?\n {\n before(grammarAccess.getAstFunctionAccess().getGroup_8()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8586:1: ( rule__AstFunction__Group_8__0 )?\n int alt72=2;\n int LA72_0 = input.LA(1);\n\n if ( (LA72_0==63) ) {\n alt72=1;\n }\n switch (alt72) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8586:2: rule__AstFunction__Group_8__0\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_8__0_in_rule__AstFunction__Group__8__Impl17668);\n rule__AstFunction__Group_8__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstFunctionAccess().getGroup_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:500:1: ( rule__Model__Group__2__Impl )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:501:2: rule__Model__Group__2__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__2__Impl_in_rule__Model__Group__21013);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1440:1: ( rule__Catalogo__Group__8__Impl rule__Catalogo__Group__9 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1441:2: rule__Catalogo__Group__8__Impl rule__Catalogo__Group__9\n {\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__8__Impl_in_rule__Catalogo__Group__82834);\n rule__Catalogo__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Catalogo__Group__9_in_rule__Catalogo__Group__82837);\n rule__Catalogo__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13204:1: ( rule__AstAction__Group_8__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13205:2: rule__AstAction__Group_8__2__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_8__2__Impl_in_rule__AstAction__Group_8__226752);\n rule__AstAction__Group_8__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1762:1: ( rule__SaveCSV__Group__3__Impl )\n // InternalCsv.g:1763:2: rule__SaveCSV__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__RootElementType__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:554:1: ( rule__RootElementType__Group__8__Impl )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:555:2: rule__RootElementType__Group__8__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__RootElementType__Group__8__Impl_in_rule__RootElementType__Group__81085);\n rule__RootElementType__Group__8__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_8__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8909:1: ( ( ( rule__AstFunction__Group_8_2__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8910:1: ( ( rule__AstFunction__Group_8_2__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8910:1: ( ( rule__AstFunction__Group_8_2__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8911:1: ( rule__AstFunction__Group_8_2__0 )*\n {\n before(grammarAccess.getAstFunctionAccess().getGroup_8_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8912:1: ( rule__AstFunction__Group_8_2__0 )*\n loop74:\n do {\n int alt74=2;\n int LA74_0 = input.LA(1);\n\n if ( (LA74_0==62) ) {\n alt74=1;\n }\n\n\n switch (alt74) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8912:2: rule__AstFunction__Group_8_2__0\n \t {\n \t pushFollow(FOLLOW_rule__AstFunction__Group_8_2__0_in_rule__AstFunction__Group_8__2__Impl18298);\n \t rule__AstFunction__Group_8_2__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop74;\n }\n } while (true);\n\n after(grammarAccess.getAstFunctionAccess().getGroup_8_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BSQLMachine__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:701:1: ( rule__BSQLMachine__Group__8__Impl rule__BSQLMachine__Group__9 )\n // InternalBSQL2Java.g:702:2: rule__BSQLMachine__Group__8__Impl rule__BSQLMachine__Group__9\n {\n pushFollow(FOLLOW_8);\n rule__BSQLMachine__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BSQLMachine__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7736:1: ( ( ( rule__AstActor__Group_8__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7737:1: ( ( rule__AstActor__Group_8__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7737:1: ( ( rule__AstActor__Group_8__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7738:1: ( rule__AstActor__Group_8__0 )?\n {\n before(grammarAccess.getAstActorAccess().getGroup_8()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7739:1: ( rule__AstActor__Group_8__0 )?\n int alt64=2;\n int LA64_0 = input.LA(1);\n\n if ( (LA64_0==RULE_ID||(LA64_0>=38 && LA64_0<=45)||LA64_0==58||LA64_0==81||LA64_0==91) ) {\n alt64=1;\n }\n switch (alt64) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7739:2: rule__AstActor__Group_8__0\n {\n pushFollow(FOLLOW_rule__AstActor__Group_8__0_in_rule__AstActor__Group__8__Impl15992);\n rule__AstActor__Group_8__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActorAccess().getGroup_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Konto__Group__8() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3854:1: ( rule__Konto__Group__8__Impl rule__Konto__Group__9 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3855:2: rule__Konto__Group__8__Impl rule__Konto__Group__9\r\n {\r\n pushFollow(FOLLOW_rule__Konto__Group__8__Impl_in_rule__Konto__Group__88458);\r\n rule__Konto__Group__8__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Konto__Group__9_in_rule__Konto__Group__88461);\r\n rule__Konto__Group__9();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstFunction__Group_8_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8963:1: ( rule__AstFunction__Group_8_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8964:2: rule__AstFunction__Group_8_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_8_2__1__Impl_in_rule__AstFunction__Group_8_2__118397);\n rule__AstFunction__Group_8_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_8__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5109:1: ( rule__AstNetwork__Group_8__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5110:2: rule__AstNetwork__Group_8__1__Impl\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_8__1__Impl_in_rule__AstNetwork__Group_8__110801);\n rule__AstNetwork__Group_8__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4599:1: ( ( ( rule__AstNetwork__Group_8__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4600:1: ( ( rule__AstNetwork__Group_8__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4600:1: ( ( rule__AstNetwork__Group_8__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4601:1: ( rule__AstNetwork__Group_8__0 )?\n {\n before(grammarAccess.getAstNetworkAccess().getGroup_8()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4602:1: ( rule__AstNetwork__Group_8__0 )?\n int alt42=2;\n int LA42_0 = input.LA(1);\n\n if ( (LA42_0==RULE_ID||(LA42_0>=38 && LA42_0<=45)||LA42_0==58||LA42_0==81||LA42_0==91) ) {\n alt42=1;\n }\n switch (alt42) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4602:2: rule__AstNetwork__Group_8__0\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_8__0_in_rule__AstNetwork__Group__8__Impl9809);\n rule__AstNetwork__Group_8__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstNetworkAccess().getGroup_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_8_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8944:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8945:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8945:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8946:1: ','\n {\n before(grammarAccess.getAstFunctionAccess().getCommaKeyword_8_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstFunction__Group_8_2__0__Impl18366); \n after(grammarAccess.getAstFunctionAccess().getCommaKeyword_8_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__13() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1607:1: ( rule__Enum__Group__13__Impl )\n // InternalMyDsl.g:1608:2: rule__Enum__Group__13__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group__13__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:244:1: ( rule__Input__Group__4__Impl )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:245:2: rule__Input__Group__4__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Input__Group__4__Impl_in_rule__Input__Group__4434);\r\n rule__Input__Group__4__Impl();\r\n\r\n state._fsp--;\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstFunction__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8571:1: ( rule__AstFunction__Group__8__Impl rule__AstFunction__Group__9 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8572:2: rule__AstFunction__Group__8__Impl rule__AstFunction__Group__9\n {\n pushFollow(FOLLOW_rule__AstFunction__Group__8__Impl_in_rule__AstFunction__Group__817638);\n rule__AstFunction__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstFunction__Group__9_in_rule__AstFunction__Group__817641);\n rule__AstFunction__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1676:1: ( rule__Input__Group__4__Impl )\n // InternalBrowser.g:1677:2: rule__Input__Group__4__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Input__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13269:1: ( rule__AstAction__Group_8_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13270:2: rule__AstAction__Group_8_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_8_2__1__Impl_in_rule__AstAction__Group_8_2__126878);\n rule__AstAction__Group_8_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:255:1: ( ( '.' ) )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:256:1: ( '.' )\r\n {\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:256:1: ( '.' )\r\n // ../sle.fsml.input.ui/src-gen/sle/fsml/input/ui/contentassist/antlr/internal/InternalInput.g:257:1: '.'\r\n {\r\n before(grammarAccess.getInputAccess().getFullStopKeyword_4()); \r\n match(input,9,FOLLOW_9_in_rule__Input__Group__4__Impl462); \r\n after(grammarAccess.getInputAccess().getFullStopKeyword_4()); \r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_8__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13215:1: ( ( ( rule__AstAction__Group_8_2__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13216:1: ( ( rule__AstAction__Group_8_2__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13216:1: ( ( rule__AstAction__Group_8_2__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13217:1: ( rule__AstAction__Group_8_2__0 )*\n {\n before(grammarAccess.getAstActionAccess().getGroup_8_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13218:1: ( rule__AstAction__Group_8_2__0 )*\n loop109:\n do {\n int alt109=2;\n int LA109_0 = input.LA(1);\n\n if ( (LA109_0==62) ) {\n alt109=1;\n }\n\n\n switch (alt109) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13218:2: rule__AstAction__Group_8_2__0\n \t {\n \t pushFollow(FOLLOW_rule__AstAction__Group_8_2__0_in_rule__AstAction__Group_8__2__Impl26779);\n \t rule__AstAction__Group_8_2__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop109;\n }\n } while (true);\n\n after(grammarAccess.getAstActionAccess().getGroup_8_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3406:1: ( ( ( rule__FinModelFile__Group_0__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3408:1: ( rule__FinModelFile__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:1: ( rule__FinModelFile__Group_0__0 )?\r\n int alt38=2;\r\n int LA38_0 = input.LA(1);\r\n\r\n if ( (LA38_0==71) ) {\r\n alt38=1;\r\n }\r\n switch (alt38) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:2: rule__FinModelFile__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0_in_rule__FinModelFile__Group__0__Impl7566);\r\n rule__FinModelFile__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__FindProperty__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:3188:1: ( rule__FindProperty__Group__8__Impl )\n // InternalBrowser.g:3189:2: rule__FindProperty__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__FindProperty__Group__8__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:440:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:441:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__0890);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__0893);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BSQLMachine__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:674:1: ( rule__BSQLMachine__Group__7__Impl rule__BSQLMachine__Group__8 )\n // InternalBSQL2Java.g:675:2: rule__BSQLMachine__Group__7__Impl rule__BSQLMachine__Group__8\n {\n pushFollow(FOLLOW_7);\n rule__BSQLMachine__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__BSQLMachine__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BTable__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:978:1: ( rule__BTable__Group__6__Impl )\n // InternalBSQL2Java.g:979:2: rule__BTable__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__BTable__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_8__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8155:1: ( ( ( rule__AstActor__Group_8_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8156:1: ( ( rule__AstActor__Group_8_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8156:1: ( ( rule__AstActor__Group_8_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8157:1: ( rule__AstActor__Group_8_1__0 )*\n {\n before(grammarAccess.getAstActorAccess().getGroup_8_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8158:1: ( rule__AstActor__Group_8_1__0 )*\n loop68:\n do {\n int alt68=2;\n int LA68_0 = input.LA(1);\n\n if ( (LA68_0==62) ) {\n alt68=1;\n }\n\n\n switch (alt68) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8158:2: rule__AstActor__Group_8_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstActor__Group_8_1__0_in_rule__AstActor__Group_8__1__Impl16806);\n \t rule__AstActor__Group_8_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop68;\n }\n } while (true);\n\n after(grammarAccess.getAstActorAccess().getGroup_8_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_8__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8838:1: ( rule__AstFunction__Group_8__0__Impl rule__AstFunction__Group_8__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8839:2: rule__AstFunction__Group_8__0__Impl rule__AstFunction__Group_8__1\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_8__0__Impl_in_rule__AstFunction__Group_8__018149);\n rule__AstFunction__Group_8__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstFunction__Group_8__1_in_rule__AstFunction__Group_8__018152);\n rule__AstFunction__Group_8__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1418:1: ( rule__Enum__Group__6__Impl rule__Enum__Group__7 )\n // InternalMyDsl.g:1419:2: rule__Enum__Group__6__Impl rule__Enum__Group__7\n {\n pushFollow(FOLLOW_18);\n rule__Enum__Group__6__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__7();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1492:1: ( rule__PrintCSV__Group__2__Impl )\n // InternalCsv.g:1493:2: rule__PrintCSV__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Mass__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4786:1: ( rule__Mass__Group__8__Impl )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:4787:2: rule__Mass__Group__8__Impl\n {\n pushFollow(FOLLOW_rule__Mass__Group__8__Impl_in_rule__Mass__Group__89784);\n rule__Mass__Group__8__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_8_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5172:1: ( rule__AstNetwork__Group_8_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5173:2: rule__AstNetwork__Group_8_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_8_1__1__Impl_in_rule__AstNetwork__Group_8_1__110925);\n rule__AstNetwork__Group_8_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Buchung__Group__8() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:4836:1: ( rule__Buchung__Group__8__Impl rule__Buchung__Group__9 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:4837:2: rule__Buchung__Group__8__Impl rule__Buchung__Group__9\r\n {\r\n pushFollow(FOLLOW_rule__Buchung__Group__8__Impl_in_rule__Buchung__Group__810389);\r\n rule__Buchung__Group__8__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__Buchung__Group__9_in_rule__Buchung__Group__810392);\r\n rule__Buchung__Group__9();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstNetwork__Group_8_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5153:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5154:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5154:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5155:1: ','\n {\n before(grammarAccess.getAstNetworkAccess().getCommaKeyword_8_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstNetwork__Group_8_1__0__Impl10894); \n after(grammarAccess.getAstNetworkAccess().getCommaKeyword_8_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4587:1: ( rule__AstNetwork__Group__8__Impl rule__AstNetwork__Group__9 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4588:2: rule__AstNetwork__Group__8__Impl rule__AstNetwork__Group__9\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group__8__Impl_in_rule__AstNetwork__Group__89779);\n rule__AstNetwork__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstNetwork__Group__9_in_rule__AstNetwork__Group__89782);\n rule__AstNetwork__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FOLLOW_12);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Address_Impl__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1293:1: ( rule__Address_Impl__Group__7__Impl rule__Address_Impl__Group__8 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1294:2: rule__Address_Impl__Group__7__Impl rule__Address_Impl__Group__8\n {\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__7__Impl_in_rule__Address_Impl__Group__72531);\n rule__Address_Impl__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Address_Impl__Group__8_in_rule__Address_Impl__Group__72534);\n rule__Address_Impl__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12566:1: ( rule__AstAction__Group__8__Impl rule__AstAction__Group__9 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12567:2: rule__AstAction__Group__8__Impl rule__AstAction__Group__9\n {\n pushFollow(FOLLOW_rule__AstAction__Group__8__Impl_in_rule__AstAction__Group__825505);\n rule__AstAction__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group__9_in_rule__AstAction__Group__825508);\n rule__AstAction__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7724:1: ( rule__AstActor__Group__8__Impl rule__AstActor__Group__9 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:7725:2: rule__AstActor__Group__8__Impl rule__AstActor__Group__9\n {\n pushFollow(FOLLOW_rule__AstActor__Group__8__Impl_in_rule__AstActor__Group__815962);\n rule__AstActor__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstActor__Group__9_in_rule__AstActor__Group__815965);\n rule__AstActor__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_8__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8144:1: ( rule__AstActor__Group_8__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8145:2: rule__AstActor__Group_8__1__Impl\n {\n pushFollow(FOLLOW_rule__AstActor__Group_8__1__Impl_in_rule__AstActor__Group_8__116779);\n rule__AstActor__Group_8__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2574:1: ( rule__Model__Group__1__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2575:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__15074);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Track__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2226:1: ( rule__Track__Group__6__Impl )\n // ../ufscar.Compiladores2.ui/src-gen/ufscar/compiladores2/ui/contentassist/antlr/internal/InternalMusy.g:2227:2: rule__Track__Group__6__Impl\n {\n pushFollow(FOLLOW_rule__Track__Group__6__Impl_in_rule__Track__Group__64570);\n rule__Track__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_8__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5120:1: ( ( ( rule__AstNetwork__Group_8_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5121:1: ( ( rule__AstNetwork__Group_8_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5121:1: ( ( rule__AstNetwork__Group_8_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5122:1: ( rule__AstNetwork__Group_8_1__0 )*\n {\n before(grammarAccess.getAstNetworkAccess().getGroup_8_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5123:1: ( rule__AstNetwork__Group_8_1__0 )*\n loop47:\n do {\n int alt47=2;\n int LA47_0 = input.LA(1);\n\n if ( (LA47_0==62) ) {\n alt47=1;\n }\n\n\n switch (alt47) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5123:2: rule__AstNetwork__Group_8_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstNetwork__Group_8_1__0_in_rule__AstNetwork__Group_8__1__Impl10828);\n \t rule__AstNetwork__Group_8_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop47;\n }\n } while (true);\n\n after(grammarAccess.getAstNetworkAccess().getGroup_8_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2025:1: ( ( '}' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2026:1: ( '}' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2026:1: ( '}' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2027:1: '}'\n {\n before(grammarAccess.getCategoriaAccess().getRightCurlyBracketKeyword_8()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Categoria__Group__8__Impl3991); \n after(grammarAccess.getCategoriaAccess().getRightCurlyBracketKeyword_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:471:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:472:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_rule__Model__Group__1__Impl_in_rule__Model__Group__1951);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__2_in_rule__Model__Group__1954);\n rule__Model__Group__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:595:1: ( ( '}' ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:597:1: '}'\n {\n before(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Activity__Group__4__Impl1187); \n after(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:643:1: ( rule__Definition__Group__6__Impl )\n // InternalWh.g:644:2: rule__Definition__Group__6__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group__6__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3517:1: ( rule__FinModelFile__Group_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3518:2: rule__FinModelFile__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1__Impl_in_rule__FinModelFile__Group_0__17784);\r\n rule__FinModelFile__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Buchung__Group_8_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:5355:1: ( rule__Buchung__Group_8_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:5356:2: rule__Buchung__Group_8_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Buchung__Group_8_0__1__Impl_in_rule__Buchung__Group_8_0__111397);\r\n rule__Buchung__Group_8_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Empresa__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:722:1: ( ( 'catalogo' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:723:1: ( 'catalogo' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:723:1: ( 'catalogo' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:724:1: 'catalogo'\n {\n before(grammarAccess.getEmpresaAccess().getCatalogoKeyword_8()); \n match(input,16,FollowSets000.FOLLOW_16_in_rule__Empresa__Group__8__Impl1433); \n after(grammarAccess.getEmpresaAccess().getCatalogoKeyword_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__VoidOperation__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2166:1: ( rule__VoidOperation__Group__7__Impl rule__VoidOperation__Group__8 )\n // InternalBSQL2Java.g:2167:2: rule__VoidOperation__Group__7__Impl rule__VoidOperation__Group__8\n {\n pushFollow(FOLLOW_32);\n rule__VoidOperation__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__VoidOperation__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1504:1: ( ( ( rule__Language__Group_4__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1506:1: ( rule__Language__Group_4__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_4()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:1: ( rule__Language__Group_4__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==15) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:2: rule__Language__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0_in_rule__Language__Group__4__Impl2944);\n rule__Language__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13144:1: ( rule__AstAction__Group_8__0__Impl rule__AstAction__Group_8__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13145:2: rule__AstAction__Group_8__0__Impl rule__AstAction__Group_8__1\n {\n pushFollow(FOLLOW_rule__AstAction__Group_8__0__Impl_in_rule__AstAction__Group_8__026630);\n rule__AstAction__Group_8__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group_8__1_in_rule__AstAction__Group_8__026633);\n rule__AstAction__Group_8__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Buchung__Group_8_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:5418:1: ( rule__Buchung__Group_8_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:5419:2: rule__Buchung__Group_8_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__Buchung__Group_8_1__1__Impl_in_rule__Buchung__Group_8_1__111520);\r\n rule__Buchung__Group_8_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstExpressionIf__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19207:1: ( ( 'end' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19208:1: ( 'end' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:19209:1: 'end'\n {\n before(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n match(input,52,FOLLOW_52_in_rule__AstExpressionIf__Group__6__Impl38587); \n after(grammarAccess.getAstExpressionIfAccess().getEndKeyword_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:898:1: ( rule__Model__Group__1__Impl )\n // InternalMLRegression.g:899:2: rule__Model__Group__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_8_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8932:1: ( rule__AstFunction__Group_8_2__0__Impl rule__AstFunction__Group_8_2__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8933:2: rule__AstFunction__Group_8_2__0__Impl rule__AstFunction__Group_8_2__1\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_8_2__0__Impl_in_rule__AstFunction__Group_8_2__018335);\n rule__AstFunction__Group_8_2__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstFunction__Group_8_2__1_in_rule__AstFunction__Group_8_2__018338);\n rule__AstFunction__Group_8_2__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1735:1: ( rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3 )\n // InternalCsv.g:1736:2: rule__SaveCSV__Group__2__Impl rule__SaveCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__SaveCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1661:1: ( rule__Enum__Group_6__1__Impl )\n // InternalMyDsl.g:1662:2: rule__Enum__Group_6__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Constraint__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7205:1: ( rule__Constraint__Group__7__Impl rule__Constraint__Group__8 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:7206:2: rule__Constraint__Group__7__Impl rule__Constraint__Group__8\n {\n pushFollow(FOLLOW_rule__Constraint__Group__7__Impl_in_rule__Constraint__Group__714529);\n rule__Constraint__Group__7__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Constraint__Group__8_in_rule__Constraint__Group__714532);\n rule__Constraint__Group__8();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__VoidOperation__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2193:1: ( rule__VoidOperation__Group__8__Impl rule__VoidOperation__Group__9 )\n // InternalBSQL2Java.g:2194:2: rule__VoidOperation__Group__8__Impl rule__VoidOperation__Group__9\n {\n pushFollow(FOLLOW_32);\n rule__VoidOperation__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__VoidOperation__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_8__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8115:1: ( rule__AstActor__Group_8__0__Impl rule__AstActor__Group_8__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8116:2: rule__AstActor__Group_8__0__Impl rule__AstActor__Group_8__1\n {\n pushFollow(FOLLOW_rule__AstActor__Group_8__0__Impl_in_rule__AstActor__Group_8__016719);\n rule__AstActor__Group_8__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstActor__Group_8__1_in_rule__AstActor__Group_8__016722);\n rule__AstActor__Group_8__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__BoolOperation__Group_8__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:1842:1: ( rule__BoolOperation__Group_8__1__Impl )\n // InternalBSQL2Java.g:1843:2: rule__BoolOperation__Group_8__1__Impl\n {\n pushFollow(FOLLOW_2);\n rule__BoolOperation__Group_8__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Joint__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:5072:1: ( rule__Joint__Group__8__Impl rule__Joint__Group__9 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:5073:2: rule__Joint__Group__8__Impl rule__Joint__Group__9\n {\n pushFollow(FOLLOW_rule__Joint__Group__8__Impl_in_rule__Joint__Group__810348);\n rule__Joint__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Joint__Group__9_in_rule__Joint__Group__810351);\n rule__Joint__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstFunction__Group_8__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8869:1: ( rule__AstFunction__Group_8__1__Impl rule__AstFunction__Group_8__2 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8870:2: rule__AstFunction__Group_8__1__Impl rule__AstFunction__Group_8__2\n {\n pushFollow(FOLLOW_rule__AstFunction__Group_8__1__Impl_in_rule__AstFunction__Group_8__118211);\n rule__AstFunction__Group_8__1__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstFunction__Group_8__2_in_rule__AstFunction__Group_8__118214);\n rule__AstFunction__Group_8__2();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Producto__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2523:1: ( rule__Producto__Group__8__Impl rule__Producto__Group__9 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:2524:2: rule__Producto__Group__8__Impl rule__Producto__Group__9\n {\n pushFollow(FollowSets000.FOLLOW_rule__Producto__Group__8__Impl_in_rule__Producto__Group__84961);\n rule__Producto__Group__8__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Producto__Group__9_in_rule__Producto__Group__84964);\n rule__Producto__Group__9();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstNetwork__Group_8__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5080:1: ( rule__AstNetwork__Group_8__0__Impl rule__AstNetwork__Group_8__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:5081:2: rule__AstNetwork__Group_8__0__Impl rule__AstNetwork__Group_8__1\n {\n pushFollow(FOLLOW_rule__AstNetwork__Group_8__0__Impl_in_rule__AstNetwork__Group_8__010741);\n rule__AstNetwork__Group_8__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstNetwork__Group_8__1_in_rule__AstNetwork__Group_8__010744);\n rule__AstNetwork__Group_8__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:73:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:75:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:1: ( rule__Model__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel94);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }" ]
[ "0.77270615", "0.71895134", "0.6911876", "0.6883533", "0.66589755", "0.6603455", "0.6596535", "0.6458958", "0.64342564", "0.6427361", "0.6366768", "0.6363435", "0.633736", "0.6329425", "0.6328126", "0.62929076", "0.62377155", "0.6233117", "0.62240386", "0.62220883", "0.62186307", "0.6145247", "0.6143499", "0.61403805", "0.6129406", "0.61255825", "0.61217177", "0.6098376", "0.6095556", "0.60877675", "0.60748047", "0.60608107", "0.60590255", "0.6057753", "0.6054478", "0.6047265", "0.6012104", "0.60092074", "0.6003584", "0.59977496", "0.5978872", "0.5974332", "0.59668225", "0.5961933", "0.5957649", "0.59569126", "0.5954733", "0.5952258", "0.59438527", "0.5943019", "0.5939984", "0.59343165", "0.5931433", "0.59245086", "0.591834", "0.59112805", "0.5902902", "0.5902197", "0.58992827", "0.5885344", "0.5882655", "0.5876527", "0.5875547", "0.58749694", "0.58743244", "0.58734566", "0.58699846", "0.58620495", "0.5860773", "0.5852038", "0.5847571", "0.5842824", "0.5840794", "0.5835936", "0.5826628", "0.582572", "0.5812082", "0.5811309", "0.58101326", "0.5808602", "0.5805646", "0.5803914", "0.57995474", "0.5794874", "0.57935065", "0.57890755", "0.57862324", "0.5778123", "0.5777442", "0.5776588", "0.5771996", "0.576403", "0.57616323", "0.5754254", "0.5750349", "0.5749799", "0.5741973", "0.57397354", "0.57381266", "0.57264817" ]
0.79812783
0
$ANTLR end "rule__Model__Group__8" $ANTLR start "rule__Model__Group__8__Impl" InternalCsv.g:1094:1: rule__Model__Group__8__Impl : ( ( rule__Model__ActionsAssignment_8 ) ) ;
public final void rule__Model__Group__8__Impl() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:1098:1: ( ( ( rule__Model__ActionsAssignment_8 )* ) ) // InternalCsv.g:1099:1: ( ( rule__Model__ActionsAssignment_8 )* ) { // InternalCsv.g:1099:1: ( ( rule__Model__ActionsAssignment_8 )* ) // InternalCsv.g:1100:2: ( rule__Model__ActionsAssignment_8 )* { if ( state.backtracking==0 ) { before(grammarAccess.getModelAccess().getActionsAssignment_8()); } // InternalCsv.g:1101:2: ( rule__Model__ActionsAssignment_8 )* loop12: do { int alt12=2; int LA12_0 = input.LA(1); if ( (LA12_0==20||(LA12_0>=23 && LA12_0<=26)) ) { alt12=1; } switch (alt12) { case 1 : // InternalCsv.g:1101:3: rule__Model__ActionsAssignment_8 { pushFollow(FOLLOW_11); rule__Model__ActionsAssignment_8(); state._fsp--; if (state.failed) return ; } break; default : break loop12; } } while (true); if ( state.backtracking==0 ) { after(grammarAccess.getModelAccess().getActionsAssignment_8()); } } } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__XAssignment__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6366:1: ( rule__XAssignment__Group_1_1_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6367:2: rule__XAssignment__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0__0__Impl_in_rule__XAssignment__Group_1_1_0__013382);\r\n rule__XAssignment__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3477:1: ( rule__XAssignment__Group_1_1_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3478:2: rule__XAssignment__Group_1_1_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0__0__Impl_in_rule__XAssignment__Group_1_1_0__07308);\n rule__XAssignment__Group_1_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13269:1: ( rule__AstAction__Group_8_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13270:2: rule__AstAction__Group_8_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_8_2__1__Impl_in_rule__AstAction__Group_8_2__126878);\n rule__AstAction__Group_8_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3488:1: ( ( ( rule__XAssignment__Group_1_1_0_0__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3489:1: ( ( rule__XAssignment__Group_1_1_0_0__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3489:1: ( ( rule__XAssignment__Group_1_1_0_0__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3490:1: ( rule__XAssignment__Group_1_1_0_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXAssignmentAccess().getGroup_1_1_0_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3491:1: ( rule__XAssignment__Group_1_1_0_0__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3491:2: rule__XAssignment__Group_1_1_0_0__0\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__0_in_rule__XAssignment__Group_1_1_0__0__Impl7335);\n rule__XAssignment__Group_1_1_0_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXAssignmentAccess().getGroup_1_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5553:1: ( rule__XAssignment__Group_1_1_0__0__Impl )\r\n // InternalDroneScript.g:5554:2: rule__XAssignment__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_0__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6208:1: ( rule__XAssignment__Group_0__3__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6209:2: rule__XAssignment__Group_0__3__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__3__Impl_in_rule__XAssignment__Group_0__313075);\r\n rule__XAssignment__Group_0__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6427:1: ( rule__XAssignment__Group_1_1_0_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6428:2: rule__XAssignment__Group_1_1_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__1__Impl_in_rule__XAssignment__Group_1_1_0_0__113502);\r\n rule__XAssignment__Group_1_1_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6377:1: ( ( ( rule__XAssignment__Group_1_1_0_0__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6378:1: ( ( rule__XAssignment__Group_1_1_0_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6378:1: ( ( rule__XAssignment__Group_1_1_0_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6379:1: ( rule__XAssignment__Group_1_1_0_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_1_1_0_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6380:1: ( rule__XAssignment__Group_1_1_0_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6380:2: rule__XAssignment__Group_1_1_0_0__0\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__0_in_rule__XAssignment__Group_1_1_0__0__Impl13409);\r\n rule__XAssignment__Group_1_1_0_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_1_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1_0_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3538:1: ( rule__XAssignment__Group_1_1_0_0__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3539:2: rule__XAssignment__Group_1_1_0_0__1__Impl\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__1__Impl_in_rule__XAssignment__Group_1_1_0_0__17428);\n rule__XAssignment__Group_1_1_0_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6317:1: ( ( ( rule__XAssignment__Group_1_1_0__0 ) ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6318:1: ( ( rule__XAssignment__Group_1_1_0__0 ) )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6318:1: ( ( rule__XAssignment__Group_1_1_0__0 ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6319:1: ( rule__XAssignment__Group_1_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_1_1_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6320:1: ( rule__XAssignment__Group_1_1_0__0 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6320:2: rule__XAssignment__Group_1_1_0__0\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0__0_in_rule__XAssignment__Group_1_1__0__Impl13291);\r\n rule__XAssignment__Group_1_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_8__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13204:1: ( rule__AstAction__Group_8__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13205:2: rule__AstAction__Group_8__2__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_8__2__Impl_in_rule__AstAction__Group_8__226752);\n rule__AstAction__Group_8__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Assignment__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9872:1: ( ( () ) )\r\n // InternalGo.g:9873:1: ( () )\r\n {\r\n // InternalGo.g:9873:1: ( () )\r\n // InternalGo.g:9874:2: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getAssignmentAccess().getAssignmentAction_0()); \r\n }\r\n // InternalGo.g:9875:2: ()\r\n // InternalGo.g:9875:3: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getAssignmentAccess().getAssignmentAction_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_4_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12831:1: ( rule__AstAction__Group_4_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12832:2: rule__AstAction__Group_4_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_4_1__1__Impl_in_rule__AstAction__Group_4_1__126015);\n rule__AstAction__Group_4_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3078:1: ( rule__Action__Group__4__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3079:2: rule__Action__Group__4__Impl\n {\n pushFollow(FOLLOW_rule__Action__Group__4__Impl_in_rule__Action__Group__46071);\n rule__Action__Group__4__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3428:1: ( ( ( rule__XAssignment__Group_1_1_0__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3429:1: ( ( rule__XAssignment__Group_1_1_0__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3429:1: ( ( rule__XAssignment__Group_1_1_0__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3430:1: ( rule__XAssignment__Group_1_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXAssignmentAccess().getGroup_1_1_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3431:1: ( rule__XAssignment__Group_1_1_0__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3431:2: rule__XAssignment__Group_1_1_0__0\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0__0_in_rule__XAssignment__Group_1_1__0__Impl7217);\n rule__XAssignment__Group_1_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXAssignmentAccess().getGroup_1_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3319:1: ( rule__XAssignment__Group_0__3__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3320:2: rule__XAssignment__Group_0__3__Impl\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_0__3__Impl_in_rule__XAssignment__Group_0__37001);\n rule__XAssignment__Group_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12768:1: ( rule__AstAction__Group_4__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12769:2: rule__AstAction__Group_4__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_4__1__Impl_in_rule__AstAction__Group_4__125891);\n rule__AstAction__Group_4__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6334:1: ( rule__XAssignment__Group_1_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6335:2: rule__XAssignment__Group_1_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__1__Impl_in_rule__XAssignment__Group_1_1__113321);\r\n rule__XAssignment__Group_1_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3445:1: ( rule__XAssignment__Group_1_1__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3446:2: rule__XAssignment__Group_1_1__1__Impl\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__1__Impl_in_rule__XAssignment__Group_1_1__17247);\n rule__XAssignment__Group_1_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3261:1: ( rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3262:2: rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_0__1__Impl_in_rule__XAssignment__Group_0__16882);\n rule__XAssignment__Group_0__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XAssignment__Group_0__2_in_rule__XAssignment__Group_0__16885);\n rule__XAssignment__Group_0__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5418:1: ( rule__XAssignment__Group_0__3__Impl )\r\n // InternalDroneScript.g:5419:2: rule__XAssignment__Group_0__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_0__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3230:1: ( rule__XAssignment__Group_0__0__Impl rule__XAssignment__Group_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3231:2: rule__XAssignment__Group_0__0__Impl rule__XAssignment__Group_0__1\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_0__0__Impl_in_rule__XAssignment__Group_0__06821);\n rule__XAssignment__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XAssignment__Group_0__1_in_rule__XAssignment__Group_0__06824);\n rule__XAssignment__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3290:1: ( rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3291:2: rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_0__2__Impl_in_rule__XAssignment__Group_0__26942);\n rule__XAssignment__Group_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XAssignment__Group_0__3_in_rule__XAssignment__Group_0__26945);\n rule__XAssignment__Group_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6179:1: ( rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6180:2: rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__2__Impl_in_rule__XAssignment__Group_0__213016);\r\n rule__XAssignment__Group_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__3_in_rule__XAssignment__Group_0__213019);\r\n rule__XAssignment__Group_0__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_6_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12955:1: ( rule__AstAction__Group_6_1__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12956:2: rule__AstAction__Group_6_1__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6_1__1__Impl_in_rule__AstAction__Group_6_1__126260);\n rule__AstAction__Group_6_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3507:1: ( rule__XAssignment__Group_1_1_0_0__0__Impl rule__XAssignment__Group_1_1_0_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3508:2: rule__XAssignment__Group_1_1_0_0__0__Impl rule__XAssignment__Group_1_1_0_0__1\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__0__Impl_in_rule__XAssignment__Group_1_1_0_0__07367);\n rule__XAssignment__Group_1_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__1_in_rule__XAssignment__Group_1_1_0_0__07370);\n rule__XAssignment__Group_1_1_0_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6284:1: ( ( ( rule__XAssignment__Group_1_1__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6285:1: ( ( rule__XAssignment__Group_1_1__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6285:1: ( ( rule__XAssignment__Group_1_1__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6286:1: ( rule__XAssignment__Group_1_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_1_1()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6287:1: ( rule__XAssignment__Group_1_1__0 )?\r\n int alt48=2;\r\n int LA48_0 = input.LA(1);\r\n\r\n if ( (LA48_0==15) ) {\r\n int LA48_1 = input.LA(2);\r\n\r\n if ( (synpred105_InternalFin()) ) {\r\n alt48=1;\r\n }\r\n }\r\n switch (alt48) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6287:2: rule__XAssignment__Group_1_1__0\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__0_in_rule__XAssignment__Group_1__1__Impl13226);\r\n rule__XAssignment__Group_1_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1_0_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5607:1: ( rule__XAssignment__Group_1_1_0_0__1__Impl )\r\n // InternalDroneScript.g:5608:2: rule__XAssignment__Group_1_1_0_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1_0_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6273:1: ( rule__XAssignment__Group_1__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6274:2: rule__XAssignment__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1__1__Impl_in_rule__XAssignment__Group_1__113199);\r\n rule__XAssignment__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_6__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12892:1: ( rule__AstAction__Group_6__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12893:2: rule__AstAction__Group_6__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__1__Impl_in_rule__AstAction__Group_6__126136);\n rule__AstAction__Group_6__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6150:1: ( rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6151:2: rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__1__Impl_in_rule__XAssignment__Group_0__112956);\r\n rule__XAssignment__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__2_in_rule__XAssignment__Group_0__112959);\r\n rule__XAssignment__Group_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6396:1: ( rule__XAssignment__Group_1_1_0_0__0__Impl rule__XAssignment__Group_1_1_0_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6397:2: rule__XAssignment__Group_1_1_0_0__0__Impl rule__XAssignment__Group_1_1_0_0__1\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__0__Impl_in_rule__XAssignment__Group_1_1_0_0__013441);\r\n rule__XAssignment__Group_1_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1_0_0__1_in_rule__XAssignment__Group_1_1_0_0__013444);\r\n rule__XAssignment__Group_1_1_0_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3384:1: ( rule__XAssignment__Group_1__1__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3385:2: rule__XAssignment__Group_1__1__Impl\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1__1__Impl_in_rule__XAssignment__Group_1__17125);\n rule__XAssignment__Group_1__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3089:1: ( ( '.' ) )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3090:1: ( '.' )\n {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3090:1: ( '.' )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3091:1: '.'\n {\n before(grammarAccess.getActionAccess().getFullStopKeyword_4()); \n match(input,23,FOLLOW_23_in_rule__Action__Group__4__Impl6099); \n after(grammarAccess.getActionAccess().getFullStopKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Assignment__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9860:1: ( rule__Assignment__Group__0__Impl rule__Assignment__Group__1 )\r\n // InternalGo.g:9861:2: rule__Assignment__Group__0__Impl rule__Assignment__Group__1\r\n {\r\n pushFollow(FOLLOW_20);\r\n rule__Assignment__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__Assignment__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5564:1: ( ( ( rule__XAssignment__Group_1_1_0_0__0 ) ) )\r\n // InternalDroneScript.g:5565:1: ( ( rule__XAssignment__Group_1_1_0_0__0 ) )\r\n {\r\n // InternalDroneScript.g:5565:1: ( ( rule__XAssignment__Group_1_1_0_0__0 ) )\r\n // InternalDroneScript.g:5566:2: ( rule__XAssignment__Group_1_1_0_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_1_1_0_0()); \r\n }\r\n // InternalDroneScript.g:5567:2: ( rule__XAssignment__Group_1_1_0_0__0 )\r\n // InternalDroneScript.g:5567:3: rule__XAssignment__Group_1_1_0_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1_0_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_1_1_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6119:1: ( rule__XAssignment__Group_0__0__Impl rule__XAssignment__Group_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6120:2: rule__XAssignment__Group_0__0__Impl rule__XAssignment__Group_0__1\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__0__Impl_in_rule__XAssignment__Group_0__012895);\r\n rule__XAssignment__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XAssignment__Group_0__1_in_rule__XAssignment__Group_0__012898);\r\n rule__XAssignment__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3416:1: ( rule__XAssignment__Group_1_1__0__Impl rule__XAssignment__Group_1_1__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3417:2: rule__XAssignment__Group_1_1__0__Impl rule__XAssignment__Group_1_1__1\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__0__Impl_in_rule__XAssignment__Group_1_1__07187);\n rule__XAssignment__Group_1_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__1_in_rule__XAssignment__Group_1_1__07190);\n rule__XAssignment__Group_1_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5526:1: ( rule__XAssignment__Group_1_1__1__Impl )\r\n // InternalDroneScript.g:5527:2: rule__XAssignment__Group_1_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1747:1: ( ( ( rule__SaveCSV__OpenAssignment_2 ) ) )\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n {\n // InternalCsv.g:1748:1: ( ( rule__SaveCSV__OpenAssignment_2 ) )\n // InternalCsv.g:1749:2: ( rule__SaveCSV__OpenAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n // InternalCsv.g:1750:2: ( rule__SaveCSV__OpenAssignment_2 )\n // InternalCsv.g:1750:3: rule__SaveCSV__OpenAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__OpenAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getOpenAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3355:1: ( rule__XAssignment__Group_1__0__Impl rule__XAssignment__Group_1__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3356:2: rule__XAssignment__Group_1__0__Impl rule__XAssignment__Group_1__1\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1__0__Impl_in_rule__XAssignment__Group_1__07066);\n rule__XAssignment__Group_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XAssignment__Group_1__1_in_rule__XAssignment__Group_1__07069);\n rule__XAssignment__Group_1__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_7_2__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13112:1: ( rule__AstAction__Group_7_2__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13113:2: rule__AstAction__Group_7_2__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_7_2__1__Impl_in_rule__AstAction__Group_7_2__126569);\n rule__AstAction__Group_7_2__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12751:1: ( ( ( rule__AstAction__InputsAssignment_4_0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12752:1: ( ( rule__AstAction__InputsAssignment_4_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12752:1: ( ( rule__AstAction__InputsAssignment_4_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12753:1: ( rule__AstAction__InputsAssignment_4_0 )\n {\n before(grammarAccess.getAstActionAccess().getInputsAssignment_4_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12754:1: ( rule__AstAction__InputsAssignment_4_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12754:2: rule__AstAction__InputsAssignment_4_0\n {\n pushFollow(FOLLOW_rule__AstAction__InputsAssignment_4_0_in_rule__AstAction__Group_4__0__Impl25861);\n rule__AstAction__InputsAssignment_4_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActionAccess().getInputsAssignment_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_4_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12842:1: ( ( ( rule__AstAction__InputsAssignment_4_1_1 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12843:1: ( ( rule__AstAction__InputsAssignment_4_1_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12843:1: ( ( rule__AstAction__InputsAssignment_4_1_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12844:1: ( rule__AstAction__InputsAssignment_4_1_1 )\n {\n before(grammarAccess.getAstActionAccess().getInputsAssignment_4_1_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12845:1: ( rule__AstAction__InputsAssignment_4_1_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12845:2: rule__AstAction__InputsAssignment_4_1_1\n {\n pushFollow(FOLLOW_rule__AstAction__InputsAssignment_4_1_1_in_rule__AstAction__Group_4_1__1__Impl26042);\n rule__AstAction__InputsAssignment_4_1_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActionAccess().getInputsAssignment_4_1_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6131:1: ( ( () ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6132:1: ( () )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6132:1: ( () )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6133:1: ()\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getXAssignmentAction_0_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6134:1: ()\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6136:1: \r\n {\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getXAssignmentAction_0_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_7_2__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13123:1: ( ( ( rule__AstAction__GuardsAssignment_7_2_1 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13124:1: ( ( rule__AstAction__GuardsAssignment_7_2_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13124:1: ( ( rule__AstAction__GuardsAssignment_7_2_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13125:1: ( rule__AstAction__GuardsAssignment_7_2_1 )\n {\n before(grammarAccess.getAstActionAccess().getGuardsAssignment_7_2_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13126:1: ( rule__AstAction__GuardsAssignment_7_2_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13126:2: rule__AstAction__GuardsAssignment_7_2_1\n {\n pushFollow(FOLLOW_rule__AstAction__GuardsAssignment_7_2_1_in_rule__AstAction__Group_7_2__1__Impl26596);\n rule__AstAction__GuardsAssignment_7_2_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActionAccess().getGuardsAssignment_7_2_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5511:1: ( ( ( rule__XAssignment__Group_1_1_0__0 ) ) )\r\n // InternalDroneScript.g:5512:1: ( ( rule__XAssignment__Group_1_1_0__0 ) )\r\n {\r\n // InternalDroneScript.g:5512:1: ( ( rule__XAssignment__Group_1_1_0__0 ) )\r\n // InternalDroneScript.g:5513:2: ( rule__XAssignment__Group_1_1_0__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_1_1_0()); \r\n }\r\n // InternalDroneScript.g:5514:2: ( rule__XAssignment__Group_1_1_0__0 )\r\n // InternalDroneScript.g:5514:3: rule__XAssignment__Group_1_1_0__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_1_1_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3242:1: ( ( () ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3243:1: ( () )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3243:1: ( () )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3244:1: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXAssignmentAccess().getXAssignmentAction_0_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3245:1: ()\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3247:1: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXAssignmentAccess().getXAssignmentAction_0_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Assignment__Group__3() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9941:1: ( rule__Assignment__Group__3__Impl )\r\n // InternalGo.g:9942:2: rule__Assignment__Group__3__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Assignment__Group__3__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group__10() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12624:1: ( rule__AstAction__Group__10__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12625:2: rule__AstAction__Group__10__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group__10__Impl_in_rule__AstAction__Group__1025627);\n rule__AstAction__Group__10__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:937:1: ( ( ( rule__Model__NameAssignment_2 ) ) )\n // InternalCsv.g:938:1: ( ( rule__Model__NameAssignment_2 ) )\n {\n // InternalCsv.g:938:1: ( ( rule__Model__NameAssignment_2 ) )\n // InternalCsv.g:939:2: ( rule__Model__NameAssignment_2 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getNameAssignment_2()); \n }\n // InternalCsv.g:940:2: ( rule__Model__NameAssignment_2 )\n // InternalCsv.g:940:3: rule__Model__NameAssignment_2\n {\n pushFollow(FOLLOW_2);\n rule__Model__NameAssignment_2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getNameAssignment_2()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12460:1: ( ( ( rule__AstAction__Group_4__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12461:1: ( ( rule__AstAction__Group_4__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12461:1: ( ( rule__AstAction__Group_4__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12462:1: ( rule__AstAction__Group_4__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_4()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12463:1: ( rule__AstAction__Group_4__0 )?\n int alt101=2;\n int LA101_0 = input.LA(1);\n\n if ( (LA101_0==RULE_ID||LA101_0==81) ) {\n alt101=1;\n }\n switch (alt101) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12463:2: rule__AstAction__Group_4__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_4__0_in_rule__AstAction__Group__4__Impl25290);\n rule__AstAction__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleAssignment() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:1842:2: ( ( ( rule__Assignment__Group__0 ) ) )\r\n // InternalGo.g:1843:2: ( ( rule__Assignment__Group__0 ) )\r\n {\r\n // InternalGo.g:1843:2: ( ( rule__Assignment__Group__0 ) )\r\n // InternalGo.g:1844:3: ( rule__Assignment__Group__0 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getAssignmentAccess().getGroup()); \r\n }\r\n // InternalGo.g:1845:3: ( rule__Assignment__Group__0 )\r\n // InternalGo.g:1845:4: rule__Assignment__Group__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Assignment__Group__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getAssignmentAccess().getGroup()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XAssignment__Group_1__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5472:1: ( rule__XAssignment__Group_1__1__Impl )\r\n // InternalDroneScript.g:5473:2: rule__XAssignment__Group_1__1__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group__8__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12578:1: ( ( ( rule__AstAction__Group_8__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12579:1: ( ( rule__AstAction__Group_8__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12579:1: ( ( rule__AstAction__Group_8__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12580:1: ( rule__AstAction__Group_8__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_8()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12581:1: ( rule__AstAction__Group_8__0 )?\n int alt104=2;\n int LA104_0 = input.LA(1);\n\n if ( (LA104_0==63) ) {\n alt104=1;\n }\n switch (alt104) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12581:2: rule__AstAction__Group_8__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_8__0_in_rule__AstAction__Group__8__Impl25535);\n rule__AstAction__Group_8__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_8()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBrowser.g:1687:1: ( ( ( rule__Input__ClassAssignment_4 ) ) )\n // InternalBrowser.g:1688:1: ( ( rule__Input__ClassAssignment_4 ) )\n {\n // InternalBrowser.g:1688:1: ( ( rule__Input__ClassAssignment_4 ) )\n // InternalBrowser.g:1689:2: ( rule__Input__ClassAssignment_4 )\n {\n before(grammarAccess.getInputAccess().getClassAssignment_4()); \n // InternalBrowser.g:1690:2: ( rule__Input__ClassAssignment_4 )\n // InternalBrowser.g:1690:3: rule__Input__ClassAssignment_4\n {\n pushFollow(FOLLOW_2);\n rule__Input__ClassAssignment_4();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getClassAssignment_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5391:1: ( rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3 )\r\n // InternalDroneScript.g:5392:2: rule__XAssignment__Group_0__2__Impl rule__XAssignment__Group_0__3\r\n {\r\n pushFollow(FOLLOW_20);\r\n rule__XAssignment__Group_0__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_0__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1773:1: ( ( ( rule__SaveCSV__FileAssignment_3 )? ) )\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n {\n // InternalCsv.g:1774:1: ( ( rule__SaveCSV__FileAssignment_3 )? )\n // InternalCsv.g:1775:2: ( rule__SaveCSV__FileAssignment_3 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1776:2: ( rule__SaveCSV__FileAssignment_3 )?\n int alt13=2;\n int LA13_0 = input.LA(1);\n\n if ( (LA13_0==RULE_STRING) ) {\n alt13=1;\n }\n switch (alt13) {\n case 1 :\n // InternalCsv.g:1776:3: rule__SaveCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__SaveCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6244:1: ( rule__XAssignment__Group_1__0__Impl rule__XAssignment__Group_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6245:2: rule__XAssignment__Group_1__0__Impl rule__XAssignment__Group_1__1\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1__0__Impl_in_rule__XAssignment__Group_1__013140);\r\n rule__XAssignment__Group_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1__1_in_rule__XAssignment__Group_1__013143);\r\n rule__XAssignment__Group_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12966:1: ( ( ( rule__AstAction__OutputsAssignment_6_1_1 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12967:1: ( ( rule__AstAction__OutputsAssignment_6_1_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12967:1: ( ( rule__AstAction__OutputsAssignment_6_1_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12968:1: ( rule__AstAction__OutputsAssignment_6_1_1 )\n {\n before(grammarAccess.getAstActionAccess().getOutputsAssignment_6_1_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12969:1: ( rule__AstAction__OutputsAssignment_6_1_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12969:2: rule__AstAction__OutputsAssignment_6_1_1\n {\n pushFollow(FOLLOW_rule__AstAction__OutputsAssignment_6_1_1_in_rule__AstAction__Group_6_1__1__Impl26287);\n rule__AstAction__OutputsAssignment_6_1_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActionAccess().getOutputsAssignment_6_1_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Activity__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:595:1: ( ( '}' ) )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:596:1: ( '}' )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:597:1: '}'\n {\n before(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n match(input,14,FollowSets000.FOLLOW_14_in_rule__Activity__Group__4__Impl1187); \n after(grammarAccess.getActivityAccess().getRightCurlyBracketKeyword_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6305:1: ( rule__XAssignment__Group_1_1__0__Impl rule__XAssignment__Group_1_1__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:6306:2: rule__XAssignment__Group_1_1__0__Impl rule__XAssignment__Group_1_1__1\r\n {\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__0__Impl_in_rule__XAssignment__Group_1_1__013261);\r\n rule__XAssignment__Group_1_1__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__1_in_rule__XAssignment__Group_1_1__013264);\r\n rule__XAssignment__Group_1_1__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_4__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12779:1: ( ( ( rule__AstAction__Group_4_1__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12780:1: ( ( rule__AstAction__Group_4_1__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12780:1: ( ( rule__AstAction__Group_4_1__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12781:1: ( rule__AstAction__Group_4_1__0 )*\n {\n before(grammarAccess.getAstActionAccess().getGroup_4_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12782:1: ( rule__AstAction__Group_4_1__0 )*\n loop106:\n do {\n int alt106=2;\n int LA106_0 = input.LA(1);\n\n if ( (LA106_0==62) ) {\n alt106=1;\n }\n\n\n switch (alt106) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12782:2: rule__AstAction__Group_4_1__0\n \t {\n \t pushFollow(FOLLOW_rule__AstAction__Group_4_1__0_in_rule__AstAction__Group_4__1__Impl25918);\n \t rule__AstAction__Group_4_1__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop106;\n }\n } while (true);\n\n after(grammarAccess.getAstActionAccess().getGroup_4_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:909:1: ( ( ( rule__Model__MlAssignment_1 ) ) )\n // InternalMLRegression.g:910:1: ( ( rule__Model__MlAssignment_1 ) )\n {\n // InternalMLRegression.g:910:1: ( ( rule__Model__MlAssignment_1 ) )\n // InternalMLRegression.g:911:2: ( rule__Model__MlAssignment_1 )\n {\n before(grammarAccess.getModelAccess().getMlAssignment_1()); \n // InternalMLRegression.g:912:2: ( rule__Model__MlAssignment_1 )\n // InternalMLRegression.g:912:3: rule__Model__MlAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Model__MlAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getMlAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:654:1: ( ( ( rule__Definition__OutputAssignment_6 ) ) )\n // InternalWh.g:655:1: ( ( rule__Definition__OutputAssignment_6 ) )\n {\n // InternalWh.g:655:1: ( ( rule__Definition__OutputAssignment_6 ) )\n // InternalWh.g:656:2: ( rule__Definition__OutputAssignment_6 )\n {\n before(grammarAccess.getDefinitionAccess().getOutputAssignment_6()); \n // InternalWh.g:657:2: ( rule__Definition__OutputAssignment_6 )\n // InternalWh.g:657:3: rule__Definition__OutputAssignment_6\n {\n pushFollow(FOLLOW_2);\n rule__Definition__OutputAssignment_6();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getOutputAssignment_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8_2__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13250:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13251:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13251:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13252:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_8_2_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_8_2__0__Impl26847); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_8_2_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13215:1: ( ( ( rule__AstAction__Group_8_2__0 )* ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13216:1: ( ( rule__AstAction__Group_8_2__0 )* )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13216:1: ( ( rule__AstAction__Group_8_2__0 )* )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13217:1: ( rule__AstAction__Group_8_2__0 )*\n {\n before(grammarAccess.getAstActionAccess().getGroup_8_2()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13218:1: ( rule__AstAction__Group_8_2__0 )*\n loop109:\n do {\n int alt109=2;\n int LA109_0 = input.LA(1);\n\n if ( (LA109_0==62) ) {\n alt109=1;\n }\n\n\n switch (alt109) {\n \tcase 1 :\n \t // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13218:2: rule__AstAction__Group_8_2__0\n \t {\n \t pushFollow(FOLLOW_rule__AstAction__Group_8_2__0_in_rule__AstAction__Group_8__2__Impl26779);\n \t rule__AstAction__Group_8_2__0();\n\n \t state._fsp--;\n\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop109;\n }\n } while (true);\n\n after(grammarAccess.getAstActionAccess().getGroup_8_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3395:1: ( ( ( rule__XAssignment__Group_1_1__0 )? ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3396:1: ( ( rule__XAssignment__Group_1_1__0 )? )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3396:1: ( ( rule__XAssignment__Group_1_1__0 )? )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3397:1: ( rule__XAssignment__Group_1_1__0 )?\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXAssignmentAccess().getGroup_1_1()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3398:1: ( rule__XAssignment__Group_1_1__0 )?\n int alt29=2;\n int LA29_0 = input.LA(1);\n\n if ( (LA29_0==12) ) {\n int LA29_1 = input.LA(2);\n\n if ( (synpred50_InternalInstances()) ) {\n alt29=1;\n }\n }\n switch (alt29) {\n case 1 :\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:3398:2: rule__XAssignment__Group_1_1__0\n {\n pushFollow(FOLLOW_rule__XAssignment__Group_1_1__0_in_rule__XAssignment__Group_1__1__Impl7152);\n rule__XAssignment__Group_1_1__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n break;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXAssignmentAccess().getGroup_1_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group_0_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3178:1: ( rule__Action__Group_0_0__2__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3179:2: rule__Action__Group_0_0__2__Impl\n {\n pushFollow(FOLLOW_rule__Action__Group_0_0__2__Impl_in_rule__Action__Group_0_0__26261);\n rule__Action__Group_0_0__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_7__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13047:1: ( rule__AstAction__Group_7__2__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13048:2: rule__AstAction__Group_7__2__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_7__2__Impl_in_rule__AstAction__Group_7__226443);\n rule__AstAction__Group_7__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_6__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12875:1: ( ( ( rule__AstAction__OutputsAssignment_6_0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12876:1: ( ( rule__AstAction__OutputsAssignment_6_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12876:1: ( ( rule__AstAction__OutputsAssignment_6_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12877:1: ( rule__AstAction__OutputsAssignment_6_0 )\n {\n before(grammarAccess.getAstActionAccess().getOutputsAssignment_6_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12878:1: ( rule__AstAction__OutputsAssignment_6_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12878:2: rule__AstAction__OutputsAssignment_6_0\n {\n pushFollow(FOLLOW_rule__AstAction__OutputsAssignment_6_0_in_rule__AstAction__Group_6__0__Impl26106);\n rule__AstAction__OutputsAssignment_6_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActionAccess().getOutputsAssignment_6_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstActor__Group_8_1__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8218:1: ( ( ( rule__AstActor__OutputsAssignment_8_1_1 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8219:1: ( ( rule__AstActor__OutputsAssignment_8_1_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8219:1: ( ( rule__AstActor__OutputsAssignment_8_1_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8220:1: ( rule__AstActor__OutputsAssignment_8_1_1 )\n {\n before(grammarAccess.getAstActorAccess().getOutputsAssignment_8_1_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8221:1: ( rule__AstActor__OutputsAssignment_8_1_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8221:2: rule__AstActor__OutputsAssignment_8_1_1\n {\n pushFollow(FOLLOW_rule__AstActor__OutputsAssignment_8_1_1_in_rule__AstActor__Group_8_1__1__Impl16930);\n rule__AstActor__OutputsAssignment_8_1_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActorAccess().getOutputsAssignment_8_1_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13144:1: ( rule__AstAction__Group_8__0__Impl rule__AstAction__Group_8__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13145:2: rule__AstAction__Group_8__0__Impl rule__AstAction__Group_8__1\n {\n pushFollow(FOLLOW_rule__AstAction__Group_8__0__Impl_in_rule__AstAction__Group_8__026630);\n rule__AstAction__Group_8__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group_8__1_in_rule__AstAction__Group_8__026633);\n rule__AstAction__Group_8__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1__1__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5483:1: ( ( ( rule__XAssignment__Group_1_1__0 )? ) )\r\n // InternalDroneScript.g:5484:1: ( ( rule__XAssignment__Group_1_1__0 )? )\r\n {\r\n // InternalDroneScript.g:5484:1: ( ( rule__XAssignment__Group_1_1__0 )? )\r\n // InternalDroneScript.g:5485:2: ( rule__XAssignment__Group_1_1__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getXAssignmentAccess().getGroup_1_1()); \r\n }\r\n // InternalDroneScript.g:5486:2: ( rule__XAssignment__Group_1_1__0 )?\r\n int alt54=2;\r\n alt54 = dfa54.predict(input);\r\n switch (alt54) {\r\n case 1 :\r\n // InternalDroneScript.g:5486:3: rule__XAssignment__Group_1_1__0\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getXAssignmentAccess().getGroup_1_1()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Input__Group_0__2__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:875:1: ( ( ( rule__Input__InputAssignment_0_2 ) ) )\n // InternalWh.g:876:1: ( ( rule__Input__InputAssignment_0_2 ) )\n {\n // InternalWh.g:876:1: ( ( rule__Input__InputAssignment_0_2 ) )\n // InternalWh.g:877:2: ( rule__Input__InputAssignment_0_2 )\n {\n before(grammarAccess.getInputAccess().getInputAssignment_0_2()); \n // InternalWh.g:878:2: ( rule__Input__InputAssignment_0_2 )\n // InternalWh.g:878:3: rule__Input__InputAssignment_0_2\n {\n pushFollow(FOLLOW_2);\n rule__Input__InputAssignment_0_2();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getInputAccess().getInputAssignment_0_2()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__TIAssignment__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2814:1: ( rule__TIAssignment__Group__2__Impl )\n // InternalBSQL2Java.g:2815:2: rule__TIAssignment__Group__2__Impl\n {\n pushFollow(FOLLOW_2);\n rule__TIAssignment__Group__2__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1045:1: ( ( ( rule__Model__LanguagesAssignment_6 )* ) )\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n {\n // InternalCsv.g:1046:1: ( ( rule__Model__LanguagesAssignment_6 )* )\n // InternalCsv.g:1047:2: ( rule__Model__LanguagesAssignment_6 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n // InternalCsv.g:1048:2: ( rule__Model__LanguagesAssignment_6 )*\n loop11:\n do {\n int alt11=2;\n int LA11_0 = input.LA(1);\n\n if ( (LA11_0==RULE_ID) ) {\n alt11=1;\n }\n\n\n switch (alt11) {\n \tcase 1 :\n \t // InternalCsv.g:1048:3: rule__Model__LanguagesAssignment_6\n \t {\n \t pushFollow(FOLLOW_3);\n \t rule__Model__LanguagesAssignment_6();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop11;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesAssignment_6()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5337:1: ( rule__XAssignment__Group_0__0__Impl rule__XAssignment__Group_0__1 )\r\n // InternalDroneScript.g:5338:2: rule__XAssignment__Group_0__0__Impl rule__XAssignment__Group_0__1\r\n {\r\n pushFollow(FOLLOW_29);\r\n rule__XAssignment__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Activity__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:584:1: ( rule__Activity__Group__4__Impl )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:585:2: rule__Activity__Group__4__Impl\n {\n pushFollow(FollowSets000.FOLLOW_rule__Activity__Group__4__Impl_in_rule__Activity__Group__41159);\n rule__Activity__Group__4__Impl();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1315:1: ( ( ( rule__OpenCSV__FileAssignment_3 ) ) )\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n {\n // InternalCsv.g:1316:1: ( ( rule__OpenCSV__FileAssignment_3 ) )\n // InternalCsv.g:1317:2: ( rule__OpenCSV__FileAssignment_3 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n // InternalCsv.g:1318:2: ( rule__OpenCSV__FileAssignment_3 )\n // InternalCsv.g:1318:3: rule__OpenCSV__FileAssignment_3\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__FileAssignment_3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getFileAssignment_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_8_2__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13238:1: ( rule__AstAction__Group_8_2__0__Impl rule__AstAction__Group_8_2__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13239:2: rule__AstAction__Group_8_2__0__Impl rule__AstAction__Group_8_2__1\n {\n pushFollow(FOLLOW_rule__AstAction__Group_8_2__0__Impl_in_rule__AstAction__Group_8_2__026816);\n rule__AstAction__Group_8_2__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstAction__Group_8_2__1_in_rule__AstAction__Group_8_2__026819);\n rule__AstAction__Group_8_2__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Assignment__Group__2() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9914:1: ( rule__Assignment__Group__2__Impl rule__Assignment__Group__3 )\r\n // InternalGo.g:9915:2: rule__Assignment__Group__2__Impl rule__Assignment__Group__3\r\n {\r\n pushFollow(FOLLOW_20);\r\n rule__Assignment__Group__2__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__Assignment__Group__3();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstAction__Group_4_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12812:1: ( ( ',' ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12813:1: ( ',' )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12814:1: ','\n {\n before(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n match(input,62,FOLLOW_62_in_rule__AstAction__Group_4_1__0__Impl25984); \n after(grammarAccess.getAstActionAccess().getCommaKeyword_4_1_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__TIAssignment__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalBSQL2Java.g:2760:1: ( rule__TIAssignment__Group__0__Impl rule__TIAssignment__Group__1 )\n // InternalBSQL2Java.g:2761:2: rule__TIAssignment__Group__0__Impl rule__TIAssignment__Group__1\n {\n pushFollow(FOLLOW_17);\n rule__TIAssignment__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__TIAssignment__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:520:1: ( ( ( rule__Definition__InputAssignment_1 ) ) )\n // InternalWh.g:521:1: ( ( rule__Definition__InputAssignment_1 ) )\n {\n // InternalWh.g:521:1: ( ( rule__Definition__InputAssignment_1 ) )\n // InternalWh.g:522:2: ( rule__Definition__InputAssignment_1 )\n {\n before(grammarAccess.getDefinitionAccess().getInputAssignment_1()); \n // InternalWh.g:523:2: ( rule__Definition__InputAssignment_1 )\n // InternalWh.g:523:3: rule__Definition__InputAssignment_1\n {\n pushFollow(FOLLOW_2);\n rule__Definition__InputAssignment_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getInputAssignment_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5364:1: ( rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2 )\r\n // InternalDroneScript.g:5365:2: rule__XAssignment__Group_0__1__Impl rule__XAssignment__Group_0__2\r\n {\r\n pushFollow(FOLLOW_30);\r\n rule__XAssignment__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_0__2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__AstActor__Group_8__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8127:1: ( ( ( rule__AstActor__OutputsAssignment_8_0 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8128:1: ( ( rule__AstActor__OutputsAssignment_8_0 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8128:1: ( ( rule__AstActor__OutputsAssignment_8_0 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8129:1: ( rule__AstActor__OutputsAssignment_8_0 )\n {\n before(grammarAccess.getAstActorAccess().getOutputsAssignment_8_0()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8130:1: ( rule__AstActor__OutputsAssignment_8_0 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:8130:2: rule__AstActor__OutputsAssignment_8_0\n {\n pushFollow(FOLLOW_rule__AstActor__OutputsAssignment_8_0_in_rule__AstActor__Group_8__0__Impl16749);\n rule__AstActor__OutputsAssignment_8_0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActorAccess().getOutputsAssignment_8_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:659:1: ( ( ( rule__Definition__InputAssignment_0_1 ) ) )\n // InternalWh.g:660:1: ( ( rule__Definition__InputAssignment_0_1 ) )\n {\n // InternalWh.g:660:1: ( ( rule__Definition__InputAssignment_0_1 ) )\n // InternalWh.g:661:2: ( rule__Definition__InputAssignment_0_1 )\n {\n before(grammarAccess.getDefinitionAccess().getInputAssignment_0_1()); \n // InternalWh.g:662:2: ( rule__Definition__InputAssignment_0_1 )\n // InternalWh.g:662:3: rule__Definition__InputAssignment_0_1\n {\n pushFollow(FOLLOW_2);\n rule__Definition__InputAssignment_0_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getInputAssignment_0_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Action__Group_0_1__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3245:1: ( rule__Action__Group_0_1__1__Impl )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:3246:2: rule__Action__Group_0_1__1__Impl\n {\n pushFollow(FOLLOW_rule__Action__Group_0_1__1__Impl_in_rule__Action__Group_0_1__16387);\n rule__Action__Group_0_1__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XAssignment__Group_1_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:5580:1: ( rule__XAssignment__Group_1_1_0_0__0__Impl rule__XAssignment__Group_1_1_0_0__1 )\r\n // InternalDroneScript.g:5581:2: rule__XAssignment__Group_1_1_0_0__0__Impl rule__XAssignment__Group_1_1_0_0__1\r\n {\r\n pushFollow(FOLLOW_31);\r\n rule__XAssignment__Group_1_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_2);\r\n rule__XAssignment__Group_1_1_0_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_9__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13332:1: ( rule__AstAction__Group_9__1__Impl )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13333:2: rule__AstAction__Group_9__1__Impl\n {\n pushFollow(FOLLOW_rule__AstAction__Group_9__1__Impl_in_rule__AstAction__Group_9__127001);\n rule__AstAction__Group_9__1__Impl();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group__6__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12520:1: ( ( ( rule__AstAction__Group_6__0 )? ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12521:1: ( ( rule__AstAction__Group_6__0 )? )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12522:1: ( rule__AstAction__Group_6__0 )?\n {\n before(grammarAccess.getAstActionAccess().getGroup_6()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:1: ( rule__AstAction__Group_6__0 )?\n int alt102=2;\n int LA102_0 = input.LA(1);\n\n if ( (LA102_0==RULE_ID||LA102_0==81) ) {\n alt102=1;\n }\n switch (alt102) {\n case 1 :\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:12523:2: rule__AstAction__Group_6__0\n {\n pushFollow(FOLLOW_rule__AstAction__Group_6__0_in_rule__AstAction__Group__6__Impl25413);\n rule__AstAction__Group_6__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getAstActionAccess().getGroup_6()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstAction__Group_7__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13030:1: ( ( ( rule__AstAction__GuardsAssignment_7_1 ) ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13031:1: ( ( rule__AstAction__GuardsAssignment_7_1 ) )\n {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13031:1: ( ( rule__AstAction__GuardsAssignment_7_1 ) )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13032:1: ( rule__AstAction__GuardsAssignment_7_1 )\n {\n before(grammarAccess.getAstActionAccess().getGuardsAssignment_7_1()); \n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13033:1: ( rule__AstAction__GuardsAssignment_7_1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:13033:2: rule__AstAction__GuardsAssignment_7_1\n {\n pushFollow(FOLLOW_rule__AstAction__GuardsAssignment_7_1_in_rule__AstAction__Group_7__1__Impl26413);\n rule__AstAction__GuardsAssignment_7_1();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getAstActionAccess().getGuardsAssignment_7_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Assignment__Group__2__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalGo.g:9926:1: ( ( ( rule__Assignment__AsopAssignment_2 ) ) )\r\n // InternalGo.g:9927:1: ( ( rule__Assignment__AsopAssignment_2 ) )\r\n {\r\n // InternalGo.g:9927:1: ( ( rule__Assignment__AsopAssignment_2 ) )\r\n // InternalGo.g:9928:2: ( rule__Assignment__AsopAssignment_2 )\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getAssignmentAccess().getAsopAssignment_2()); \r\n }\r\n // InternalGo.g:9929:2: ( rule__Assignment__AsopAssignment_2 )\r\n // InternalGo.g:9929:3: rule__Assignment__AsopAssignment_2\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__Assignment__AsopAssignment_2();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getAssignmentAccess().getAsopAssignment_2()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.6901024", "0.688158", "0.686481", "0.68513304", "0.6834084", "0.6815131", "0.6810185", "0.6796392", "0.6791122", "0.6760656", "0.6757812", "0.67507416", "0.6736931", "0.67366695", "0.67243546", "0.6722615", "0.671944", "0.6718941", "0.67168444", "0.6706212", "0.6701501", "0.66994447", "0.66880685", "0.6687917", "0.66788447", "0.6666057", "0.6659451", "0.66483855", "0.6638183", "0.662837", "0.6619872", "0.66160053", "0.66087395", "0.6602481", "0.66018045", "0.6599598", "0.6595199", "0.6582933", "0.6582501", "0.65809715", "0.6568396", "0.65604895", "0.6550917", "0.6545086", "0.65310264", "0.6526503", "0.65263927", "0.6526072", "0.6519344", "0.6511658", "0.6511439", "0.6508659", "0.650838", "0.65053785", "0.6498524", "0.6483772", "0.6474088", "0.64694005", "0.64684325", "0.6461309", "0.64575094", "0.6453026", "0.6450126", "0.6447238", "0.6443925", "0.6429403", "0.6429055", "0.64277834", "0.641255", "0.64117557", "0.64051473", "0.6388898", "0.63764685", "0.63761616", "0.63754237", "0.63690513", "0.636492", "0.6364414", "0.6360073", "0.6354739", "0.6339948", "0.6339644", "0.6333616", "0.6331953", "0.63305515", "0.632902", "0.63191974", "0.6318816", "0.6308943", "0.6308638", "0.6306516", "0.63038653", "0.6303639", "0.62860906", "0.628463", "0.6278852", "0.62786025", "0.62782127", "0.6272866", "0.62647235" ]
0.77735716
0
$ANTLR end "rule__Model__Group__8__Impl" $ANTLR start "rule__Language__Group__0" InternalCsv.g:1110:1: rule__Language__Group__0 : rule__Language__Group__0__Impl rule__Language__Group__1 ;
public final void rule__Language__Group__0() throws RecognitionException { int stackSize = keepStackSize(); try { // InternalCsv.g:1114:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 ) // InternalCsv.g:1115:2: rule__Language__Group__0__Impl rule__Language__Group__1 { pushFollow(FOLLOW_12); rule__Language__Group__0__Impl(); state._fsp--; if (state.failed) return ; pushFollow(FOLLOW_2); rule__Language__Group__1(); state._fsp--; if (state.failed) return ; } } catch (RecognitionException re) { reportError(re); recover(input,re); } finally { restoreStackSize(stackSize); } return ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalCsv.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1222:1: ( rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1 )\n // InternalCsv.g:1223:2: rule__OpenCSV__Group__0__Impl rule__OpenCSV__Group__1\n {\n pushFollow(FOLLOW_14);\n rule__OpenCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1370:1: ( rule__Language__Group__0__Impl rule__Language__Group__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1371:2: rule__Language__Group__0__Impl rule__Language__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0__Impl_in_rule__Language__Group__02668);\n rule__Language__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__1_in_rule__Language__Group__02671);\n rule__Language__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1681:1: ( rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1 )\n // InternalCsv.g:1682:2: rule__SaveCSV__Group__0__Impl rule__SaveCSV__Group__1\n {\n pushFollow(FOLLOW_10);\n rule__SaveCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1234:1: ( ( () ) )\n // InternalCsv.g:1235:1: ( () )\n {\n // InternalCsv.g:1235:1: ( () )\n // InternalCsv.g:1236:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n // InternalCsv.g:1237:2: ()\n // InternalCsv.g:1237:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getOpenCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1033:1: ( rule__Model__Group__6__Impl rule__Model__Group__7 )\n // InternalCsv.g:1034:2: rule__Model__Group__6__Impl rule__Model__Group__7\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1438:1: ( rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1 )\n // InternalCsv.g:1439:2: rule__PrintCSV__Group__0__Impl rule__PrintCSV__Group__1\n {\n pushFollow(FOLLOW_20);\n rule__PrintCSV__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:440:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:441:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__0890);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__0893);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleLanguage() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:92:2: ( ( ( rule__Language__Group__0 ) ) )\n // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) )\n {\n // InternalCsv.g:93:2: ( ( rule__Language__Group__0 ) )\n // InternalCsv.g:94:3: ( rule__Language__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getGroup()); \n }\n // InternalCsv.g:95:3: ( rule__Language__Group__0 )\n // InternalCsv.g:95:4: rule__Language__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__8() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1087:1: ( rule__Model__Group__8__Impl )\n // InternalCsv.g:1088:2: rule__Model__Group__8__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__8__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1168:1: ( rule__Language__Group__2__Impl rule__Language__Group__3 )\n // InternalCsv.g:1169:2: rule__Language__Group__2__Impl rule__Language__Group__3\n {\n pushFollow(FOLLOW_13);\n rule__Language__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleOpenCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:142:2: ( ( ( rule__OpenCSV__Group__0 ) ) )\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n {\n // InternalCsv.g:143:2: ( ( rule__OpenCSV__Group__0 ) )\n // InternalCsv.g:144:3: ( rule__OpenCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n // InternalCsv.g:145:3: ( rule__OpenCSV__Group__0 )\n // InternalCsv.g:145:4: rule__OpenCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getOpenCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:883:1: ( ( () ) )\n // InternalCsv.g:884:1: ( () )\n {\n // InternalCsv.g:884:1: ( () )\n // InternalCsv.g:885:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n }\n // InternalCsv.g:886:2: ()\n // InternalCsv.g:886:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getModelAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__6() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1384:1: ( rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7 )\n // InternalCsv.g:1385:2: rule__OpenCSV__Group__6__Impl rule__OpenCSV__Group__7\n {\n pushFollow(FOLLOW_19);\n rule__OpenCSV__Group__6__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1141:1: ( rule__Language__Group__1__Impl rule__Language__Group__2 )\n // InternalCsv.g:1142:2: rule__Language__Group__1__Impl rule__Language__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Language__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Language__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1626:1: ( rule__Language__Group_4__0__Impl rule__Language__Group_4__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1627:2: rule__Language__Group_4__0__Impl rule__Language__Group_4__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0__Impl_in_rule__Language__Group_4__03169);\n rule__Language__Group_4__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__1_in_rule__Language__Group_4__03172);\n rule__Language__Group_4__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1072:1: ( ( '}' ) )\n // InternalCsv.g:1073:1: ( '}' )\n {\n // InternalCsv.g:1073:1: ( '}' )\n // InternalCsv.g:1074:2: '}'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n match(input,17,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getRightCurlyBracketKeyword_7()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1153:1: ( ( '(' ) )\n // InternalCsv.g:1154:1: ( '(' )\n {\n // InternalCsv.g:1154:1: ( '(' )\n // InternalCsv.g:1155:2: '('\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n match(input,18,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getLeftParenthesisKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1693:1: ( ( () ) )\n // InternalCsv.g:1694:1: ( () )\n {\n // InternalCsv.g:1694:1: ( () )\n // InternalCsv.g:1695:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n // InternalCsv.g:1696:2: ()\n // InternalCsv.g:1696:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getSaveCSVAccess().getSaveCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1195:1: ( rule__Language__Group__3__Impl )\n // InternalCsv.g:1196:2: rule__Language__Group__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__Language__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1411:1: ( rule__OpenCSV__Group__7__Impl )\n // InternalCsv.g:1412:2: rule__OpenCSV__Group__7__Impl\n {\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3490:1: ( rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1 )\n // InternalCsv.g:3491:2: rule__XImportDeclaration__Group_1_0__0__Impl rule__XImportDeclaration__Group_1_0__1\n {\n pushFollow(FOLLOW_41);\n rule__XImportDeclaration__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__7() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1060:1: ( rule__Model__Group__7__Impl rule__Model__Group__8 )\n // InternalCsv.g:1061:2: rule__Model__Group__7__Impl rule__Model__Group__8\n {\n pushFollow(FOLLOW_10);\n rule__Model__Group__7__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__8();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1303:1: ( rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4 )\n // InternalCsv.g:1304:2: rule__OpenCSV__Group__3__Impl rule__OpenCSV__Group__4\n {\n pushFollow(FOLLOW_16);\n rule__OpenCSV__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__PrintCSV__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1450:1: ( ( () ) )\n // InternalCsv.g:1451:1: ( () )\n {\n // InternalCsv.g:1451:1: ( () )\n // InternalCsv.g:1452:2: ()\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n // InternalCsv.g:1453:2: ()\n // InternalCsv.g:1453:3: \n {\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getPrintCSVAction_0()); \n }\n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:898:1: ( rule__Model__Group__1__Impl rule__Model__Group__2 )\n // InternalCsv.g:899:2: rule__Model__Group__1__Impl rule__Model__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__Model__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:952:1: ( rule__Model__Group__3__Impl rule__Model__Group__4 )\n // InternalCsv.g:953:2: rule__Model__Group__3__Impl rule__Model__Group__4\n {\n pushFollow(FOLLOW_7);\n rule__Model__Group__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__4();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1827:1: ( ( ( rule__JvmTypeReference__Group_0_1__0 )* ) )\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n {\n // InternalCsv.g:1828:1: ( ( rule__JvmTypeReference__Group_0_1__0 )* )\n // InternalCsv.g:1829:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n // InternalCsv.g:1830:2: ( rule__JvmTypeReference__Group_0_1__0 )*\n loop14:\n do {\n int alt14=2;\n int LA14_0 = input.LA(1);\n\n if ( (LA14_0==27) ) {\n alt14=1;\n }\n\n\n switch (alt14) {\n \tcase 1 :\n \t // InternalCsv.g:1830:3: rule__JvmTypeReference__Group_0_1__0\n \t {\n \t pushFollow(FOLLOW_24);\n \t rule__JvmTypeReference__Group_0_1__0();\n\n \t state._fsp--;\n \t if (state.failed) return ;\n\n \t }\n \t break;\n\n \tdefault :\n \t break loop14;\n }\n } while (true);\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:910:1: ( ( 'package' ) )\n // InternalCsv.g:911:1: ( 'package' )\n {\n // InternalCsv.g:911:1: ( 'package' )\n // InternalCsv.g:912:2: 'package'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n match(input,13,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getPackageKeyword_1()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2538:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:2539:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04997);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__05000);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1854:1: ( ( ( rule__JvmTypeReference__Group_0_1_0__0 ) ) )\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n {\n // InternalCsv.g:1855:1: ( ( rule__JvmTypeReference__Group_0_1_0__0 ) )\n // InternalCsv.g:1856:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n // InternalCsv.g:1857:2: ( rule__JvmTypeReference__Group_0_1_0__0 )\n // InternalCsv.g:1857:3: rule__JvmTypeReference__Group_0_1_0__0\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getJvmTypeReferenceAccess().getGroup_0_1_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Program__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:373:1: ( rule__Program__Group__0__Impl rule__Program__Group__1 )\n // InternalWh.g:374:2: rule__Program__Group__0__Impl rule__Program__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Program__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6471:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // InternalDroneScript.g:6472:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Program__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:344:1: ( rule__Program__Group__0__Impl rule__Program__Group__1 )\n // InternalWh.g:345:2: rule__Program__Group__0__Impl rule__Program__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Program__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Program__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1382:1: ( ( () ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1383:1: ( () )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1383:1: ( () )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1384:1: ()\n {\n before(grammarAccess.getLanguageAccess().getLanguageAction_0()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1385:1: ()\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1387:1: \n {\n }\n\n after(grammarAccess.getLanguageAccess().getLanguageAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Column__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1676:1: ( rule__Column__Group__0__Impl rule__Column__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1677:2: rule__Column__Group__0__Impl rule__Column__Group__1\n {\n pushFollow(FOLLOW_rule__Column__Group__0__Impl_in_rule__Column__Group__03316);\n rule__Column__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Column__Group__1_in_rule__Column__Group__03319);\n rule__Column__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_4__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1638:1: ( ( 'language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1639:1: ( 'language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1640:1: 'language'\n {\n before(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n match(input,15,FollowSets000.FOLLOW_15_in_rule__Language__Group_4__0__Impl3200); \n after(grammarAccess.getLanguageAccess().getLanguageKeyword_4_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3409:1: ( rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1 )\n // InternalCsv.g:3410:2: rule__XImportDeclaration__Group__0__Impl rule__XImportDeclaration__Group__1\n {\n pushFollow(FOLLOW_40);\n rule__XImportDeclaration__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Database__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1418:1: ( rule__Database__Group__0__Impl rule__Database__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1419:2: rule__Database__Group__0__Impl rule__Database__Group__1\n {\n pushFollow(FOLLOW_rule__Database__Group__0__Impl_in_rule__Database__Group__02816);\n rule__Database__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Database__Group__1_in_rule__Database__Group__02819);\n rule__Database__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1276:1: ( rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3 )\n // InternalCsv.g:1277:2: rule__OpenCSV__Group__2__Impl rule__OpenCSV__Group__3\n {\n pushFollow(FOLLOW_15);\n rule__OpenCSV__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__0__Impl() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3406:1: ( ( ( rule__FinModelFile__Group_0__0 )? ) )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3407:1: ( ( rule__FinModelFile__Group_0__0 )? )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3408:1: ( rule__FinModelFile__Group_0__0 )?\r\n {\r\n if ( state.backtracking==0 ) {\r\n before(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:1: ( rule__FinModelFile__Group_0__0 )?\r\n int alt38=2;\r\n int LA38_0 = input.LA(1);\r\n\r\n if ( (LA38_0==71) ) {\r\n alt38=1;\r\n }\r\n switch (alt38) {\r\n case 1 :\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3409:2: rule__FinModelFile__Group_0__0\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0_in_rule__FinModelFile__Group__0__Impl7566);\r\n rule__FinModelFile__Group_0__0();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n break;\r\n\r\n }\r\n\r\n if ( state.backtracking==0 ) {\r\n after(grammarAccess.getFinModelFileAccess().getGroup_0()); \r\n }\r\n\r\n }\r\n\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__JvmTypeReference__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1789:1: ( rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1 )\n // InternalCsv.g:1790:2: rule__JvmTypeReference__Group_0__0__Impl rule__JvmTypeReference__Group_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1504:1: ( ( ( rule__Language__Group_4__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1505:1: ( ( rule__Language__Group_4__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1506:1: ( rule__Language__Group_4__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_4()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:1: ( rule__Language__Group_4__0 )?\n int alt5=2;\n int LA5_0 = input.LA(1);\n\n if ( (LA5_0==15) ) {\n alt5=1;\n }\n switch (alt5) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1507:2: rule__Language__Group_4__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_4__0_in_rule__Language__Group__4__Impl2944);\n rule__Language__Group_4__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_4()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleLanguage() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:185:2: ( ( ( rule__Language__Group__0 ) ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:186:1: ( ( rule__Language__Group__0 ) )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:186:1: ( ( rule__Language__Group__0 ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:187:1: ( rule__Language__Group__0 )\n {\n before(grammarAccess.getLanguageAccess().getGroup()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:188:1: ( rule__Language__Group__0 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:188:2: rule__Language__Group__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group__0_in_ruleLanguage334);\n rule__Language__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4337:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4338:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__09000);\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:871:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // InternalMLRegression.g:872:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_3);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7226:1: ( rule__XRelationalExpression__Group_1_0_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7227:2: rule__XRelationalExpression__Group_1_0_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0__015074);\r\n rule__XRelationalExpression__Group_1_0_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__OpenCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1249:1: ( rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2 )\n // InternalCsv.g:1250:2: rule__OpenCSV__Group__1__Impl rule__OpenCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__OpenCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1870:1: ( rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1 )\n // InternalCsv.g:1871:2: rule__JvmTypeReference__Group_0_1_0__0__Impl rule__JvmTypeReference__Group_0_1_0__1\n {\n pushFollow(FOLLOW_23);\n rule__JvmTypeReference__Group_0_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1206:1: ( ( ')' ) )\n // InternalCsv.g:1207:1: ( ')' )\n {\n // InternalCsv.g:1207:1: ( ')' )\n // InternalCsv.g:1208:2: ')'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n match(input,19,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getLanguageAccess().getRightParenthesisKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group_3__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1563:1: ( rule__Language__Group_3__0__Impl rule__Language__Group_3__1 )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1564:2: rule__Language__Group_3__0__Impl rule__Language__Group_3__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0__Impl_in_rule__Language__Group_3__03046);\n rule__Language__Group_3__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__1_in_rule__Language__Group_3__03049);\n rule__Language__Group_3__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:925:1: ( rule__Model__Group__2__Impl rule__Model__Group__3 )\n // InternalCsv.g:926:2: rule__Model__Group__2__Impl rule__Model__Group__3\n {\n pushFollow(FOLLOW_6);\n rule__Model__Group__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Field__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1805:1: ( rule__Field__Group__0__Impl rule__Field__Group__1 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:1806:2: rule__Field__Group__0__Impl rule__Field__Group__1\n {\n pushFollow(FOLLOW_rule__Field__Group__0__Impl_in_rule__Field__Group__03566);\n rule__Field__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Field__Group__1_in_rule__Field__Group__03569);\n rule__Field__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:552:1: ( ( ( rule__Definition__Group_0__0 ) ) )\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n {\n // InternalWh.g:553:1: ( ( rule__Definition__Group_0__0 ) )\n // InternalWh.g:554:2: ( rule__Definition__Group_0__0 )\n {\n before(grammarAccess.getDefinitionAccess().getGroup_0()); \n // InternalWh.g:555:2: ( rule__Definition__Group_0__0 )\n // InternalWh.g:555:3: rule__Definition__Group_0__0\n {\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getDefinitionAccess().getGroup_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Enum__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1256:1: ( rule__Enum__Group__0__Impl rule__Enum__Group__1 )\n // InternalMyDsl.g:1257:2: rule__Enum__Group__0__Impl rule__Enum__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__Enum__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:891:1: ( rule__Output__Group_0__0__Impl rule__Output__Group_0__1 )\n // InternalWh.g:892:2: rule__Output__Group_0__0__Impl rule__Output__Group_0__1\n {\n pushFollow(FOLLOW_13);\n rule__Output__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Output__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Text__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:624:1: ( rule__Text__Group__0__Impl rule__Text__Group__1 )\n // ../org.eclipse.ese.android.dsl.ui/src-gen/org/eclipse/ese/ui/contentassist/antlr/internal/InternalAndroid.g:625:2: rule__Text__Group__0__Impl rule__Text__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Text__Group__0__Impl_in_rule__Text__Group__01228);\n rule__Text__Group__0__Impl();\n _fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Text__Group__1_in_rule__Text__Group__01231);\n rule__Text__Group__1();\n _fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4062:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:4063:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__08733);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__08736);\n rule__Import__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:73:2: ( ( ( rule__Model__Group__0 ) ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:74:1: ( ( rule__Model__Group__0 ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:75:1: ( rule__Model__Group__0 )\n {\n before(grammarAccess.getModelAccess().getGroup()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:1: ( rule__Model__Group__0 )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:76:2: rule__Model__Group__0\n {\n pushFollow(FOLLOW_rule__Model__Group__0_in_ruleModel94);\n rule__Model__Group__0();\n\n state._fsp--;\n\n\n }\n\n after(grammarAccess.getModelAccess().getGroup()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__LanguageTarget__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMLRegression.g:925:1: ( rule__LanguageTarget__Group__0__Impl rule__LanguageTarget__Group__1 )\n // InternalMLRegression.g:926:2: rule__LanguageTarget__Group__0__Impl rule__LanguageTarget__Group__1\n {\n pushFollow(FOLLOW_4);\n rule__LanguageTarget__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__LanguageTarget__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4367:1: ( rule__XRelationalExpression__Group_1_0_0_0__0__Impl rule__XRelationalExpression__Group_1_0_0_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4368:2: rule__XRelationalExpression__Group_1_0_0_0__0__Impl rule__XRelationalExpression__Group_1_0_0_0__1\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_0_0_0__09059);\n rule__XRelationalExpression__Group_1_0_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0_0__1_in_rule__XRelationalExpression__Group_1_0_0_0__09062);\n rule__XRelationalExpression__Group_1_0_0_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1475:1: ( ( ( rule__Language__Group_3__0 )? ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1476:1: ( ( rule__Language__Group_3__0 )? )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1477:1: ( rule__Language__Group_3__0 )?\n {\n before(grammarAccess.getLanguageAccess().getGroup_3()); \n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:1: ( rule__Language__Group_3__0 )?\n int alt4=2;\n int LA4_0 = input.LA(1);\n\n if ( (LA4_0==25) ) {\n alt4=1;\n }\n switch (alt4) {\n case 1 :\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1478:2: rule__Language__Group_3__0\n {\n pushFollow(FollowSets000.FOLLOW_rule__Language__Group_3__0_in_rule__Language__Group__3__Impl2883);\n rule__Language__Group_3__0();\n\n state._fsp--;\n\n\n }\n break;\n\n }\n\n after(grammarAccess.getLanguageAccess().getGroup_3()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:452:1: ( ( () ) )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:453:1: ( () )\n {\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:453:1: ( () )\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:454:1: ()\n {\n before(grammarAccess.getModelAccess().getModelAction_0()); \n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:455:1: ()\n // ../eu.artist.migration.mdt.database.sql.editor.ui/src-gen/eu/artist/migration/mdt/database/sql/editor/ui/contentassist/antlr/internal/InternalSQLDSL.g:457:1: \n {\n }\n\n after(grammarAccess.getModelAccess().getModelAction_0()); \n\n }\n\n\n }\n\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1330:1: ( rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5 )\n // InternalCsv.g:1331:2: rule__OpenCSV__Group__4__Impl rule__OpenCSV__Group__5\n {\n pushFollow(FOLLOW_17);\n rule__OpenCSV__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__QualifiedName__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3220:1: ( rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1 )\n // InternalCsv.g:3221:2: rule__QualifiedName__Group__0__Impl rule__QualifiedName__Group__1\n {\n pushFollow(FOLLOW_34);\n rule__QualifiedName__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__QualifiedName__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4493:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4494:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0__09304);\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__3() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3571:1: ( rule__XImportDeclaration__Group_1_0__3__Impl )\n // InternalCsv.g:3572:2: rule__XImportDeclaration__Group_1_0__3__Impl\n {\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \t\r\n try {\r\n // InternalDroneScript.g:6606:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\r\n // InternalDroneScript.g:6607:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_2);\r\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Enum__Group_6__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMyDsl.g:1634:1: ( rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1 )\n // InternalMyDsl.g:1635:2: rule__Enum__Group_6__0__Impl rule__Enum__Group_6__1\n {\n pushFollow(FOLLOW_4);\n rule__Enum__Group_6__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Enum__Group_6__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__SaveCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1708:1: ( rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2 )\n // InternalCsv.g:1709:2: rule__SaveCSV__Group__1__Impl rule__SaveCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__SaveCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__SaveCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Catalogo__Group__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1212:1: ( ( 'Catalogo' ) )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1213:1: ( 'Catalogo' )\n {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1213:1: ( 'Catalogo' )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1214:1: 'Catalogo'\n {\n before(grammarAccess.getCatalogoAccess().getCatalogoKeyword_0()); \n match(input,23,FollowSets000.FOLLOW_23_in_rule__Catalogo__Group__0__Impl2374); \n after(grammarAccess.getCatalogoAccess().getCatalogoKeyword_0()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Output__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:778:1: ( rule__Output__Group__0__Impl rule__Output__Group__1 )\n // InternalWh.g:779:2: rule__Output__Group__0__Impl rule__Output__Group__1\n {\n pushFollow(FOLLOW_11);\n rule__Output__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Output__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1006:1: ( rule__Model__Group__5__Impl rule__Model__Group__6 )\n // InternalCsv.g:1007:2: rule__Model__Group__5__Impl rule__Model__Group__6\n {\n pushFollow(FOLLOW_9);\n rule__Model__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3394:1: ( rule__FinModelFile__Group__0__Impl rule__FinModelFile__Group__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3395:2: rule__FinModelFile__Group__0__Impl rule__FinModelFile__Group__1\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__0__Impl_in_rule__FinModelFile__Group__07536);\r\n rule__FinModelFile__Group__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group__1_in_rule__FinModelFile__Group__07539);\r\n rule__FinModelFile__Group__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__Model__Group__4() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:979:1: ( rule__Model__Group__4__Impl rule__Model__Group__5 )\n // InternalCsv.g:980:2: rule__Model__Group__4__Impl rule__Model__Group__5\n {\n pushFollow(FOLLOW_8);\n rule__Model__Group__4__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__Model__Group__5();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Import__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2563:1: ( rule__Import__Group__0__Impl rule__Import__Group__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:2564:2: rule__Import__Group__0__Impl rule__Import__Group__1\n {\n pushFollow(FOLLOW_rule__Import__Group__0__Impl_in_rule__Import__Group__05516);\n rule__Import__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__Import__Group__1_in_rule__Import__Group__05519);\n rule__Import__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__OpenCSV__Group__5() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1357:1: ( rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6 )\n // InternalCsv.g:1358:2: rule__OpenCSV__Group__5__Impl rule__OpenCSV__Group__6\n {\n pushFollow(FOLLOW_18);\n rule__OpenCSV__Group__5__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__OpenCSV__Group__6();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:540:1: ( rule__Definition__Group__0__Impl rule__Definition__Group__1 )\n // InternalWh.g:541:2: rule__Definition__Group__0__Impl rule__Definition__Group__1\n {\n pushFollow(FOLLOW_9);\n rule__Definition__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void ruleModel() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:67:2: ( ( ( rule__Model__Group__0 ) ) )\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n {\n // InternalCsv.g:68:2: ( ( rule__Model__Group__0 ) )\n // InternalCsv.g:69:3: ( rule__Model__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getGroup()); \n }\n // InternalCsv.g:70:3: ( rule__Model__Group__0 )\n // InternalCsv.g:70:4: rule__Model__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__Model__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XImportDeclaration__Group_1_0__2() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:3544:1: ( rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3 )\n // InternalCsv.g:3545:2: rule__XImportDeclaration__Group_1_0__2__Impl rule__XImportDeclaration__Group_1_0__3\n {\n pushFollow(FOLLOW_42);\n rule__XImportDeclaration__Group_1_0__2__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__XImportDeclaration__Group_1_0__3();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:621:1: ( rule__Definition__Group_0__0__Impl rule__Definition__Group_0__1 )\n // InternalWh.g:622:2: rule__Definition__Group_0__0__Impl rule__Definition__Group_0__1\n {\n pushFollow(FOLLOW_10);\n rule__Definition__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7382:1: ( rule__XRelationalExpression__Group_1_1_0__0__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:7383:2: rule__XRelationalExpression__Group_1_1_0__0__Impl\r\n {\r\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0__015378);\r\n rule__XRelationalExpression__Group_1_1_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__XRelationalExpression__Group_1_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4276:1: ( rule__XRelationalExpression__Group_1_0__0__Impl rule__XRelationalExpression__Group_1_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4277:2: rule__XRelationalExpression__Group_1_0__0__Impl rule__XRelationalExpression__Group_1_0__1\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0__0__Impl_in_rule__XRelationalExpression__Group_1_0__08879);\n rule__XRelationalExpression__Group_1_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0__1_in_rule__XRelationalExpression__Group_1_0__08882);\n rule__XRelationalExpression__Group_1_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2060:1: ( rule__Model__Group__0__Impl rule__Model__Group__1 )\n // ../uk.ac.kcl.inf.robotics.rigid_bodies.ui/src-gen/uk/ac/kcl/inf/robotics/ui/contentassist/antlr/internal/InternalRigidBodies.g:2061:2: rule__Model__Group__0__Impl rule__Model__Group__1\n {\n pushFollow(FOLLOW_rule__Model__Group__0__Impl_in_rule__Model__Group__04407);\n rule__Model__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Model__Group__1_in_rule__Model__Group__04410);\n rule__Model__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__0() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3486:1: ( rule__FinModelFile__Group_0__0__Impl rule__FinModelFile__Group_0__1 )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3487:2: rule__FinModelFile__Group_0__0__Impl rule__FinModelFile__Group_0__1\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__0__Impl_in_rule__FinModelFile__Group_0__07722);\r\n rule__FinModelFile__Group_0__0__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1_in_rule__FinModelFile__Group_0__07725);\r\n rule__FinModelFile__Group_0__1();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }", "public final void rule__PrintCSV__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1465:1: ( rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2 )\n // InternalCsv.g:1466:2: rule__PrintCSV__Group__1__Impl rule__PrintCSV__Group__2\n {\n pushFollow(FOLLOW_5);\n rule__PrintCSV__Group__1__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__2();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__4__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:991:1: ( ( 'languages' ) )\n // InternalCsv.g:992:1: ( 'languages' )\n {\n // InternalCsv.g:992:1: ( 'languages' )\n // InternalCsv.g:993:2: 'languages'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n match(input,15,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getLanguagesKeyword_4()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__NbCol__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1600:1: ( rule__NbCol__Group__0__Impl rule__NbCol__Group__1 )\n // InternalCsv.g:1601:2: rule__NbCol__Group__0__Impl rule__NbCol__Group__1\n {\n pushFollow(FOLLOW_22);\n rule__NbCol__Group__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_2);\n rule__NbCol__Group__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Categoria__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1773:1: ( rule__Categoria__Group__0__Impl rule__Categoria__Group__1 )\n // ../org.xtext.catalogo.ui/src-gen/org/xtext/ui/contentassist/antlr/internal/InternalCatalogo.g:1774:2: rule__Categoria__Group__0__Impl rule__Categoria__Group__1\n {\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__0__Impl_in_rule__Categoria__Group__03469);\n rule__Categoria__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FollowSets000.FOLLOW_rule__Categoria__Group__1_in_rule__Categoria__Group__03472);\n rule__Categoria__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__AstExpression__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16870:1: ( rule__AstExpression__Group__0__Impl rule__AstExpression__Group__1 )\n // ../org.caltoopia.frontend.ui/src-gen/org/caltoopia/frontend/ui/contentassist/antlr/internal/InternalCal.g:16871:2: rule__AstExpression__Group__0__Impl rule__AstExpression__Group__1\n {\n pushFollow(FOLLOW_rule__AstExpression__Group__0__Impl_in_rule__AstExpression__Group__033973);\n rule__AstExpression__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__AstExpression__Group__1_in_rule__AstExpression__Group__033976);\n rule__AstExpression__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Language__Group__1__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1413:1: ( ( 'Language' ) )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1414:1: ( 'Language' )\n {\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1414:1: ( 'Language' )\n // ../org.xtext.example.mydsl.extensions.ui/src-gen/org/xtext/example/mydsl/extensions/ui/contentassist/antlr/internal/InternalMyDsl.g:1415:1: 'Language'\n {\n before(grammarAccess.getLanguageAccess().getLanguageKeyword_1()); \n match(input,24,FollowSets000.FOLLOW_24_in_rule__Language__Group__1__Impl2760); \n after(grammarAccess.getLanguageAccess().getLanguageKeyword_1()); \n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_1_0_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4523:1: ( rule__XRelationalExpression__Group_1_1_0_0__0__Impl rule__XRelationalExpression__Group_1_1_0_0__1 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4524:2: rule__XRelationalExpression__Group_1_1_0_0__0__Impl rule__XRelationalExpression__Group_1_1_0_0__1\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0_0__0__Impl_in_rule__XRelationalExpression__Group_1_1_0_0__09363);\n rule__XRelationalExpression__Group_1_1_0_0__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_1_0_0__1_in_rule__XRelationalExpression__Group_1_1_0_0__09366);\n rule__XRelationalExpression__Group_1_1_0_0__1();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Model__Group__3__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:964:1: ( ( ';' ) )\n // InternalCsv.g:965:1: ( ';' )\n {\n // InternalCsv.g:965:1: ( ';' )\n // InternalCsv.g:966:2: ';'\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n match(input,14,FOLLOW_2); if (state.failed) return ;\n if ( state.backtracking==0 ) {\n after(grammarAccess.getModelAccess().getSemicolonKeyword_3()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Term__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:8973:1: ( rule__Term__Group__0__Impl rule__Term__Group__1 )\n // ../eu.quanticol.caspa.ui/src-gen/eu/quanticol/ui/contentassist/antlr/internal/InternalCASPA.g:8974:2: rule__Term__Group__0__Impl rule__Term__Group__1\n {\n pushFollow(FOLLOW_rule__Term__Group__0__Impl_in_rule__Term__Group__017576);\n rule__Term__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_rule__Term__Group__1_in_rule__Term__Group__017579);\n rule__Term__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Definition__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:481:1: ( rule__Definition__Group__0__Impl rule__Definition__Group__1 )\n // InternalWh.g:482:2: rule__Definition__Group__0__Impl rule__Definition__Group__1\n {\n pushFollow(FOLLOW_7);\n rule__Definition__Group__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Definition__Group__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rulePrintCSV() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:192:2: ( ( ( rule__PrintCSV__Group__0 ) ) )\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n {\n // InternalCsv.g:193:2: ( ( rule__PrintCSV__Group__0 ) )\n // InternalCsv.g:194:3: ( rule__PrintCSV__Group__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n // InternalCsv.g:195:3: ( rule__PrintCSV__Group__0 )\n // InternalCsv.g:195:4: rule__PrintCSV__Group__0\n {\n pushFollow(FOLLOW_2);\n rule__PrintCSV__Group__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getPrintCSVAccess().getGroup()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__Input__Group_0__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalWh.g:810:1: ( rule__Input__Group_0__0__Impl rule__Input__Group_0__1 )\n // InternalWh.g:811:2: rule__Input__Group_0__0__Impl rule__Input__Group_0__1\n {\n pushFollow(FOLLOW_13);\n rule__Input__Group_0__0__Impl();\n\n state._fsp--;\n\n pushFollow(FOLLOW_2);\n rule__Input__Group_0__1();\n\n state._fsp--;\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__XRelationalExpression__Group_1_0__0__Impl() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \n try {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4288:1: ( ( ( rule__XRelationalExpression__Group_1_0_0__0 ) ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4289:1: ( ( rule__XRelationalExpression__Group_1_0_0__0 ) )\n {\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4289:1: ( ( rule__XRelationalExpression__Group_1_0_0__0 ) )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4290:1: ( rule__XRelationalExpression__Group_1_0_0__0 )\n {\n if ( state.backtracking==0 ) {\n before(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0_0()); \n }\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4291:1: ( rule__XRelationalExpression__Group_1_0_0__0 )\n // ../org.xtext.lwc.instances.ui/src-gen/org/xtext/lwc/instances/ui/contentassist/antlr/internal/InternalInstances.g:4291:2: rule__XRelationalExpression__Group_1_0_0__0\n {\n pushFollow(FOLLOW_rule__XRelationalExpression__Group_1_0_0__0_in_rule__XRelationalExpression__Group_1_0__0__Impl8909);\n rule__XRelationalExpression__Group_1_0_0__0();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n if ( state.backtracking==0 ) {\n after(grammarAccess.getXRelationalExpressionAccess().getGroup_1_0_0()); \n }\n\n }\n\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__JvmTypeReference__Group_0_1__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalCsv.g:1843:1: ( rule__JvmTypeReference__Group_0_1__0__Impl )\n // InternalCsv.g:1844:2: rule__JvmTypeReference__Group_0_1__0__Impl\n {\n pushFollow(FOLLOW_2);\n rule__JvmTypeReference__Group_0_1__0__Impl();\n\n state._fsp--;\n if (state.failed) return ;\n\n }\n\n }\n catch (RecognitionException re) {\n reportError(re);\n recover(input,re);\n }\n finally {\n\n \trestoreStackSize(stackSize);\n\n }\n return ;\n }", "public final void rule__FinModelFile__Group_0__1() throws RecognitionException {\r\n\r\n \t\tint stackSize = keepStackSize();\r\n \r\n try {\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3517:1: ( rule__FinModelFile__Group_0__1__Impl )\r\n // ../de.nie.fin.ui/src-gen/de/nie/fin/ui/contentassist/antlr/internal/InternalFin.g:3518:2: rule__FinModelFile__Group_0__1__Impl\r\n {\r\n pushFollow(FOLLOW_rule__FinModelFile__Group_0__1__Impl_in_rule__FinModelFile__Group_0__17784);\r\n rule__FinModelFile__Group_0__1__Impl();\r\n\r\n state._fsp--;\r\n if (state.failed) return ;\r\n\r\n }\r\n\r\n }\r\n catch (RecognitionException re) {\r\n reportError(re);\r\n recover(input,re);\r\n }\r\n finally {\r\n\r\n \trestoreStackSize(stackSize);\r\n\r\n }\r\n return ;\r\n }" ]
[ "0.7343989", "0.72112817", "0.7110452", "0.70071214", "0.6966565", "0.68791276", "0.6852947", "0.67909014", "0.67786163", "0.67455953", "0.673803", "0.6730249", "0.67027396", "0.6674988", "0.66745764", "0.6664231", "0.66597164", "0.66442204", "0.6638296", "0.6604148", "0.65751046", "0.6574655", "0.6564142", "0.6549417", "0.6540712", "0.6536959", "0.6512164", "0.65107656", "0.6487874", "0.648209", "0.6481791", "0.6480721", "0.6474339", "0.64702624", "0.6467173", "0.6461497", "0.6461139", "0.64537555", "0.64514726", "0.6451411", "0.6443733", "0.6432264", "0.64257145", "0.642029", "0.6419305", "0.6417327", "0.6380132", "0.6379824", "0.6374007", "0.6373088", "0.6367309", "0.63656616", "0.6364544", "0.63621473", "0.6350782", "0.6331281", "0.6321699", "0.6306707", "0.63057613", "0.6303718", "0.63019633", "0.63014036", "0.6295696", "0.62861717", "0.6280578", "0.6278143", "0.6276839", "0.62739915", "0.62720746", "0.6252163", "0.62509423", "0.62476295", "0.62445295", "0.6242808", "0.62384325", "0.6236652", "0.62284917", "0.6211096", "0.6209166", "0.62087846", "0.6202065", "0.61940336", "0.61821693", "0.61819434", "0.6179439", "0.6177269", "0.6176563", "0.6176547", "0.61759305", "0.61711264", "0.6168805", "0.6166046", "0.6164024", "0.6161847", "0.6158109", "0.6155121", "0.61539996", "0.6152175", "0.61504924", "0.6145212" ]
0.7882007
0